python3-cleo: make footprint reproduceable

This commit is contained in:
Tim Biermann 2022-11-26 12:08:02 +00:00
parent 447e400ed5
commit f10fa3bf12
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 5 additions and 6 deletions

View File

@ -3,11 +3,9 @@ drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python3.10/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/cleo-2.0.1.dist-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cleo-2.0.1.dist-info/INSTALLER
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cleo-2.0.1.dist-info/LICENSE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cleo-2.0.1.dist-info/METADATA
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cleo-2.0.1.dist-info/RECORD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cleo-2.0.1.dist-info/REQUESTED (EMPTY)
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cleo-2.0.1.dist-info/WHEEL
drwxr-xr-x root/root usr/lib/python3.10/site-packages/cleo/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cleo/__init__.py

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+l82KVDYdoU4pCr0PeGooSv/sFBGLdBRZVB1sxkIPhZyEQ6MpB5xRBBZKt27/b2ESNxe7c2RXMrKvnuArmmaQo=
SHA256 (Pkgfile) = c74f266a96f7099195d9a7c96774234acda618b5e74acb1050175245433a3ae5
SHA256 (.footprint) = 08062043be25a7be2903c3e5cb405fe77f1d3861e9028fbcf7ba564b97ff2c81
RWSagIOpLGJF3zILH/u+E0jsl2RBN6tgM4EYlnvIcwkhsGFbQNmarPpC9uqww2VoTRionI2H01womaMCyvWncGdrH0nHoLImjQQ=
SHA256 (Pkgfile) = fb1a59d48d033cab657bb7b309dea66b8214c0f9219d9e61e45d830aa5c68243
SHA256 (.footprint) = ad7b54a095e26b16f6ea267e3f860513613e6ceafe192dcbda04fc53697a345e
SHA256 (python3-cleo-2.0.1.tar.gz) = cb9b60c9559d26a289b0536b134f9efe1b59632f51dc38b20c8a9076b99e0f07

View File

@ -13,8 +13,9 @@ build() {
if prt-get isinst python3-poetry; then
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
else
/usr/bin/pip3 install --isolate --root=$PKG --ignore-installed --no-deps cleo
rm -r $PKG/usr/lib/python3.10/site-packages/cleo-2.0.1.dist-info/{INSTALLER,REQUESTED}
fi
}