pantry/projects/conda.org/package.yml
Max Howell 81e7a5e16f
pkgx
2023-10-01 14:44:42 -04:00

43 lines
1 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# this is what docs.conda.io refers to as `miniconda`
distributable:
url: https://github.com/conda/conda/archive/refs/tags/{{version.tag}}.tar.gz
strip-components: 1
versions:
github: conda/conda
dependencies:
python.org: ~3.11
build:
dependencies:
gnu.org/patch: '*'
script:
# stops conda from installing to our versioned prefix by default
- patch -p1 < props/context.py.diff
- python-venv.sh {{prefix}}/bin/conda
# we desire to provide a conda that doesnt require you to force it into
# your shellrc this command modifies the installation to prevent it
# erroring so we have to do prior to pkging it
- '{{prefix}}/bin/conda init'
provides:
- bin/conda
test:
- conda --version | grep {{version}}
- |
source /dev/stdin <<<"$(conda shell.bash hook)"
conda create --yes --name snowflakes biopython
conda activate snowflakes
conda info --envs | grep snowflakes
conda deactivate
# check env has been restored
- |
if ! conda info --envs | grep snowflakes; then
exit 1
fi