wok rev 25226
updated python-pynacl (1.3.0 -> 1.4.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jul 13 16:46:32 2022 +0100 (2022-07-13) |
parents | eec5fc514f23 |
children | 9ef0ccfe6096 |
files | python-pynacl/description.txt python-pynacl/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/python-pynacl/description.txt Wed Jul 13 16:46:32 2022 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +PyNaCl is a Python binding to libsodium, which is a fork of the Networking 1.5 +and Cryptography library. 1.6 +These libraries have a stated goal of improving usability, security and speed. 1.7 +It supports Python 2.7 and 3.5+ as well as PyPy 2.6+. 1.8 + 1.9 +Features 1.10 + 1.11 +- Digital signatures 1.12 +- Secret-key encryption 1.13 +- Public-key encryption 1.14 +- Hashing and message authentication 1.15 +- Password based key derivation and password hashing
2.1 --- a/python-pynacl/receipt Wed Jul 13 16:33:48 2022 +0100 2.2 +++ b/python-pynacl/receipt Wed Jul 13 16:46:32 2022 +0100 2.3 @@ -1,18 +1,21 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="python-pynacl" 2.7 -SOURCE="pynacl" 2.8 -VERSION="1.3.0" 2.9 +VERSION="1.4.0" 2.10 CATEGORY="development" 2.11 SHORT_DESC="Python binding to the Networking and Cryptography (NaCl) library" 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="Apache" 2.14 +WEB_SITE="https://pypi.org/project/PyNaCl/" 2.15 +REPOLOGY="python:pynacl" 2.16 + 2.17 +SOURCE="PyNaCl" 2.18 TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 -WEB_SITE="https://github.com/pyca/pynacl/" 2.20 WGET_URL="https://github.com/pyca/pynacl/archive/$VERSION.tar.gz" 2.21 +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" 2.22 2.23 -DEPENDS="python libsodium" 2.24 -BUILD_DEPENDS="python-setuptools python-dev libmagic libsodium-dev" 2.25 +DEPENDS="libsodium python" 2.26 +BUILD_DEPENDS="libmagic libsodium-dev python-dev python-setuptools" 2.27 2.28 current_version() 2.29 { 2.30 @@ -30,6 +33,5 @@ 2.31 # Rules to gen a SliTaz package suitable for Tazpkg. 2.32 genpkg_rules() 2.33 { 2.34 - mkdir -p $fs 2.35 - cp -a $install/usr $fs 2.36 + cp -a $install/usr $fs 2.37 }