From 64a2f0eea98d375d7b3dccf5a0c8a409aede2d7d Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Mon, 21 Oct 2019 11:13:09 +0200 Subject: [PATCH 1/2] system/perl: Update version from 5.28.1 to 5.30.0 Update to latest stable version. --- system/{perl-5.28.1-1.build.sh => perl-5.30.0-0.build.sh} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename system/{perl-5.28.1-1.build.sh => perl-5.30.0-0.build.sh} (99%) diff --git a/system/perl-5.28.1-1.build.sh b/system/perl-5.30.0-0.build.sh similarity index 99% rename from system/perl-5.28.1-1.build.sh rename to system/perl-5.30.0-0.build.sh index f816321..911ad03 100755 --- a/system/perl-5.28.1-1.build.sh +++ b/system/perl-5.30.0-0.build.sh @@ -9,8 +9,8 @@ set -xe # sudo chown -R bin:bin /usr/local/system/perl-VERSION-BUILD PKG=perl -VERSION=5.28.1 -BUILD=1 +VERSION=5.30.0 +BUILD=0 PREFIX=/usr/local/system/$PKG-$VERSION-$BUILD if [ -n "$TESTING" ]; then PREFIX=/dev/shm/$PKG-$VERSION-$BUILD ; fi From eec6f273b2ab46224030f6d81db30c74fc655cc4 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Mon, 21 Oct 2019 11:14:30 +0200 Subject: [PATCH 2/2] system/perl: Remove dependency to rpm Add --with-rpm=no to net-snmp configuration to remove dependency to librpm.so and librpmio.so --- system/perl-5.30.0-0.build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/perl-5.30.0-0.build.sh b/system/perl-5.30.0-0.build.sh index 911ad03..aee3674 100755 --- a/system/perl-5.30.0-0.build.sh +++ b/system/perl-5.30.0-0.build.sh @@ -145,7 +145,7 @@ cpan LWP::Protocol::https test -d net-snmp-5.8 || tar xvf net-snmp-5.8.tar.gz cd net-snmp-5.8 patch -N -p1 < /src/mariux/patches/net-snmp-0001-Fix-incompatible-definitions-of-U64-type.patch || true - ./configure --prefix $PREFIX + ./configure --prefix $PREFIX --with-rpm=no make -j 1 make install )