# HG changeset patch # User Hans-G?nter Theisgen # Date 1641103056 -3600 # Node ID 2ebf9ccf843927f5b53d08ba09ff7f5107af9a3e # Parent d7b3e84eb70e9d00b337555c241683fac89678c3 updated perl-list-moreutils (0.428 -> 0.430) diff -r d7b3e84eb70e -r 2ebf9ccf8439 perl-list-moreutils/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-list-moreutils/description.txt Sun Jan 02 06:57:36 2022 +0100 @@ -0,0 +1,9 @@ +List::MoreUtils provides some trivial but commonly needed functionality +on lists which is not going to go into List::Util. + +All of the functions are implementable in only a couple of lines +of Perl code. +Using the functions from this module however should give slightly better +performance as everything is implemented in C. +The pure-Perl implementation of these functions only serves as a fallback +in case the C portions of this module couldn't be compiled on this machine. diff -r d7b3e84eb70e -r 2ebf9ccf8439 perl-list-moreutils/receipt --- a/perl-list-moreutils/receipt Sun Jan 02 06:53:37 2022 +0100 +++ b/perl-list-moreutils/receipt Sun Jan 02 06:57:36 2022 +0100 @@ -1,19 +1,20 @@ # SliTaz package receipt. PACKAGE="perl-list-moreutils" -VERSION="0.428" +VERSION="0.430" CATEGORY="development" SHORT_DESC="Perl extension List::MoreUtils." MAINTAINER="nneul@neulinger.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/List-MoreUtils" +WEB_SITE="https://metacpan.org/pod/List::MoreUtils" +REPOLOGY="perl:list-moreutils" SOURCE="List-MoreUtils" TARBALL="$SOURCE-$VERSION.tar.gz" WGET_URL="https://www.cpan.org/modules/by-module/List/$TARBALL" DEPENDS="perl" -BUILD_DEPENDS="$DEPENDS" +BUILD_DEPENDS="perl" current_version() { @@ -26,11 +27,11 @@ { perl Makefile.PL && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/usr $fs + cook_copy_folders lib }