diff options
author | Tim Biermann <tbier@posteo.de> | 2022-12-10 10:42:39 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-12-10 10:42:39 +0000 |
commit | cdf88e60e6fbb06c264113c72c0d92f5b0ce63fa (patch) | |
tree | 71c0df01f93dff5db0dc60ca6066364f832e3f7d /python3-crashtest | |
parent | a1d9181d6458baae0b85d4dc39248f7ae2e72521 (diff) | |
download | contrib-cdf88e60e6fbb06c264113c72c0d92f5b0ce63fa.tar.gz contrib-cdf88e60e6fbb06c264113c72c0d92f5b0ce63fa.tar.xz |
python3-crashtest: fixed build with python3-poetry installed
Diffstat (limited to 'python3-crashtest')
-rw-r--r-- | python3-crashtest/.footprint | 2 | ||||
-rw-r--r-- | python3-crashtest/.signature | 6 | ||||
-rw-r--r-- | python3-crashtest/Pkgfile | 5 |
3 files changed, 6 insertions, 7 deletions
diff --git a/python3-crashtest/.footprint b/python3-crashtest/.footprint index b3461c501..0494d785f 100644 --- a/python3-crashtest/.footprint +++ b/python3-crashtest/.footprint @@ -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/crashtest-0.4.1.dist-info/ --rw-r--r-- root/root usr/lib/python3.10/site-packages/crashtest-0.4.1.dist-info/INSTALLER -rw-r--r-- root/root usr/lib/python3.10/site-packages/crashtest-0.4.1.dist-info/LICENSE -rw-r--r-- root/root usr/lib/python3.10/site-packages/crashtest-0.4.1.dist-info/METADATA -rw-r--r-- root/root usr/lib/python3.10/site-packages/crashtest-0.4.1.dist-info/RECORD --rw-r--r-- root/root usr/lib/python3.10/site-packages/crashtest-0.4.1.dist-info/REQUESTED (EMPTY) -rw-r--r-- root/root usr/lib/python3.10/site-packages/crashtest-0.4.1.dist-info/WHEEL drwxr-xr-x root/root usr/lib/python3.10/site-packages/crashtest/ -rw-r--r-- root/root usr/lib/python3.10/site-packages/crashtest/__init__.py diff --git a/python3-crashtest/.signature b/python3-crashtest/.signature index 666f2e4c3..34f3247e1 100644 --- a/python3-crashtest/.signature +++ b/python3-crashtest/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF30LhzAAdUkK9ufmgrBlPowT0ZAVJftpUU7+CB2XTNYIgxOSf5XtugWMWjKhdaa3IJZLdhqwetRIIsZ2ksxJ2xwc= -SHA256 (Pkgfile) = 778c366034eaa58d6d6517873519328259b8c82f92e34b8fad1af3dba8165954 -SHA256 (.footprint) = 4750c910a54f07da41999508c64c664f9907c92b257c65e1c48233d20b063a93 +RWSagIOpLGJF30aq0N9f80wmmkMZUAFakH67OXhzWp1MHuDjM2irLdtIwjqlRyiVVV9Sc/6KXmFqRIvpQxahOFePP55m8+fOSws= +SHA256 (Pkgfile) = 0532ef721ccb4dbd4a378e9b8509e82e85672bdb566b69558eef0b7bfe86e28e +SHA256 (.footprint) = 291f47c24a53887cc1fb0276bb9886ae23b27862e7d174a1034334f7faaa6bf9 SHA256 (python3-crashtest-0.4.1.tar.gz) = 4ff59d9bee6d2bc581d462888ec28beb30ad448042c885a2b4ab45dc4910780b diff --git a/python3-crashtest/Pkgfile b/python3-crashtest/Pkgfile index 117bc07c8..ba9002711 100644 --- a/python3-crashtest/Pkgfile +++ b/python3-crashtest/Pkgfile @@ -12,9 +12,10 @@ source=(https://github.com/sdispater/crashtest/archive/$version/$name-$version.t build() { cd crashtest-$version if prt-get isinst python3-poetry; then - /usr/bin/poetry build --format wheel - /usr/bin/pip3 install --isolate --root=$PKG --ignore-installed --no-deps dist/*.whl + /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 --no-deps crashtest + rm -rf $PKG/usr/lib/python*/site-packages/crashtest-$version.dist-info/{INSTALLER,REQUESTED} fi } |