forked from M-Labs/artiq
Sebastien Bourdeauducq
832fb139a0
Never missing an opportunity to be awful, conda helps itself with the .fbi files and merrily patches the strings inside them that contain paths resembling the conda build folder, resulting of course in corrupption and CRC errors.
This reverts commit c856b22579
.
23 lines
905 B
YAML
23 lines
905 B
YAML
package:
|
|
name: artiq-kc705-nist_qc2
|
|
version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}
|
|
|
|
source:
|
|
git_url: ../..
|
|
|
|
build:
|
|
noarch_python: true
|
|
number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}
|
|
string: py_{{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}+git{{ environ.get("GIT_FULL_HASH", "")[:8] }}
|
|
|
|
requirements:
|
|
build:
|
|
- artiq-dev {{ "{tag} py_{number}+git{hash}".format(tag=environ.get("GIT_DESCRIBE_TAG"), number=environ.get("GIT_DESCRIBE_NUMBER"), hash=environ.get("GIT_FULL_HASH", "")[:8]) if "GIT_DESCRIBE_TAG" in environ else "" }}
|
|
run:
|
|
- artiq {{ "{tag} py_{number}+git{hash}".format(tag=environ.get("GIT_DESCRIBE_TAG"), number=environ.get("GIT_DESCRIBE_NUMBER"), hash=environ.get("GIT_FULL_HASH", "")[:8]) if "GIT_DESCRIBE_TAG" in environ else "" }}
|
|
|
|
about:
|
|
home: https://m-labs.hk/artiq
|
|
license: GPL
|
|
summary: 'Bitstream, BIOS and runtime for NIST_QC2 on the KC705 board'
|