# HG changeset patch # User Hans-G?nter Theisgen # Date 1585066906 -3600 # Node ID eeb3f2dda9dff135078bc92e0c2c6f8f7b5443ae # Parent 4e6875d4e5822471bf3826dbbcb5ede21bbc0693 updated nettle and nettle-dev (3.4.1 -> 3.5.1) diff -r 4e6875d4e582 -r eeb3f2dda9df nettle-dev/receipt --- a/nettle-dev/receipt Tue Mar 24 17:10:02 2020 +0100 +++ b/nettle-dev/receipt Tue Mar 24 17:21:46 2020 +0100 @@ -1,15 +1,15 @@ # SliTaz package receipt. PACKAGE="nettle-dev" -VERSION="3.4.1" +VERSION="3.5.1" CATEGORY="development" SHORT_DESC="Development files for nettle." MAINTAINER="devl547@gmail.com" LICENSE="LGPL2.1" WEB_SITE="https://www.lysator.liu.se/~nisse/nettle/" +DEPENDS="nettle pkg-config" WANTED="nettle" -DEPENDS="nettle pkg-config" HOST_ARCH="i486 arm" diff -r 4e6875d4e582 -r eeb3f2dda9df nettle/receipt --- a/nettle/receipt Tue Mar 24 17:10:02 2020 +0100 +++ b/nettle/receipt Tue Mar 24 17:21:46 2020 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="nettle" -VERSION="3.4.1" +VERSION="3.5.1" CATEGORY="security" SHORT_DESC="A cryptographic library that is designed to fit easily in more or less any context." MAINTAINER="devl547@gmail.com" @@ -9,9 +9,9 @@ WEB_SITE="https://www.lysator.liu.se/~nisse/nettle/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="https://www.lysator.liu.se/~nisse/archive/$TARBALL" +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" -DEPENDS="gmp" +DEPENDS="gcc83-lib-base gmp" BUILD_DEPENDS="gcc83 gmp-dev" HOST_ARCH="i486 arm" @@ -25,13 +25,13 @@ # Rules to configure and make the package. compile_rules() { - export CC=gcc-83 - export CXX=g++-83 - ./configure \ + CC=gcc-83 \ + CXX=g++-83 \ --libdir=/usr/lib \ --enable-shared \ - $CONFIGURE_ARGS ${ARCH_ARGS} && + $CONFIGURE_ARGS \ + ${ARCH_ARGS} && make && make install }