ports/contrib (3.6): [notify] python3-entrypoints: new dependencies: python3-pip
commit c7c1fb6375ca03fe9b034a7aacf0694bc2b17ead Author: Tim Biermann <tbier@posteo.de> Date: Sat Feb 12 16:19:11 2022 +0100 [notify] python3-entrypoints: new dependencies: python3-pip diff --git a/python3-entrypoints/.footprint b/python3-entrypoints/.footprint index 0363d13a2..23c75c79b 100644 --- a/python3-entrypoints/.footprint +++ b/python3-entrypoints/.footprint @@ -3,7 +3,12 @@ drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/python3.9/ drwxr-xr-x root/root usr/lib/python3.9/site-packages/ drwxr-xr-x root/root usr/lib/python3.9/site-packages/__pycache__/ --rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/entrypoints.cpython-39.opt-1.pyc -rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/entrypoints.cpython-39.pyc --rw-r--r-- root/root usr/lib/python3.9/site-packages/entrypoints-0.3-py3.9.egg-info +drwxr-xr-x root/root usr/lib/python3.9/site-packages/entrypoints-0.4.dist-info/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/entrypoints-0.4.dist-info/INSTALLER +-rw-r--r-- root/root usr/lib/python3.9/site-packages/entrypoints-0.4.dist-info/LICENSE +-rw-r--r-- root/root usr/lib/python3.9/site-packages/entrypoints-0.4.dist-info/METADATA +-rw-r--r-- root/root usr/lib/python3.9/site-packages/entrypoints-0.4.dist-info/RECORD +-rw-r--r-- root/root usr/lib/python3.9/site-packages/entrypoints-0.4.dist-info/REQUESTED (EMPTY) +-rw-r--r-- root/root usr/lib/python3.9/site-packages/entrypoints-0.4.dist-info/WHEEL -rw-r--r-- root/root usr/lib/python3.9/site-packages/entrypoints.py diff --git a/python3-entrypoints/.signature b/python3-entrypoints/.signature index 716247a28..c9425f9c3 100644 --- a/python3-entrypoints/.signature +++ b/python3-entrypoints/.signature @@ -1,7 +1,6 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF34cpP+hnI3cm+y1v1WROF3KUwyNfALd4UZ7Dz4FL2DLebC8siOSSremHm9VFZYZFM00pxPfp6jOPOhcqm+EzfAM= -SHA256 (Pkgfile) = ce6911593daff726db2b75a1f54e8301d327312dce41410b98cf1de47e834f9b -SHA256 (.footprint) = cf8f9ec0e517f297ea8057a8b2498105673b952e32fa335a636ec7a72b5e57b9 -SHA256 (python3-entrypoints-0.3-github.tar.gz) = f26eddc371e37d8e9f6663b77524d6731567f005bd1e4ac950c0e33c48fbc065 -SHA256 (entrypoints-0.3-py2.py3-none-any.whl) = 589f874b313739ad35be6e0cd7efde2a4e9b6fea91edcc34e58ecbb8dbe56d19 -SHA256 (entrypoints-0.3.tar.gz) = c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451 +RWSagIOpLGJF3+JDafG2iNPvInL4+C3bUxaoY3gBvi8/FoIoE77Fa5XgrMiYSm/sCtICF2xNp50JnGG9OVj5tVH4OTsB1kNWuwU= +SHA256 (Pkgfile) = 7528b3c150085c7a42cb8be67de2bcc2b4ae9ba37784f9938fd3ee611bf6e239 +SHA256 (.footprint) = eb6391498023176f4ebfa71c26f69b34e4aa5edd734c222ccfec35b9ae6e4809 +SHA256 (python3-entrypoints-0.4-github.tar.gz) = d2197a94aa73e70a7f60600e654ac9918ca2a0ee5480eb875296c42220a02272 +SHA256 (entrypoints-0.4.tar.gz) = b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4 diff --git a/python3-entrypoints/Pkgfile b/python3-entrypoints/Pkgfile index 1f64186ff..67cd6a6d1 100644 --- a/python3-entrypoints/Pkgfile +++ b/python3-entrypoints/Pkgfile @@ -1,26 +1,21 @@ # 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-setuptools +# Depends on: python3-pip +# Optional: python3-flit name=python3-entrypoints -version=0.3 +version=0.4 release=1 source=(https://github.com/takluyver/entrypoints/archive/$version/$name-$version-git... - https://files.pythonhosted.org/packages/py2.py3/e/entrypoints/entrypoints-$v... https://pypi.io/packages/source/e/entrypoints/entrypoints-$version.tar.gz) build() { cd entrypoints-$version - # install -Dm644 entrypoints.py $PKG/usr/lib/python3.9/site-packages/entrypoints.py - # _dist="entrypoints-$version.dist-info" - # cd $SRC/$_dist - # for _i in ./*; do - # install -Dm644 $_i "$PKG/usr/lib/python3.9/site-packages/$_dist/$_i" - # done - /usr/bin/python3 setup.py build - /usr/bin/python3 setup.py install --prefix=/usr \ - --root=$PKG \ - --skip-build \ - -O1 + if prt-get isinst python3-flit; then + /usr/bin/python3 -m flit build --format wheel + /usr/bin/pip3 install --isolate --root=$PKG --ignore-installed --no-deps dist/*.whl + else + /usr/bin/pip3 install --isolate --root=$PKG --ignore-installed --no-deps entrypoints + fi }
participants (1)
-
crux@crux.nu