contrib/python3-entrypoints/Pkgfile

26 lines
996 B
Plaintext
Raw Normal View History

# Description: Discover and load entry points from installed packages
# URL: https://github.com/takluyver/entrypoints
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-pip
# Optional: python3-flit-core
name=python3-entrypoints
version=0.4
release=1
source=(https://github.com/takluyver/entrypoints/archive/$version/$name-$version-github.tar.gz
https://pypi.io/packages/source/e/entrypoints/entrypoints-$version.tar.gz)
build() {
cd entrypoints-$version
_pyver=$(/usr/bin/python3 -c 'import sys; print("%s.%s" % sys.version_info[:2])')
if prt-get isinst python3-flit-core; then
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
else
/usr/bin/pip3 install --isolate --root=$PKG --ignore-installed --compile --no-deps entrypoints==$version
fi
rm -rf $PKG/usr/lib/python$_pyver/site-packages/entrypoints-$version.dist-info/{INSTALLER,REQUESTED}
}