# HG changeset patch # User Hans-G?nter Theisgen # Date 1640955897 -3600 # Node ID e42f5ec384070c0afa934d8d9d62b30a8ba461b1 # Parent 68df3e2fffece4f16470cd9f363ea201a3f322a0 updated perl-common-sense (3.74 -> 3.75) diff -r 68df3e2fffec -r e42f5ec38407 perl-class-singleton/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-class-singleton/description.txt Fri Dec 31 14:04:57 2021 +0100 @@ -0,0 +1,11 @@ +This is the Class::Singleton module. +A Singleton describes an object class that can have only one +instance in any system. +An example of a Singleton might be a print spooler or system +registry. +This module implements a Singleton class from which other +classes can be derived. By itself, the Class::Singleton module +does very little other than manage the instantiation of a +single object. In deriving a class from Class::Singleton, +your module will inherit the Singleton instantiation method and +can implement whatever specific functionality is required. diff -r 68df3e2fffec -r e42f5ec38407 perl-common-sense/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-common-sense/description.txt Fri Dec 31 14:04:57 2021 +0100 @@ -0,0 +1,14 @@ +This module implements some sane defaults for Perl programs, +as defined by two typical (or not so typical - use your +common sense) specimens of Perl coders. +In fact, after working out details on which warnings and +strict modes to enable and make fatal, we found that we +(and our code written so far, and others) fully agree on +every option, even though we never used warnings before, +so it seems this module indeed reflects a "common" sense +among some long-time Perl coders. + +The basic philosophy behind the choices made in common::sense +can be summarised as: "enforcing strict policies to catch as +many bugs as possible, while at the same time, not limiting +the expressive power available to the programmer". diff -r 68df3e2fffec -r e42f5ec38407 perl-common-sense/receipt --- a/perl-common-sense/receipt Fri Dec 31 14:00:12 2021 +0100 +++ b/perl-common-sense/receipt Fri Dec 31 14:04:57 2021 +0100 @@ -1,16 +1,17 @@ # SliTaz package receipt. PACKAGE="perl-common-sense" -VERSION="3.74" +VERSION="3.75" CATEGORY="development" SHORT_DESC="Perl extension common::sense." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/common-sense" +WEB_SITE="https://metacpan.org/pod/common::sense" +REPOLOGY="perl:common-sense" SOURCE="common-sense" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://cpan.org/authors/id/M/ML/MLEHMANN/$TARBALL" +WGET_URL="https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/$TARBALL" DEPENDS="perl" BUILD_DEPENDS="perl" @@ -24,14 +25,13 @@ # Rules to configure and make the package. compile_rules() { - perl Makefile.PL - make - make DESTDIR=$DESTDIR install + perl Makefile.PL && + make && + 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 }