python3-installer: only depend on python3-pip

This commit is contained in:
Tim Biermann 2023-04-08 16:25:44 +02:00
parent 7713b9915c
commit 260f8e34b4
2 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/UX3V9EPo0BLyfYjGaIAkXKrkvH3bZzZMw0Pn64oDAS9/I6fVjR5fdT1ydjrBI6UAJ7U+RsahAZrRvwvqpcJ/gQ=
SHA256 (Pkgfile) = 4ccfc091ea9dab35429b077f9752b1c532cad3e72bfa3797c0120799cf6af6b4
RWSE3ohX2g5d/RIuYNsjNib2DGqcHtp9ZZ7KYdo419Qs1I3PEDdfNvcRJnWPTYXN/5Nf+8IMKhc3fKpOMNEnn18lX9UagZ6bNwQ=
SHA256 (Pkgfile) = ef7a59788272b41bfd109f114b06746623a8fb79408ffe968b9547da9ae790ef
SHA256 (.footprint) = cf050268a417fc82e4ddd9d3756cbde8d872505bdde0dc129903d46d3152278e
SHA256 (installer-0.7.0.tar.gz) = a26d3e3116289bb08216e0d0f7d925fcef0b0194eedfa0c944bcaaa106c4b631

View File

@ -1,7 +1,7 @@
# Description: A low-level library for installing from a Python wheel distribution
# URL: https://github.com/pypa/installer
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-build python3-flit-core
# Depends on: python3-pip
name=python3-installer
version=0.7.0
@ -11,7 +11,6 @@ source=(https://pypi.org/packages/source/i/installer/installer-$version.tar.gz)
build() {
cd installer-$version
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG \
--ignore-installed --no-deps $SRC/installer-$version/dist/*.whl
--ignore-installed --no-deps .
}