wok-next diff python-passlib/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents 8b5b2a6d07b8
children
line diff
     1.1 --- a/python-passlib/receipt	Fri Sep 14 01:56:52 2018 +0300
     1.2 +++ b/python-passlib/receipt	Wed May 13 07:41:00 2020 +0100
     1.3 @@ -1,31 +1,25 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7 +ORIGIN="passlib"
     1.8  PACKAGE="python-passlib"
     1.9 -VERSION="1.6.2"
    1.10 +VERSION="1.7.1"
    1.11  CATEGORY="misc"
    1.12 -SHORT_DESC="comprehensive password hashing framework supporting over 30 schemes."
    1.13 +SHORT_DESC="Comprehensive password hashing framework supporting over 30 schemes"
    1.14  MAINTAINER="pascal.bellard@slitaz.org"
    1.15  LICENSE="BSD"
    1.16 -WEB_SITE="https://pypi.org/project/passlib/"
    1.17 +WEB_SITE="https://pypi.org/project/$ORIGIN/"
    1.18 +HOST_ARCH="any"
    1.19  REPOLOGY="python:passlib"
    1.20  
    1.21 -SOURCE="passlib"
    1.22 -TARBALL="$SOURCE-$VERSION.tar.gz"
    1.23 -WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
    1.24 +BUILD_DEPENDS="python python3"
    1.25 +SPLIT="${PACKAGE/python/python3}:3"
    1.26  
    1.27 -DEPENDS="python"
    1.28 -BUILD_DEPENDS="wget python"
    1.29 -
    1.30 -# Rules to configure and make the package.
    1.31 -compile_rules()
    1.32 -{
    1.33 -	python setup.py build &&
    1.34 -	python setup.py install --root=$DESTDIR
    1.35 +compile_rules() {
    1.36 +	pip$SET install --no-compile --root=$install $ORIGIN==$VERSION
    1.37  }
    1.38  
    1.39 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.40 -genpkg_rules()
    1.41 -{
    1.42 -	cp -a $install/usr $fs/
    1.43 +genpkg_rules() {
    1.44 +	copy @std
    1.45 +	py=${PACKAGE%%-*} # python/python3
    1.46 +	DEPENDS="$py"
    1.47  }
    1.48 -