wok rev 24203
updated perl-exporter-tiny (1.002001 -> 1.002002)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 15:25:57 2021 +0100 (2021-12-31) |
parents | 81bba537d500 |
children | 271979d0cb7c |
files | perl-exporter-tiny/description.txt perl-exporter-tiny/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-exporter-tiny/description.txt Fri Dec 31 15:25:57 2021 +0100 1.3 @@ -0,0 +1,10 @@ 1.4 +Exporter::Tiny supports many of Sub::Exporter's external-facing 1.5 +features including renaming imported functions with the -as, 1.6 +-prefix and -suffix options; explicit destinations with the into 1.7 +option; and alternative installers with the installer option. 1.8 +But it's written in only about 40% as many lines of code and with 1.9 +zero non-core dependencies. 1.10 + 1.11 +Its internal-facing interface is closer to Exporter.pm, with 1.12 +configuration done through the @EXPORT, @EXPORT_OK and 1.13 +%EXPORT_TAGS package variables.
2.1 --- a/perl-exporter-tiny/receipt Fri Dec 31 15:22:55 2021 +0100 2.2 +++ b/perl-exporter-tiny/receipt Fri Dec 31 15:25:57 2021 +0100 2.3 @@ -1,12 +1,13 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-exporter-tiny" 2.7 -VERSION="1.002001" 2.8 +VERSION="1.002002" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Perl extension Exporter::Tiny." 2.11 MAINTAINER="nneul@neulinger.org" 2.12 LICENSE="GPL" 2.13 -WEB_SITE="https://metacpan.org/release/Exporter-Tiny" 2.14 +WEB_SITE="https://metacpan.org/pod/Exporter::Tiny" 2.15 +REPOLOGY="perl:exporter-tiny" 2.16 2.17 SOURCE="Exporter-Tiny" 2.18 TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 @@ -26,11 +27,11 @@ 2.20 { 2.21 perl Makefile.PL && 2.22 make && 2.23 - make DESTDIR=$DESTDIR install 2.24 + make install DESTDIR=$DESTDIR 2.25 } 2.26 2.27 # Rules to gen a SliTaz package suitable for Tazpkg. 2.28 genpkg_rules() 2.29 { 2.30 - cp -a $install/usr $fs 2.31 + cook_copy_folders lib 2.32 }