# HG changeset patch # User Hans-G?nter Theisgen # Date 1582294398 -3600 # Node ID 8fa91d8eff3cc35461beadcacf8a29f2b0312f6f # Parent 952323d1e45ee0becfec91b8afc0e2def2a8b1d6 updated gnutls and gnutls-dev (3.3.16 -> 3.6.12) diff -r 952323d1e45e -r 8fa91d8eff3c gnutls-dev/receipt --- a/gnutls-dev/receipt Fri Feb 21 14:38:09 2020 +0100 +++ b/gnutls-dev/receipt Fri Feb 21 15:13:18 2020 +0100 @@ -1,23 +1,25 @@ # SliTaz package receipt. PACKAGE="gnutls-dev" -VERSION="3.3.16" +VERSION="3.6.12" CATEGORY="development" SHORT_DESC="GNU Transport Layer Security Library headers" MAINTAINER="erjo@slitaz.org" LICENSE="GPL3" +WEB_SITE="https://www.gnutls.org/" + +DEPENDS="gmp-dev gnutls libgcrypt-dev libgpg-error-dev libtasn1-dev + nettle-dev p11-kit-dev pkg-config zlib-dev" WANTED="gnutls" -WEB_SITE="http://www.gnu.org/software/gnutls/" + HOST_ARCH="i486 arm" -DEPENDS="gnutls libtasn1-dev libgcrypt-dev libgpg-error-dev p11-kit-dev \ -zlib-dev nettle-dev gmp-dev pkg-config" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr -} \ No newline at end of file + + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr +} diff -r 952323d1e45e -r 8fa91d8eff3c gnutls/receipt --- a/gnutls/receipt Fri Feb 21 14:38:09 2020 +0100 +++ b/gnutls/receipt Fri Feb 21 15:13:18 2020 +0100 @@ -1,22 +1,24 @@ # SliTaz package receipt. PACKAGE="gnutls" -VERSION="3.3.16" +VERSION="3.6.12" CATEGORY="security" -SHORT_DESC="GNU Transport Layer Security Library" +SHORT_DESC="GNU Transport Layer Security Library." MAINTAINER="erjo@slitaz.org" LICENSE="GPL3" +WEB_SITE="https://www.gnutls.org/" + TARBALL="$PACKAGE-$VERSION.tar.lz" -WEB_SITE="http://www.gnu.org/software/gnutls/" WGET_URL="ftp://ftp.gnutls.org/gcrypt/gnutls/v${VERSION%.*}/$TARBALL" + +SUGGESTED="cacerts" +DEPENDS="gcc-lib-base libcrypto libgnutls libgpg-error + libtasn1 libunistring ncurses nettle readline zlib" +BUILD_DEPENDS="gmp-dev libcrypto-dev libgcrypt-dev libgpg-error-dev libtasn1-dev + libunistring-dev lzip ncurses-dev nettle-dev readline-dev" + HOST_ARCH="i486 arm" -DEPENDS="nettle libgpg-error ncurses readline zlib gcc-lib-base -libgnutls libcrypto libtasn1" -BUILD_DEPENDS="libtasn1-dev ncurses-dev readline-dev nettle-dev -libgpg-error-dev libgcrypt-dev libcrypto-dev gmp-dev lzip" -SUGGESTED="cacerts" - # Handle SliTaz arch. case "$SLITAZ_ARCH" in i?86) DEPENDS="$DEPENDS p11-kit" ;; @@ -34,18 +36,21 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --with-libgcrypt \ + # 3.6.12 unrecognised: + # --with-libgcrypt + # --with-zlib + + ./configure \ --disable-guile \ - --with-zlib \ --with-default-trust-store-file="/etc/ssl/ca-bundle.crt" \ $CONFIGURE_ARGS ${ARCH_ARGS} && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr }