wok rev 21811

Add python-enum34
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 17 19:18:13 2019 +0200 (2019-08-17)
parents 9b196667495f
children bcd951d4a0a1
files grub2-efi-x64/receipt paramiko/receipt python-cryptography/receipt python-enum34/receipt
line diff
     1.1 --- a/grub2-efi-x64/receipt	Sat Aug 17 18:44:53 2019 +0200
     1.2 +++ b/grub2-efi-x64/receipt	Sat Aug 17 19:18:13 2019 +0200
     1.3 @@ -44,7 +44,8 @@
     1.4  		--prefix=/usr --sysconfdir=/etc \
     1.5  		--with-platform=efi --target=${EFI_ARCH} --program-prefix="" \
     1.6  		--mandir=/usr/share/man $CONFIGURE_ARGS &&
     1.7 -	sed -i 's| -Werror||' Makefile grub-core/Makefile &&
     1.8 +	sed -i 's| -Werror||;s|-Wl,--copy-dt-needed-entries||' \
     1.9 +		Makefile grub-core/Makefile &&
    1.10  	make $MAKEFLAGS &&
    1.11  	cd grub-core &&
    1.12  	../grub-mkimage -d . -o ../bootx64.efi -O x86_64-efi -p /boot/grub \
     2.1 --- a/paramiko/receipt	Sat Aug 17 18:44:53 2019 +0200
     2.2 +++ b/paramiko/receipt	Sat Aug 17 19:18:13 2019 +0200
     2.3 @@ -12,7 +12,7 @@
     2.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     2.5  WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$VERSION.tar.gz"
     2.6  
     2.7 -DEPENDS="python-cryptography"
     2.8 +DEPENDS="python-cryptography python-pyasn1"
     2.9  BUILD_DEPENDS="python python-setuptools"
    2.10  
    2.11  # Rules to configure and make the package.
     3.1 --- a/python-cryptography/receipt	Sat Aug 17 18:44:53 2019 +0200
     3.2 +++ b/python-cryptography/receipt	Sat Aug 17 19:18:13 2019 +0200
     3.3 @@ -10,7 +10,7 @@
     3.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     3.5  WGET_URL="https://github.com/pyca/cryptography/archive/$VERSION.tar.gz"
     3.6  
     3.7 -DEPENDS="python"
     3.8 +DEPENDS="python python-six python-enum34"
     3.9  BUILD_DEPENDS="python-setuptools openssl-dev python-dev python-cffi \
    3.10  python-cparser"
    3.11  #BUILD_DEPENDS="python"
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/python-enum34/receipt	Sat Aug 17 19:18:13 2019 +0200
     4.3 @@ -0,0 +1,26 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="python-enum34"
     4.7 +VERSION="1.1.6"
     4.8 +CATEGORY="development"
     4.9 +SHORT_DESC="Python 3.4 Enum backport"
    4.10 +MAINTAINER="pascal.bellard@slitaz.org"
    4.11 +LICENSE="BSD"
    4.12 +WEB_SITE="https://bitbucket.org/stoneleaf/enum34/"
    4.13 +TARBALL="$PACKAGE-$VERSION.zip"
    4.14 +WGET_URL="https://files.pythonhosted.org/packages/e8/26/a6101edcf724453845c850281b96b89a10dac6bd98edebc82634fccce6a5/enum34-1.1.6.zip"
    4.15 +
    4.16 +DEPENDS="python"
    4.17 +BUILD_DEPENDS="python-setuptools"
    4.18 +
    4.19 +# Rules to configure and make the package.
    4.20 +compile_rules()
    4.21 +{
    4.22 +	python setup.py install --prefix=/usr --root=$DESTDIR
    4.23 +}
    4.24 +
    4.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.26 +genpkg_rules()
    4.27 +{
    4.28 +	cp -a $install/usr $fs/
    4.29 +}