wok rev 24791
updated libgcrypt and libgcrypt-dev (1.8.5 -> 1.9.4)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 21 14:11:57 2022 +0100 (2022-03-21) |
parents | 1124e71377d3 |
children | df1a993adf56 |
files | libgcrypt-dev/receipt libgcrypt/receipt |
line diff
1.1 --- a/libgcrypt-dev/receipt Mon Mar 21 13:58:19 2022 +0100 1.2 +++ b/libgcrypt-dev/receipt Mon Mar 21 14:11:57 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libgcrypt-dev" 1.7 -VERSION="1.8.5" 1.8 +VERSION="1.9.4" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Cryptographic library based on GnuPG - development files." 1.11 MAINTAINER="erjo@slitaz.org" 1.12 @@ -17,7 +17,8 @@ 1.13 genpkg_rules() 1.14 { 1.15 cp -a $install/* $fs 1.16 - rm -r $fs/usr/bin/dumpsexp 1.17 + 1.18 + rm -r $fs/usr/bin/dumpsexp 1.19 rm -r $fs/usr/bin/hmac256 1.20 rm -r $fs/usr/lib/*.so* 1.21 rm -r $fs/usr/share/man
2.1 --- a/libgcrypt/receipt Mon Mar 21 13:58:19 2022 +0100 2.2 +++ b/libgcrypt/receipt Mon Mar 21 14:11:57 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libgcrypt" 2.7 -VERSION="1.8.5" 2.8 +VERSION="1.9.4" 2.9 CATEGORY="security" 2.10 SHORT_DESC="Cryptographic library based on GnuPG." 2.11 MAINTAINER="erjo@slitaz.org" 2.12 @@ -26,19 +26,20 @@ 2.13 compile_rules() 2.14 { 2.15 # Integrity check: https://www.gnupg.org/download/integrity_check.html 2.16 - echo "2d8781e92f88706707a1e76fb628b499ad538a30 $SRC/$TARBALL" | sha1sum -c || exit 1 2.17 + echo "1bccc8393482fa1953323ff429c6b5ba5676eb1a $SRC/$TARBALL" | sha1sum -c || exit 1 2.18 2.19 case "$ARCH" in 2.20 - arm) 2.21 + (arm) 2.22 #LIBS="-L/cross/arm/sysroot/usr/lib -lgpg-error" 2.23 ./configure \ 2.24 --build=i486-slitaz-linux \ 2.25 --host=arm-slitaz-linux-gnueabi ;; 2.26 - *) 2.27 + (*) 2.28 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lgpg-error" 2.29 ./configure \ 2.30 --build=$HOST_SYSTEM \ 2.31 - --host=$HOST_SYSTEM ;; 2.32 + --host=$HOST_SYSTEM 2.33 + ;; 2.34 esac && 2.35 make && 2.36 make install