# HG changeset patch # User Pascal Bellard # Date 1566062293 -7200 # Node ID 74f2b86be90c84f7ea8ed63a73e953c72ec93a7d # Parent 9b196667495f46d17699c55cf1b812288bb22203 Add python-enum34 diff -r 9b196667495f -r 74f2b86be90c grub2-efi-x64/receipt --- a/grub2-efi-x64/receipt Sat Aug 17 18:44:53 2019 +0200 +++ b/grub2-efi-x64/receipt Sat Aug 17 19:18:13 2019 +0200 @@ -44,7 +44,8 @@ --prefix=/usr --sysconfdir=/etc \ --with-platform=efi --target=${EFI_ARCH} --program-prefix="" \ --mandir=/usr/share/man $CONFIGURE_ARGS && - sed -i 's| -Werror||' Makefile grub-core/Makefile && + sed -i 's| -Werror||;s|-Wl,--copy-dt-needed-entries||' \ + Makefile grub-core/Makefile && make $MAKEFLAGS && cd grub-core && ../grub-mkimage -d . -o ../bootx64.efi -O x86_64-efi -p /boot/grub \ diff -r 9b196667495f -r 74f2b86be90c paramiko/receipt --- a/paramiko/receipt Sat Aug 17 18:44:53 2019 +0200 +++ b/paramiko/receipt Sat Aug 17 19:18:13 2019 +0200 @@ -12,7 +12,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$VERSION.tar.gz" -DEPENDS="python-cryptography" +DEPENDS="python-cryptography python-pyasn1" BUILD_DEPENDS="python python-setuptools" # Rules to configure and make the package. diff -r 9b196667495f -r 74f2b86be90c python-cryptography/receipt --- a/python-cryptography/receipt Sat Aug 17 18:44:53 2019 +0200 +++ b/python-cryptography/receipt Sat Aug 17 19:18:13 2019 +0200 @@ -10,7 +10,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/pyca/cryptography/archive/$VERSION.tar.gz" -DEPENDS="python" +DEPENDS="python python-six python-enum34" BUILD_DEPENDS="python-setuptools openssl-dev python-dev python-cffi \ python-cparser" #BUILD_DEPENDS="python" diff -r 9b196667495f -r 74f2b86be90c python-enum34/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-enum34/receipt Sat Aug 17 19:18:13 2019 +0200 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="python-enum34" +VERSION="1.1.6" +CATEGORY="development" +SHORT_DESC="Python 3.4 Enum backport" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +WEB_SITE="https://bitbucket.org/stoneleaf/enum34/" +TARBALL="$PACKAGE-$VERSION.zip" +WGET_URL="https://files.pythonhosted.org/packages/e8/26/a6101edcf724453845c850281b96b89a10dac6bd98edebc82634fccce6a5/enum34-1.1.6.zip" + +DEPENDS="python" +BUILD_DEPENDS="python-setuptools" + +# 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/ +}