wok rev 21225

updated libgpg-error and libgpg-error-dev (1.31 -> 1.36)
author Hans-G?nter Theisgen
date Wed Apr 10 16:22:55 2019 +0100 (2019-04-10)
parents 6dfb0d97b97e
children 0f976ebfd6ad
files libgpg-error-dev/receipt libgpg-error/receipt
line diff
     1.1 --- a/libgpg-error-dev/receipt	Wed Apr 10 15:33:18 2019 +0100
     1.2 +++ b/libgpg-error-dev/receipt	Wed Apr 10 16:22:55 2019 +0100
     1.3 @@ -1,21 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libgpg-error-dev"
     1.7 -VERSION="1.31"
     1.8 +VERSION="1.36"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Commons error messages for GnuPG headers."
    1.11 +SHORT_DESC="Common error messages for GnuPG - development files."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="https://www.gnupg.org/related_software/libgpg-error/"
    1.15 -HOST_ARCH="i486 arm"
    1.16 +WEB_SITE="https://www.gnupg.org/software/libgpg-error/"
    1.17  
    1.18  WANTED="libgpg-error"
    1.19  DEPENDS="libgpg-error"
    1.20 +HOST_ARCH="i486 arm"
    1.21  
    1.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.23  genpkg_rules()
    1.24  {
    1.25  	cp -a $install/* $fs
    1.26 -	rm -r $fs/usr/bin/gpg-error $fs/usr/lib/*.so* $fs/usr/share/man
    1.27 +
    1.28 +	rm -r $fs/usr/bin/gpg-error
    1.29 +	rm -r $fs/usr/lib/*.so*
    1.30 +	rm -r $fs/usr/share/man
    1.31  	rm -r $fs/usr/share/locale
    1.32  }
     2.1 --- a/libgpg-error/receipt	Wed Apr 10 15:33:18 2019 +0100
     2.2 +++ b/libgpg-error/receipt	Wed Apr 10 16:22:55 2019 +0100
     2.3 @@ -1,27 +1,28 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libgpg-error"
     2.7 -VERSION="1.31"
     2.8 +VERSION="1.36"
     2.9  CATEGORY="security"
    2.10 -SHORT_DESC="Commons error messages for GnuPG."
    2.11 +SHORT_DESC="Common error messages for GnuPG."
    2.12  MAINTAINER="erjo@slitaz.org"
    2.13  LICENSE="GPL2"
    2.14 -WEB_SITE="https://www.gnupg.org/related_software/libgpg-error/"
    2.15 +WEB_SITE="https://www.gnupg.org/software/libgpg-error/"
    2.16 +
    2.17  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.18 -WGET_URL="https://www.gnupg.org/ftp/gcrypt/libgpg-error/$TARBALL"
    2.19 -HOST_ARCH="i486 arm"
    2.20 +WGET_URL="https://www.gnupg.org/ftp/gcrypt/$PACKAGE/$TARBALL"
    2.21  
    2.22  DEPENDS=""
    2.23 +HOST_ARCH="i486 arm"
    2.24  
    2.25  # Rules to configure and make the package.
    2.26  compile_rules()
    2.27  {
    2.28  	# Integrity check: https://www.gnupg.org/download/integrity_check.html
    2.29 -	echo "2bafad316d4e3e12bae4822b14ed9020090e6acf  $SRC/$TARBALL" | sha1sum -c || exit 1
    2.30 +	echo "5245ce38b198cecd57775fb3c7b7328ec1a2a615  $SRC/$TARBALL" | sha1sum -c || exit 1
    2.31  
    2.32 -#	touch src/extra-h.in
    2.33  	./configure $CONFIGURE_ARGS &&
    2.34 -	make && make DESTDIR=$DESTDIR install
    2.35 +	make -j 1 &&
    2.36 +	make DESTDIR=$DESTDIR install
    2.37  
    2.38  	find $install/usr/share/man -type f -exec gzip -9 \{\} \;
    2.39  }
    2.40 @@ -29,9 +30,10 @@
    2.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.42  genpkg_rules()
    2.43  {
    2.44 -	mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share
    2.45 +	mkdir -p $fs/usr/bin $fs/usr/lib
    2.46 +	mkdir -p $fs/usr/share
    2.47  
    2.48 -	cp -a $install/usr/bin/gpg-error $fs/usr/bin
    2.49 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.50 -	#cp -a $install/usr/share/man $fs/usr/share
    2.51 +	cp -a $install/usr/bin/gpg-error	$fs/usr/bin
    2.52 +	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    2.53 +	#cp -a $install/usr/share/man		$fs/usr/share
    2.54  }