wok-next rev 20924

paramiko -> python-paramiko
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Aug 22 16:45:51 2018 +0300 (2018-08-22)
parents bc5c682688b0
children ad3a5f0d655c
files duplicity/receipt paramiko/receipt python-asn1crypto/receipt python-bcrypt/receipt python-cffi/receipt python-cryptography/receipt python-ipaddress/receipt python-paramiko/receipt python-pyasn1/receipt python-pycparser/receipt python-pynacl/receipt sshproxy/receipt
line diff
     1.1 --- a/duplicity/receipt	Wed Aug 22 15:44:03 2018 +0300
     1.2 +++ b/duplicity/receipt	Wed Aug 22 16:45:51 2018 +0300
     1.3 @@ -10,7 +10,7 @@
     1.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.5  WGET_URL="https://code.launchpad.net/$PACKAGE/${VERSION%.*}-series/$VERSION/+download/$TARBALL"
     1.6  
     1.7 -DEPENDS="python librsync-dev gnupg paramiko cryptopp lftp"
     1.8 +DEPENDS="python librsync-dev gnupg python-paramiko cryptopp lftp"
     1.9  BUILD_DEPENDS="python-dev $DEPENDS"
    1.10  # NcFTP boto librsync-dev
    1.11  
     2.1 --- a/paramiko/receipt	Wed Aug 22 15:44:03 2018 +0300
     2.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.3 @@ -1,28 +0,0 @@
     2.4 -# SliTaz package receipt.
     2.5 -
     2.6 -PACKAGE="paramiko"
     2.7 -VERSION="1.7.7.1"
     2.8 -CATEGORY="development"
     2.9 -SHORT_DESC="module for python that implements the SSH2 protocol."
    2.10 -MAINTAINER="pascal.bellard@slitaz.org"
    2.11 -LICENSE="LGPL2.1"
    2.12 -WEB_SITE="http://www.lag.net/paramiko"
    2.13 -REPOLOGY="python:paramiko1"
    2.14 -
    2.15 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.16 -WGET_URL="$WEB_SITE/download/$TARBALL"
    2.17 -TAGS="ssh"
    2.18 -
    2.19 -DEPENDS="pycrypto"
    2.20 -
    2.21 -# Rules to configure and make the package.
    2.22 -compile_rules()
    2.23 -{
    2.24 -	python setup.py install --root=$DESTDIR
    2.25 -}
    2.26 -
    2.27 -# Rules to gen a SliTaz package suitable for Tazpkg.
    2.28 -genpkg_rules()
    2.29 -{
    2.30 -	cp -a $install/usr $fs
    2.31 -}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/python-asn1crypto/receipt	Wed Aug 22 16:45:51 2018 +0300
     3.3 @@ -0,0 +1,23 @@
     3.4 +# SliTaz package receipt v2.
     3.5 +
     3.6 +PACKAGE="python-asn1crypto"
     3.7 +VERSION="latest"
     3.8 +CATEGORY="python"
     3.9 +SHORT_DESC="Fast ASN.1 parser and serializer"
    3.10 +MAINTAINER="al.bobylev@gmail.com"
    3.11 +LICENSE="MIT"
    3.12 +WEB_SITE="https://pypi.org/project/asn1crypto/"
    3.13 +HOST_ARCH="any"
    3.14 +REPOLOGY="python:asn1crypto"
    3.15 +
    3.16 +BUILD_DEPENDS="python"
    3.17 +
    3.18 +compile_rules() {
    3.19 +	pip install --no-compile --root=$DESTDIR asn1crypto
    3.20 +}
    3.21 +
    3.22 +genpkg_rules() {
    3.23 +	VERSION=$(sed -n '/^Successfully installed/ s|.*asn1crypto-||p' $LOGS/$PACKAGE.log)
    3.24 +	copy @std
    3.25 +	DEPENDS="python"
    3.26 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/python-bcrypt/receipt	Wed Aug 22 16:45:51 2018 +0300
     4.3 @@ -0,0 +1,22 @@
     4.4 +# SliTaz package receipt v2.
     4.5 +
     4.6 +PACKAGE="python-bcrypt"
     4.7 +VERSION="latest"
     4.8 +CATEGORY="python"
     4.9 +SHORT_DESC="Modern password hashing for your software and your servers"
    4.10 +MAINTAINER="al.bobylev@gmail.com"
    4.11 +LICENSE="Apache2"
    4.12 +WEB_SITE="https://pypi.org/project/bcrypt/"
    4.13 +REPOLOGY="python:bcrypt"
    4.14 +
    4.15 +BUILD_DEPENDS="python python-six python-cffi"
    4.16 +
    4.17 +compile_rules() {
    4.18 +	pip install --no-compile --root=$DESTDIR bcrypt
    4.19 +}
    4.20 +
    4.21 +genpkg_rules() {
    4.22 +	VERSION=$(sed -n '/^Successfully installed/ s|.*bcrypt-||p' $LOGS/$PACKAGE.log)
    4.23 +	copy @std
    4.24 +	DEPENDS="python"
    4.25 +}
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/python-cffi/receipt	Wed Aug 22 16:45:51 2018 +0300
     5.3 @@ -0,0 +1,30 @@
     5.4 +# SliTaz package receipt v2.
     5.5 +
     5.6 +PACKAGE="python-cffi"
     5.7 +VERSION="latest"
     5.8 +CATEGORY="python"
     5.9 +SHORT_DESC="Foreign Function Interface for Python calling C code"
    5.10 +MAINTAINER="al.bobylev@gmail.com"
    5.11 +LICENSE="Apache2"
    5.12 +WEB_SITE="https://pypi.org/project/cffi/"
    5.13 +REPOLOGY="python:cffi"
    5.14 +
    5.15 +BUILD_DEPENDS="python python-pycparser"
    5.16 +SPLIT="$PACKAGE-dev"
    5.17 +
    5.18 +compile_rules() {
    5.19 +	pip install --no-compile --root=$DESTDIR cffi
    5.20 +}
    5.21 +
    5.22 +genpkg_rules() {
    5.23 +	VERSION=$(sed -n '/^Successfully installed/ s|.*cffi-||p' $LOGS/${PACKAGE%-dev}.log)
    5.24 +	case $PACKAGE in
    5.25 +		*-dev)
    5.26 +			copy @dev
    5.27 +			;;
    5.28 +		*)
    5.29 +			copy @std
    5.30 +			DEPENDS="python python-pycparser"
    5.31 +			;;
    5.32 +	esac
    5.33 +}
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/python-cryptography/receipt	Wed Aug 22 16:45:51 2018 +0300
     6.3 @@ -0,0 +1,24 @@
     6.4 +# SliTaz package receipt v2.
     6.5 +
     6.6 +PACKAGE="python-cryptography"
     6.7 +VERSION="latest"
     6.8 +CATEGORY="python"
     6.9 +SHORT_DESC="Provide cryptographic recipes and primitives"
    6.10 +MAINTAINER="al.bobylev@gmail.com"
    6.11 +LICENSE="BSD"
    6.12 +WEB_SITE="https://pypi.org/project/cryptography/"
    6.13 +REPOLOGY="python:cryptography"
    6.14 +
    6.15 +BUILD_DEPENDS="python python-enum34 python-cffi python-asn1crypto python-idna \
    6.16 +python-six python-ipaddress"
    6.17 +
    6.18 +compile_rules() {
    6.19 +	pip install --no-compile --root=$DESTDIR cryptography
    6.20 +}
    6.21 +
    6.22 +genpkg_rules() {
    6.23 +	VERSION=$(sed -n '/^Successfully installed/ s|.*cryptography-||p' $LOGS/$PACKAGE.log)
    6.24 +	copy @std
    6.25 +	DEPENDS="python python-enum34 python-cffi python-asn1crypto python-idna \
    6.26 +	python-six python-ipaddress"
    6.27 +}
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/python-ipaddress/receipt	Wed Aug 22 16:45:51 2018 +0300
     7.3 @@ -0,0 +1,23 @@
     7.4 +# SliTaz package receipt v2.
     7.5 +
     7.6 +PACKAGE="python-ipaddress"
     7.7 +VERSION="latest"
     7.8 +CATEGORY="python"
     7.9 +SHORT_DESC="IPv4/IPv6 manipulation library"
    7.10 +MAINTAINER="al.bobylev@gmail.com"
    7.11 +LICENSE="PSFL"
    7.12 +WEB_SITE="https://pypi.org/project/ipaddress/"
    7.13 +HOST_ARCH="any"
    7.14 +REPOLOGY="python:ipaddress"
    7.15 +
    7.16 +BUILD_DEPENDS="python"
    7.17 +
    7.18 +compile_rules() {
    7.19 +	pip install --no-compile --root=$DESTDIR ipaddress
    7.20 +}
    7.21 +
    7.22 +genpkg_rules() {
    7.23 +	VERSION=$(sed -n '/^Successfully installed/ s|.*ipaddress-||p' $LOGS/$PACKAGE.log)
    7.24 +	copy @std
    7.25 +	DEPENDS="python"
    7.26 +}
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/python-paramiko/receipt	Wed Aug 22 16:45:51 2018 +0300
     8.3 @@ -0,0 +1,25 @@
     8.4 +# SliTaz package receipt v2.
     8.5 +
     8.6 +PACKAGE="python-paramiko"
     8.7 +VERSION="latest"
     8.8 +CATEGORY="development"
     8.9 +SHORT_DESC="SSH2 protocol library"
    8.10 +MAINTAINER="pascal.bellard@slitaz.org"
    8.11 +LICENSE="LGPL2.1"
    8.12 +WEB_SITE="https://pypi.org/project/paramiko/"
    8.13 +REPOLOGY="python:paramiko"
    8.14 +
    8.15 +BUILD_DEPENDS="python python-pyasn1 python-bcrypt python-cryptography \
    8.16 +python-pynacl"
    8.17 +
    8.18 +compile_rules() {
    8.19 +	pip install --no-compile --root=$DESTDIR paramiko
    8.20 +}
    8.21 +
    8.22 +genpkg_rules() {
    8.23 +	VERSION=$(sed -n '/^Successfully installed/ s|.*paramiko-||p' $LOGS/$PACKAGE.log)
    8.24 +	copy @std
    8.25 +	DEPENDS="python python-pyasn1 python-bcrypt python-cryptography \
    8.26 +	python-pynacl"
    8.27 +	TAGS="ssh"
    8.28 +}
     9.1 --- a/python-pyasn1/receipt	Wed Aug 22 15:44:03 2018 +0300
     9.2 +++ b/python-pyasn1/receipt	Wed Aug 22 16:45:51 2018 +0300
     9.3 @@ -1,29 +1,23 @@
     9.4 -# SliTaz package receipt.
     9.5 +# SliTaz package receipt v2.
     9.6  
     9.7  PACKAGE="python-pyasn1"
     9.8 -VERSION="0.1.8"
     9.9 +VERSION="latest"
    9.10  CATEGORY="development"
    9.11 -SHORT_DESC="ASN.1 types and codecs."
    9.12 +SHORT_DESC="ASN.1 types and codecs"
    9.13  MAINTAINER="pascal.bellard@slitaz.org"
    9.14  LICENSE="BSD"
    9.15 -WEB_SITE="https://pypi.python.org/pypi/pyasn1"
    9.16 -PACKAGE="python:pyasn1"
    9.17 +WEB_SITE="https://pypi.org/project/pyasn1/"
    9.18 +HOST_ARCH="any"
    9.19 +REPOLOGY="python:pyasn1"
    9.20  
    9.21 -SOURCE="pyasn1"
    9.22 -TARBALL="$SOURCE-$VERSION.tar.gz"
    9.23 -WGET_URL="https://pypi.python.org/packages/source/p/pyasn1/$TARBALL"
    9.24 +BUILD_DEPENDS="python"
    9.25  
    9.26 -DEPENDS="python"
    9.27 -BUILD_DEPENDS="python-dev"
    9.28 -
    9.29 -# Rules to configure and make the package.
    9.30 -compile_rules()
    9.31 -{
    9.32 -	python setup.py install --prefix=/usr --root=$DESTDIR
    9.33 +compile_rules() {
    9.34 +	pip install --no-compile --root=$DESTDIR pyasn1
    9.35  }
    9.36  
    9.37 -# Rules to gen a SliTaz package suitable for Tazpkg.
    9.38 -genpkg_rules()
    9.39 -{
    9.40 -	cp -a $install/usr $fs/
    9.41 +genpkg_rules() {
    9.42 +	VERSION=$(sed -n '/^Successfully installed/ s|.*pyasn1-||p' $LOGS/$PACKAGE.log)
    9.43 +	copy @std
    9.44 +	DEPENDS="python"
    9.45  }
    10.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.2 +++ b/python-pycparser/receipt	Wed Aug 22 16:45:51 2018 +0300
    10.3 @@ -0,0 +1,23 @@
    10.4 +# SliTaz package receipt v2.
    10.5 +
    10.6 +PACKAGE="python-pycparser"
    10.7 +VERSION="latest"
    10.8 +CATEGORY="python"
    10.9 +SHORT_DESC="C parser in Python"
   10.10 +MAINTAINER="al.bobylev@gmail.com"
   10.11 +LICENSE="MIT"
   10.12 +WEB_SITE="https://pypi.org/project/pycparser/"
   10.13 +HOST_ARCH="any"
   10.14 +REPOLOGY="python:pycparser"
   10.15 +
   10.16 +BUILD_DEPENDS="python"
   10.17 +
   10.18 +compile_rules() {
   10.19 +	pip install --no-compile --root=$DESTDIR pycparser
   10.20 +}
   10.21 +
   10.22 +genpkg_rules() {
   10.23 +	VERSION=$(sed -n '/^Successfully installed/ s|.*pycparser-||p' $LOGS/$PACKAGE.log)
   10.24 +	copy @std
   10.25 +	DEPENDS="python"
   10.26 +}
    11.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    11.2 +++ b/python-pynacl/receipt	Wed Aug 22 16:45:51 2018 +0300
    11.3 @@ -0,0 +1,22 @@
    11.4 +# SliTaz package receipt v2.
    11.5 +
    11.6 +PACKAGE="python-pynacl"
    11.7 +VERSION="latest"
    11.8 +CATEGORY="python"
    11.9 +SHORT_DESC="Python binding to the Networking and Cryptography library (NaCl)"
   11.10 +MAINTAINER="al.bobylev@gmail.com"
   11.11 +LICENSE="Apache2"
   11.12 +WEB_SITE="https://pypi.org/project/PyNaCl/"
   11.13 +REPOLOGY="python:pynacl"
   11.14 +
   11.15 +BUILD_DEPENDS="python python-cffi python-six"
   11.16 +
   11.17 +compile_rules() {
   11.18 +	pip install --no-compile --root=$DESTDIR PyNaCl
   11.19 +}
   11.20 +
   11.21 +genpkg_rules() {
   11.22 +	VERSION=$(sed -n '/^Successfully installed/ s|.*PyNaCl-||p' $LOGS/$PACKAGE.log)
   11.23 +	copy @std
   11.24 +	DEPENDS="python python-cffi python-six"
   11.25 +}
    12.1 --- a/sshproxy/receipt	Wed Aug 22 15:44:03 2018 +0300
    12.2 +++ b/sshproxy/receipt	Wed Aug 22 16:45:51 2018 +0300
    12.3 @@ -11,8 +11,8 @@
    12.4  WGET_URL="http://ftp.de.debian.org/debian/pool/main/s/sshproxy/$TARBALL"
    12.5  TAGS="ssh"
    12.6  
    12.7 -DEPENDS="python paramiko python-mysql pycrypto"
    12.8 -BUILD_DEPENDS="python paramiko python-mysql pycrypto"
    12.9 +DEPENDS="python python-paramiko python-mysql pycrypto"
   12.10 +BUILD_DEPENDS="python python-paramiko python-mysql pycrypto"
   12.11  
   12.12  # Rules to configure and make the package.
   12.13  compile_rules()