wok rev 24214

updated perl-getopt-long (2.51 -> 2.52)
author Hans-G?nter Theisgen
date Fri Dec 31 16:22:09 2021 +0100 (2021-12-31)
parents 3e3ada228d60
children 08f840a2b79b
files perl-getopt-long/description.txt perl-getopt-long/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-getopt-long/description.txt	Fri Dec 31 16:22:09 2021 +0100
     1.3 @@ -0,0 +1,12 @@
     1.4 +The Getopt::Long module implements an extended getopt function
     1.5 +called GetOptions().
     1.6 +It parses the command line from @ARGV, recognizing and removing
     1.7 +specified options and their possible values.
     1.8 +
     1.9 +This function adheres to the POSIX syntax for command line options,
    1.10 +with GNU extensions.
    1.11 +In general, this means that options have long names instead of
    1.12 +single letters, and are introduced with a double dash "--".
    1.13 +Support for bundling of command line options, as was the case
    1.14 +with the more traditional single-letter approach, is provided
    1.15 +but not enabled by default.
     2.1 --- a/perl-getopt-long/receipt	Fri Dec 31 16:19:09 2021 +0100
     2.2 +++ b/perl-getopt-long/receipt	Fri Dec 31 16:22:09 2021 +0100
     2.3 @@ -1,16 +1,17 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-getopt-long"
     2.7 -VERSION="2.51"
     2.8 +VERSION="2.52"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Perl extension Getopt::Long."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="GPL"
    2.13 -WEB_SITE="https://metacpan.org/release/Getopt-Long"
    2.14 +WEB_SITE="https://metacpan.org/pod/Getopt::Long"
    2.15 +REPOLOGY="perl:getopt-long"
    2.16  
    2.17  SOURCE="Getopt-Long"
    2.18  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.19 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JV/JV/$TARBALL"
    2.20 +WGET_URL="https://www.cpan.org/modules/by-module/Getopt/$TARBALL"
    2.21  
    2.22  DEPENDS="perl"
    2.23  BUILD_DEPENDS="perl"
    2.24 @@ -26,12 +27,11 @@
    2.25  {
    2.26  	perl Makefile.PL &&
    2.27  	make &&
    2.28 -	make DESTDIR=$DESTDIR install
    2.29 +	make install DESTDIR=$DESTDIR
    2.30  }
    2.31  
    2.32  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.33  genpkg_rules()
    2.34  {
    2.35 -	mkdir -p $fs/usr
    2.36 -	cp -a $install/usr/lib	$fs/usr
    2.37 +	cook_copy_folders	lib
    2.38  }