# HG changeset patch # User Hans-G?nter Theisgen # Date 1582266456 -3600 # Node ID 5f8ba8c434fa41727008d2b95d9c211035e74941 # Parent c0036f843071094bef17eff4e22535c12fe58c43 updated gnupg (2.2.8 -> 2.2.19) diff -r c0036f843071 -r 5f8ba8c434fa gnupg/receipt --- a/gnupg/receipt Thu Feb 20 17:36:46 2020 +0100 +++ b/gnupg/receipt Fri Feb 21 07:27:36 2020 +0100 @@ -1,36 +1,43 @@ # SliTaz package receipt. PACKAGE="gnupg" -VERSION="2.2.8" +VERSION="2.2.19" CATEGORY="security" SHORT_DESC="Free implementation of the OpenPGP." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" WEB_SITE="https://www.gnupg.org/" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WGET_URL="https://www.gnupg.org/ftp/gcrypt/gnupg/$TARBALL" +WGET_URL="${WEB_SITE}ftp/gcrypt/gnupg/$TARBALL" -DEPENDS="bzlib libassuan libcurl libgcrypt libksba libusb-compat ncurses pth \ -readline pinentry gnutls libusb sqlite openldap npth" -BUILD_DEPENDS="libgpg-error-dev libassuan-dev libgcrypt-dev libksba-dev \ -pth-dev curl-dev zlib-dev libusb-compat-dev readline-dev gnutls-dev \ -libgnutls libusb-dev sqlite-dev openldap-dev npth-dev" +DEPENDS="bzlib gnutls libassuan libcurl libgcrypt libksba libusb + libusb-compat ncurses npth openldap pinentry pth readline sqlite" +BUILD_DEPENDS="curl-dev gnutls-dev libassuan-dev libgcrypt-dev libgnutls + libgpg-error-dev libksba-dev libusb-compat-dev libusb-dev + npth-dev openldap-dev pth-dev readline-dev sqlite-dev zlib-dev" # Rules to configure and make the package. compile_rules() { # Integrity check: https://www.gnupg.org/download/integrity_check.html - echo "d87553a125832ea90e8aeb3ceeecf24f88de56fb $SRC/$TARBALL" | sha1sum -c || exit 1 + echo "e24a1208ffe69d7436b2f27e99542a85f34d0ac0 $SRC/$TARBALL" | sha1sum -c || + exit 1 - export LDFLAGS="-lrt" - ./configure $CONFIGURE_ARGS && make && make install + export LDFLAGS="-lrt" - find $install/usr/share/man -type f -exec gzip -9 \{\} \; + ./configure $CONFIGURE_ARGS && + make && + make install + + # 2.2.19 already gzipped +# find $install/usr/share/man -type f -exec gzip -9 \{\} \; } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs - rm -r $fs/usr/share/doc $fs/usr/share/info $fs/usr/share/locale + cp -a $install/* $fs + rm -r $fs/usr/share/doc $fs/usr/share/info \ + $fs/usr/share/locale }