pantry/projects/pip.pypa.io/package.yml
2023-07-10 11:04:28 -04:00

48 lines
1.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.

distributable:
url: https://github.com/pypa/pip/archive/refs/tags/{{version.raw}}.tar.gz
strip-components: 1
versions:
github: pypa/pip/tags
dependencies:
python.org: '*' #FIXME actually: ^3.7
# FIXME deps vary by version for the above and we dont support that yet
runtime:
env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
PYTHONPATH: ${{prefix}}
build:
dependencies:
curl.se: '*'
script: |
curl -O https://bootstrap.pypa.io/get-pip.py
test -d bootstrap || mkdir bootstrap
python get-pip.py --target="$(pwd)/bootstrap"
PYTHONPATH=$(pwd)/bootstrap python -m pip install . --target={{prefix}}
cd {{prefix}}
for binfile in $shebangs; do
sed -i.bak -e 's|#!{{ deps.python.org.prefix }}/bin/|#!/usr/bin/env |g' $binfile
rm $binfile.bak
done
rm -f bin/pip{{deps.python.org.version.major}}.{{deps.python.org.version.minor}}
env:
shebangs:
- bin/pip
- bin/pip{{deps.python.org.version.major}}
test:
script: |
pip install findtui --target .
test -f findtui/main.py
provides:
- bin/pip
#FIXME - bin/pip{{deps.python.org.version.major}}