# HG changeset patch # User Hans-G?nter Theisgen # Date 1640964129 -3600 # Node ID 31ef0482f5f9145fab2d5cef7e30e1c207375aa9 # Parent 3e3ada228d6085b3e98701c3b16c077dee32316e updated perl-getopt-long (2.51 -> 2.52) diff -r 3e3ada228d60 -r 31ef0482f5f9 perl-getopt-long/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-getopt-long/description.txt Fri Dec 31 16:22:09 2021 +0100 @@ -0,0 +1,12 @@ +The Getopt::Long module implements an extended getopt function +called GetOptions(). +It parses the command line from @ARGV, recognizing and removing +specified options and their possible values. + +This function adheres to the POSIX syntax for command line options, +with GNU extensions. +In general, this means that options have long names instead of +single letters, and are introduced with a double dash "--". +Support for bundling of command line options, as was the case +with the more traditional single-letter approach, is provided +but not enabled by default. diff -r 3e3ada228d60 -r 31ef0482f5f9 perl-getopt-long/receipt --- a/perl-getopt-long/receipt Fri Dec 31 16:19:09 2021 +0100 +++ b/perl-getopt-long/receipt Fri Dec 31 16:22:09 2021 +0100 @@ -1,16 +1,17 @@ # SliTaz package receipt. PACKAGE="perl-getopt-long" -VERSION="2.51" +VERSION="2.52" CATEGORY="development" SHORT_DESC="Perl extension Getopt::Long." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/Getopt-Long" +WEB_SITE="https://metacpan.org/pod/Getopt::Long" +REPOLOGY="perl:getopt-long" SOURCE="Getopt-Long" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://cpan.metacpan.org/authors/id/J/JV/JV/$TARBALL" +WGET_URL="https://www.cpan.org/modules/by-module/Getopt/$TARBALL" DEPENDS="perl" BUILD_DEPENDS="perl" @@ -26,12 +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() { - mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cook_copy_folders lib }