wok-current rev 21876
Add python-bcrypt
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Sep 28 16:58:29 2019 +0200 (2019-09-28) |
parents | 2e43f9923d01 |
children | a9ec8a908c33 |
files | python-bcrypt/receipt sshproxy/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/python-bcrypt/receipt Sat Sep 28 16:58:29 2019 +0200 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="python-bcrypt" 1.7 +SOURCE="bcrypt" 1.8 +VERSION="3.1.7" 1.9 +CATEGORY="development" 1.10 +SHORT_DESC="Modern password hashing for your software and your servers" 1.11 +MAINTAINER="pascal.bellard@slitaz.org" 1.12 +LICENSE="Apache" 1.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.14 +WEB_SITE="https://github.com/pyca/bcrypt/" 1.15 +WGET_URL="https://github.com/pyca/bcrypt/archive/$VERSION.tar.gz" 1.16 + 1.17 +DEPENDS="python" 1.18 +BUILD_DEPENDS="python-setuptools python-dev libffi-dev" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + python setup.py build && 1.24 + python setup.py install --root=$DESTDIR 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs 1.31 + cp -a $install/usr $fs 1.32 +}
2.1 --- a/sshproxy/receipt Sat Sep 28 16:04:52 2019 +0200 2.2 +++ b/sshproxy/receipt Sat Sep 28 16:58:29 2019 +0200 2.3 @@ -12,7 +12,7 @@ 2.4 TAGS="ssh" 2.5 2.6 DEPENDS="python paramiko python-mysql pycrypto" 2.7 -BUILD_DEPENDS="python paramiko python-mysql pycrypto" 2.8 +BUILD_DEPENDS="python-bcrypt paramiko python-mysql pycrypto" 2.9 2.10 # Rules to configure and make the package. 2.11 compile_rules()