wok rev 24233

updated perl-list-moreutils (0.428 -> 0.430)
author Hans-G?nter Theisgen
date Sun Jan 02 06:57:36 2022 +0100 (2022-01-02)
parents d7b3e84eb70e
children 5c3f57bc9b11
files perl-list-moreutils/description.txt perl-list-moreutils/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-list-moreutils/description.txt	Sun Jan 02 06:57:36 2022 +0100
     1.3 @@ -0,0 +1,9 @@
     1.4 +List::MoreUtils provides some trivial but commonly needed functionality
     1.5 +on lists which is not going to go into List::Util.
     1.6 +
     1.7 +All of the functions are implementable in only a couple of lines
     1.8 +of Perl code.
     1.9 +Using the functions from this module however should give slightly better
    1.10 +performance as everything is implemented in C.
    1.11 +The pure-Perl implementation of these functions only serves as a fallback
    1.12 +in case the C portions of this module couldn't be compiled on this machine.
     2.1 --- a/perl-list-moreutils/receipt	Sun Jan 02 06:53:37 2022 +0100
     2.2 +++ b/perl-list-moreutils/receipt	Sun Jan 02 06:57:36 2022 +0100
     2.3 @@ -1,19 +1,20 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-list-moreutils"
     2.7 -VERSION="0.428"
     2.8 +VERSION="0.430"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Perl extension List::MoreUtils."
    2.11  MAINTAINER="nneul@neulinger.org"
    2.12  LICENSE="GPL"
    2.13 -WEB_SITE="https://metacpan.org/release/List-MoreUtils"
    2.14 +WEB_SITE="https://metacpan.org/pod/List::MoreUtils"
    2.15 +REPOLOGY="perl:list-moreutils"
    2.16  
    2.17  SOURCE="List-MoreUtils"
    2.18  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.19  WGET_URL="https://www.cpan.org/modules/by-module/List/$TARBALL"
    2.20  
    2.21  DEPENDS="perl"
    2.22 -BUILD_DEPENDS="$DEPENDS"
    2.23 +BUILD_DEPENDS="perl"
    2.24  
    2.25  current_version()
    2.26  {
    2.27 @@ -26,11 +27,11 @@
    2.28  {
    2.29  	perl Makefile.PL &&
    2.30  	make &&
    2.31 -	make DESTDIR=$DESTDIR install
    2.32 +	make install DESTDIR=$DESTDIR
    2.33  }
    2.34  
    2.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.36  genpkg_rules()
    2.37  {
    2.38 -	cp -a $install/usr	$fs
    2.39 +	cook_copy_folders	lib
    2.40  }