# HG changeset patch # User Hans-G?nter Theisgen # Date 1557070854 -3600 # Node ID 163f71af5751b9bc186c87fe355b688e687c7cee # Parent b8d09779114645a9b8a7cebe48da95485d68cddc updated nettle and nettle-dev (3.1.1 -> 3.4.1) diff -r b8d097791146 -r 163f71af5751 nettle-dev/receipt --- a/nettle-dev/receipt Sun May 05 14:38:56 2019 +0100 +++ b/nettle-dev/receipt Sun May 05 16:40:54 2019 +0100 @@ -1,22 +1,24 @@ # SliTaz package receipt. PACKAGE="nettle-dev" -VERSION="3.1.1" +VERSION="3.4.1" CATEGORY="development" -SHORT_DESC="devel files for nettle" +SHORT_DESC="Development files for nettle." MAINTAINER="devl547@gmail.com" LICENSE="LGPL2.1" -WEB_SITE="http://www.lysator.liu.se/~nisse/nettle/" -HOST_ARCH="i486 arm" +WEB_SITE="https://www.lysator.liu.se/~nisse/nettle/" WANTED="nettle" DEPENDS="nettle pkg-config" +HOST_ARCH="i486 arm" + # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - 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 + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r b8d097791146 -r 163f71af5751 nettle/receipt --- a/nettle/receipt Sun May 05 14:38:56 2019 +0100 +++ b/nettle/receipt Sun May 05 16:40:54 2019 +0100 @@ -1,18 +1,20 @@ # SliTaz package receipt. PACKAGE="nettle" -VERSION="3.1.1" +VERSION="3.4.1" CATEGORY="security" -SHORT_DESC="Nettle is a cryptographic library that is designed to fit easily in more or less any context." +SHORT_DESC="A cryptographic library that is designed to fit easily in more or less any context." MAINTAINER="devl547@gmail.com" LICENSE="LGPL2.1" +WEB_SITE="https://www.lysator.liu.se/~nisse/nettle/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.lysator.liu.se/~nisse/nettle/" -WGET_URL="http://www.lysator.liu.se/~nisse/archive/$TARBALL" -HOST_ARCH="i486 arm" +WGET_URL="https://www.lysator.liu.se/~nisse/archive/$TARBALL" DEPENDS="gmp" -BUILD_DEPENDS="gmp-dev" +BUILD_DEPENDS="gcc83 gmp-dev" + +HOST_ARCH="i486 arm" # Handle cross compilation. case "$ARCH" in @@ -23,17 +25,22 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --libdir=/usr/lib \ - --enable-shared \ + export CC=gcc-83 + export CXX=g++-83 + + ./configure \ + --libdir=/usr/lib \ + --enable-shared \ $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/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib }