# HG changeset patch # User Aleksej Bobylev # Date 1534945551 -10800 # Node ID 92f1f4b981701f8350eee37aee5677cda63d0aa9 # Parent bc5c682688b042bf6afa77e8fa2fe830df8ee1d4 paramiko -> python-paramiko diff -r bc5c682688b0 -r 92f1f4b98170 duplicity/receipt --- a/duplicity/receipt Wed Aug 22 15:44:03 2018 +0300 +++ b/duplicity/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -10,7 +10,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://code.launchpad.net/$PACKAGE/${VERSION%.*}-series/$VERSION/+download/$TARBALL" -DEPENDS="python librsync-dev gnupg paramiko cryptopp lftp" +DEPENDS="python librsync-dev gnupg python-paramiko cryptopp lftp" BUILD_DEPENDS="python-dev $DEPENDS" # NcFTP boto librsync-dev diff -r bc5c682688b0 -r 92f1f4b98170 paramiko/receipt --- a/paramiko/receipt Wed Aug 22 15:44:03 2018 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="paramiko" -VERSION="1.7.7.1" -CATEGORY="development" -SHORT_DESC="module for python that implements the SSH2 protocol." -MAINTAINER="pascal.bellard@slitaz.org" -LICENSE="LGPL2.1" -WEB_SITE="http://www.lag.net/paramiko" -REPOLOGY="python:paramiko1" - -TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="$WEB_SITE/download/$TARBALL" -TAGS="ssh" - -DEPENDS="pycrypto" - -# Rules to configure and make the package. -compile_rules() -{ - python setup.py install --root=$DESTDIR -} - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - cp -a $install/usr $fs -} diff -r bc5c682688b0 -r 92f1f4b98170 python-asn1crypto/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-asn1crypto/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -0,0 +1,23 @@ +# SliTaz package receipt v2. + +PACKAGE="python-asn1crypto" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="Fast ASN.1 parser and serializer" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="MIT" +WEB_SITE="https://pypi.org/project/asn1crypto/" +HOST_ARCH="any" +REPOLOGY="python:asn1crypto" + +BUILD_DEPENDS="python" + +compile_rules() { + pip install --no-compile --root=$DESTDIR asn1crypto +} + +genpkg_rules() { + VERSION=$(sed -n '/^Successfully installed/ s|.*asn1crypto-||p' $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python" +} diff -r bc5c682688b0 -r 92f1f4b98170 python-bcrypt/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-bcrypt/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -0,0 +1,22 @@ +# SliTaz package receipt v2. + +PACKAGE="python-bcrypt" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="Modern password hashing for your software and your servers" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="Apache2" +WEB_SITE="https://pypi.org/project/bcrypt/" +REPOLOGY="python:bcrypt" + +BUILD_DEPENDS="python python-six python-cffi" + +compile_rules() { + pip install --no-compile --root=$DESTDIR bcrypt +} + +genpkg_rules() { + VERSION=$(sed -n '/^Successfully installed/ s|.*bcrypt-||p' $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python" +} diff -r bc5c682688b0 -r 92f1f4b98170 python-cffi/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-cffi/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -0,0 +1,30 @@ +# SliTaz package receipt v2. + +PACKAGE="python-cffi" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="Foreign Function Interface for Python calling C code" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="Apache2" +WEB_SITE="https://pypi.org/project/cffi/" +REPOLOGY="python:cffi" + +BUILD_DEPENDS="python python-pycparser" +SPLIT="$PACKAGE-dev" + +compile_rules() { + pip install --no-compile --root=$DESTDIR cffi +} + +genpkg_rules() { + VERSION=$(sed -n '/^Successfully installed/ s|.*cffi-||p' $LOGS/${PACKAGE%-dev}.log) + case $PACKAGE in + *-dev) + copy @dev + ;; + *) + copy @std + DEPENDS="python python-pycparser" + ;; + esac +} diff -r bc5c682688b0 -r 92f1f4b98170 python-cryptography/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-cryptography/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -0,0 +1,24 @@ +# SliTaz package receipt v2. + +PACKAGE="python-cryptography" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="Provide cryptographic recipes and primitives" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="BSD" +WEB_SITE="https://pypi.org/project/cryptography/" +REPOLOGY="python:cryptography" + +BUILD_DEPENDS="python python-enum34 python-cffi python-asn1crypto python-idna \ +python-six python-ipaddress" + +compile_rules() { + pip install --no-compile --root=$DESTDIR cryptography +} + +genpkg_rules() { + VERSION=$(sed -n '/^Successfully installed/ s|.*cryptography-||p' $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python python-enum34 python-cffi python-asn1crypto python-idna \ + python-six python-ipaddress" +} diff -r bc5c682688b0 -r 92f1f4b98170 python-ipaddress/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-ipaddress/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -0,0 +1,23 @@ +# SliTaz package receipt v2. + +PACKAGE="python-ipaddress" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="IPv4/IPv6 manipulation library" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="PSFL" +WEB_SITE="https://pypi.org/project/ipaddress/" +HOST_ARCH="any" +REPOLOGY="python:ipaddress" + +BUILD_DEPENDS="python" + +compile_rules() { + pip install --no-compile --root=$DESTDIR ipaddress +} + +genpkg_rules() { + VERSION=$(sed -n '/^Successfully installed/ s|.*ipaddress-||p' $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python" +} diff -r bc5c682688b0 -r 92f1f4b98170 python-paramiko/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-paramiko/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -0,0 +1,25 @@ +# SliTaz package receipt v2. + +PACKAGE="python-paramiko" +VERSION="latest" +CATEGORY="development" +SHORT_DESC="SSH2 protocol library" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="LGPL2.1" +WEB_SITE="https://pypi.org/project/paramiko/" +REPOLOGY="python:paramiko" + +BUILD_DEPENDS="python python-pyasn1 python-bcrypt python-cryptography \ +python-pynacl" + +compile_rules() { + pip install --no-compile --root=$DESTDIR paramiko +} + +genpkg_rules() { + VERSION=$(sed -n '/^Successfully installed/ s|.*paramiko-||p' $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python python-pyasn1 python-bcrypt python-cryptography \ + python-pynacl" + TAGS="ssh" +} diff -r bc5c682688b0 -r 92f1f4b98170 python-pyasn1/receipt --- a/python-pyasn1/receipt Wed Aug 22 15:44:03 2018 +0300 +++ b/python-pyasn1/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -1,29 +1,23 @@ -# SliTaz package receipt. +# SliTaz package receipt v2. PACKAGE="python-pyasn1" -VERSION="0.1.8" +VERSION="latest" CATEGORY="development" -SHORT_DESC="ASN.1 types and codecs." +SHORT_DESC="ASN.1 types and codecs" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" -WEB_SITE="https://pypi.python.org/pypi/pyasn1" -PACKAGE="python:pyasn1" +WEB_SITE="https://pypi.org/project/pyasn1/" +HOST_ARCH="any" +REPOLOGY="python:pyasn1" -SOURCE="pyasn1" -TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://pypi.python.org/packages/source/p/pyasn1/$TARBALL" +BUILD_DEPENDS="python" -DEPENDS="python" -BUILD_DEPENDS="python-dev" - -# Rules to configure and make the package. -compile_rules() -{ - python setup.py install --prefix=/usr --root=$DESTDIR +compile_rules() { + pip install --no-compile --root=$DESTDIR pyasn1 } -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - cp -a $install/usr $fs/ +genpkg_rules() { + VERSION=$(sed -n '/^Successfully installed/ s|.*pyasn1-||p' $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python" } diff -r bc5c682688b0 -r 92f1f4b98170 python-pycparser/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-pycparser/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -0,0 +1,23 @@ +# SliTaz package receipt v2. + +PACKAGE="python-pycparser" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="C parser in Python" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="MIT" +WEB_SITE="https://pypi.org/project/pycparser/" +HOST_ARCH="any" +REPOLOGY="python:pycparser" + +BUILD_DEPENDS="python" + +compile_rules() { + pip install --no-compile --root=$DESTDIR pycparser +} + +genpkg_rules() { + VERSION=$(sed -n '/^Successfully installed/ s|.*pycparser-||p' $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python" +} diff -r bc5c682688b0 -r 92f1f4b98170 python-pynacl/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-pynacl/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -0,0 +1,22 @@ +# SliTaz package receipt v2. + +PACKAGE="python-pynacl" +VERSION="latest" +CATEGORY="python" +SHORT_DESC="Python binding to the Networking and Cryptography library (NaCl)" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="Apache2" +WEB_SITE="https://pypi.org/project/PyNaCl/" +REPOLOGY="python:pynacl" + +BUILD_DEPENDS="python python-cffi python-six" + +compile_rules() { + pip install --no-compile --root=$DESTDIR PyNaCl +} + +genpkg_rules() { + VERSION=$(sed -n '/^Successfully installed/ s|.*PyNaCl-||p' $LOGS/$PACKAGE.log) + copy @std + DEPENDS="python python-cffi python-six" +} diff -r bc5c682688b0 -r 92f1f4b98170 sshproxy/receipt --- a/sshproxy/receipt Wed Aug 22 15:44:03 2018 +0300 +++ b/sshproxy/receipt Wed Aug 22 16:45:51 2018 +0300 @@ -11,8 +11,8 @@ WGET_URL="http://ftp.de.debian.org/debian/pool/main/s/sshproxy/$TARBALL" TAGS="ssh" -DEPENDS="python paramiko python-mysql pycrypto" -BUILD_DEPENDS="python paramiko python-mysql pycrypto" +DEPENDS="python python-paramiko python-mysql pycrypto" +BUILD_DEPENDS="python python-paramiko python-mysql pycrypto" # Rules to configure and make the package. compile_rules()