# HG changeset patch # User Pascal Bellard # Date 1569682709 -7200 # Node ID 4e8082a993f8a0f0b5dd477d26d06c4feeaa6b7c # Parent 2e43f9923d0188529737fadce28a7cdc5e441258 Add python-bcrypt diff -r 2e43f9923d01 -r 4e8082a993f8 python-bcrypt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-bcrypt/receipt Sat Sep 28 16:58:29 2019 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="python-bcrypt" +SOURCE="bcrypt" +VERSION="3.1.7" +CATEGORY="development" +SHORT_DESC="Modern password hashing for your software and your servers" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="Apache" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="https://github.com/pyca/bcrypt/" +WGET_URL="https://github.com/pyca/bcrypt/archive/$VERSION.tar.gz" + +DEPENDS="python" +BUILD_DEPENDS="python-setuptools python-dev libffi-dev" + +# Rules to configure and make the package. +compile_rules() +{ + python setup.py build && + python setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs + cp -a $install/usr $fs +} diff -r 2e43f9923d01 -r 4e8082a993f8 sshproxy/receipt --- a/sshproxy/receipt Sat Sep 28 16:04:52 2019 +0200 +++ b/sshproxy/receipt Sat Sep 28 16:58:29 2019 +0200 @@ -12,7 +12,7 @@ TAGS="ssh" DEPENDS="python paramiko python-mysql pycrypto" -BUILD_DEPENDS="python paramiko python-mysql pycrypto" +BUILD_DEPENDS="python-bcrypt paramiko python-mysql pycrypto" # Rules to configure and make the package. compile_rules()