wok-current rev 25175
updated python-cryptography (2.7 -> 2.8)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jul 01 17:39:11 2022 +0100 (2022-07-01) |
parents | a44b366afa25 |
children | 5c893733007e |
files | python-cryptography/description.txt python-cryptography/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/python-cryptography/description.txt Fri Jul 01 17:39:11 2022 +0100 1.3 @@ -0,0 +1,3 @@ 1.4 +Python-cryptography includes both high level recipes and low level 1.5 +interfaces to common cryptographic algorithms such as symmetric 1.6 +ciphers, message digests, and key derivation functions.
2.1 --- a/python-cryptography/receipt Fri Jul 01 17:16:59 2022 +0100 2.2 +++ b/python-cryptography/receipt Fri Jul 01 17:39:11 2022 +0100 2.3 @@ -1,9 +1,9 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="python-cryptography" 2.7 -VERSION="2.7" 2.8 +VERSION="2.8" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="Python library exposing cryptographic recipes and primitives" 2.11 +SHORT_DESC="Python library exposing cryptographic recipes and primitives." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="BSD" 2.14 WEB_SITE="https://cryptography.io/" 2.15 @@ -12,7 +12,7 @@ 2.16 2.17 DEPENDS="python python-six python-enum34 python-asn1crypto" 2.18 BUILD_DEPENDS="python-setuptools openssl-dev python-dev python-cffi \ 2.19 -python-cparser" 2.20 + python-cparser" 2.21 #BUILD_DEPENDS="python" 2.22 2.23 current_version() 2.24 @@ -24,11 +24,14 @@ 2.25 # Rules to configure and make the package. 2.26 compile_rules() 2.27 { 2.28 - python setup.py install --prefix=/usr --root=$DESTDIR 2.29 + python setup.py \ 2.30 + install \ 2.31 + --prefix=/usr \ 2.32 + --root=$DESTDIR 2.33 } 2.34 2.35 # Rules to gen a SliTaz package suitable for Tazpkg. 2.36 genpkg_rules() 2.37 { 2.38 - cp -a $install/usr $fs/ 2.39 + cook_copy_folders lib 2.40 }