# HG changeset patch # User Pascal Bellard # Date 1566060293 -7200 # Node ID 9b196667495f46d17699c55cf1b812288bb22203 # Parent 582d168ed65f9d124dfd6870f93dbcdd4439348c Add python-cffi, python-cparser & python-cryptography diff -r 582d168ed65f -r 9b196667495f grub2-efi-x64/receipt --- a/grub2-efi-x64/receipt Sat Aug 17 17:28:25 2019 +0200 +++ b/grub2-efi-x64/receipt Sat Aug 17 18:44:53 2019 +0200 @@ -44,7 +44,7 @@ --prefix=/usr --sysconfdir=/etc \ --with-platform=efi --target=${EFI_ARCH} --program-prefix="" \ --mandir=/usr/share/man $CONFIGURE_ARGS && - sed -i 's| -Werror||' grub-core/Makefile && + sed -i 's| -Werror||' Makefile grub-core/Makefile && make $MAKEFLAGS && cd grub-core && ../grub-mkimage -d . -o ../bootx64.efi -O x86_64-efi -p /boot/grub \ diff -r 582d168ed65f -r 9b196667495f paramiko/receipt --- a/paramiko/receipt Sat Aug 17 17:28:25 2019 +0200 +++ b/paramiko/receipt Sat Aug 17 18:44:53 2019 +0200 @@ -12,7 +12,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$VERSION.tar.gz" -DEPENDS="pycrypto" +DEPENDS="python-cryptography" BUILD_DEPENDS="python python-setuptools" # Rules to configure and make the package. diff -r 582d168ed65f -r 9b196667495f python-cffi/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-cffi/receipt Sat Aug 17 18:44:53 2019 +0200 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="python-cffi" +VERSION="1.12.3" +CATEGORY="development" +SHORT_DESC="C Foreign Function Interface for Python" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://cffi.readthedocs.io/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://files.pythonhosted.org/packages/93/1a/ab8c62b5838722f29f3daffcc8d4bd61844aa9b5f437341cc890ceee483b/cffi-1.12.3.tar.gz#sha256=041c81822e9f84b1d9c401182e174996f0bae9991f33725d059b771744290774" + +DEPENDS="python" +BUILD_DEPENDS="python-setuptools python-dev" + +# Rules to configure and make the package. +compile_rules() +{ + python setup.py install --prefix=/usr --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs/ +} diff -r 582d168ed65f -r 9b196667495f python-cparser/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-cparser/receipt Sat Aug 17 18:44:53 2019 +0200 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="python-cparser" +VERSION="2.19" +CATEGORY="development" +SHORT_DESC="Complete C99 parser in pure Python" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +WEB_SITE="https://github.com/eliben/pycparser/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/eliben/pycparser/archive/release_v$VERSION.tar.gz" + +DEPENDS="python" +BUILD_DEPENDS="python" + +# Rules to configure and make the package. +compile_rules() +{ + python setup.py install --prefix=/usr --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs/ +} diff -r 582d168ed65f -r 9b196667495f python-cryptography/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-cryptography/receipt Sat Aug 17 18:44:53 2019 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="python-cryptography" +VERSION="2.7" +CATEGORY="development" +SHORT_DESC="Python library exposing cryptographic recipes and primitives" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +WEB_SITE="https://cryptography.io/" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/pyca/cryptography/archive/$VERSION.tar.gz" + +DEPENDS="python" +BUILD_DEPENDS="python-setuptools openssl-dev python-dev python-cffi \ +python-cparser" +#BUILD_DEPENDS="python" + +# Rules to configure and make the package. +compile_rules() +{ + python setup.py install --prefix=/usr --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs/ +}