python3-cryptography: 39.0.1 -> 39.0.2

This commit is contained in:
Tim Biermann 2023-03-03 18:39:16 +01:00
parent 658305638a
commit 70a6a2dfad
3 changed files with 21 additions and 21 deletions

View File

@ -2,15 +2,15 @@ drwxr-xr-x root/root usr/
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/cryptography-39.0.1.dist-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.1.dist-info/LICENSE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.1.dist-info/LICENSE.APACHE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.1.dist-info/LICENSE.BSD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.1.dist-info/LICENSE.PSF
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.1.dist-info/METADATA
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.1.dist-info/RECORD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.1.dist-info/WHEEL
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.1.dist-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.10/site-packages/cryptography-39.0.2.dist-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.2.dist-info/LICENSE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.2.dist-info/LICENSE.APACHE
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.2.dist-info/LICENSE.BSD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.2.dist-info/LICENSE.PSF
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.2.dist-info/METADATA
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.2.dist-info/RECORD
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.2.dist-info/WHEEL
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography-39.0.2.dist-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.10/site-packages/cryptography/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography/__about__.py
-rw-r--r-- root/root usr/lib/python3.10/site-packages/cryptography/__init__.py

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37eM2y/4UCvgcOIoypECNd1oVOod1dmJghbQF/o4GvArECv9vmqPkH8i40bcJsOjbzk+TQGtQPWDF9ZQNvyIKgY=
SHA256 (Pkgfile) = 3a9aa4c403317b102b8ac98d28b587ad0c1a2d616a2b58657961a982c9fdd6a7
SHA256 (.footprint) = f5cd6ae274a8f5252cb950b019f99a5c0c9fe3c5561d110113b98f25465a7231
SHA256 (cryptography-39.0.1.tar.gz) = d1f6198ee6d9148405e49887803907fe8962a23e6c6f83ea7d98f1c0de375695
RWSagIOpLGJF32k7Ryfeu1/WNHD2dxv33++C/qyZhCnRnF5/ypr1kKuUyRX0IjfPFQMwVw9SaByzOgxWSyF8nQbWUTVSopaLZAU=
SHA256 (Pkgfile) = 5a31a7e04a35030c528f2de41c830bb1e47a0b5f51720d5c7cd478748a2ce897
SHA256 (.footprint) = 372403f6df6eae970ff04f4b604fd15cc17be99c531920b0412573f2450c96ac
SHA256 (cryptography-39.0.2.tar.gz) = bc5b871e977c8ee5a1bbc42fa8d19bcc08baf0c51cbf1586b0e87a2694dde42f

View File

@ -1,20 +1,20 @@
# Description: A package designed to expose cryptographic recipes and primitives to Python developers.
# URL: https://pypi.org/project/cryptography/
# Maintainer: Danny Rawlins, crux at romster dot me
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-cffi python3-setuptools-rust
name=python3-cryptography
version=39.0.1
version=39.0.2
release=1
source=(https://pypi.python.org/packages/source/c/cryptography/cryptography-$version.tar.gz)
build() {
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
cd ${name#*-}-$version
cd ${name#*-}-$version
/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 build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
}