wok-current rev 24196
updated perl-datetime-locale (0.45 -> 1.33)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 15:04:43 2021 +0100 (2021-12-31) |
parents | 11e6cb8f9c4f |
children | 9ba53fb1f89b |
files | perl-datetime-locale/description.txt perl-datetime-locale/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-datetime-locale/description.txt Fri Dec 31 15:04:43 2021 +0100 1.3 @@ -0,0 +1,6 @@ 1.4 +DateTime::Locale is primarily a factory for the various locale subclasses. 1.5 +It also provides some functions for getting information on all the available 1.6 +locales. 1.7 + 1.8 +If you want to know what methods are available for locale objects, then 1.9 +please read the DateTime::Locale::FromData documentation.
2.1 --- a/perl-datetime-locale/receipt Fri Dec 31 14:58:36 2021 +0100 2.2 +++ b/perl-datetime-locale/receipt Fri Dec 31 15:04:43 2021 +0100 2.3 @@ -1,17 +1,20 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-datetime-locale" 2.7 -VERSION="0.45" 2.8 +VERSION="1.33" 2.9 CATEGORY="development" 2.10 SHORT_DESC="DateTime::Locale module is a Perl extension." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL" 2.13 -DEPENDS="perl" 2.14 -BUILD_DEPENDS="perl" 2.15 +WEB_SITE="https://metacpan.org/pod/DateTime::Locale" 2.16 +REPOLOGY="perl:datetime-locale" 2.17 + 2.18 SOURCE="DateTime-Locale" 2.19 TARBALL="$SOURCE-$VERSION.tar.gz" 2.20 -WEB_SITE="https://metacpan.org/dist/DateTime-Locale" 2.21 -WGET_URL="https://metacpan.org/CPAN/authors/id/D/DR/DROLSKY/$TARBALL" 2.22 +WGET_URL="https://www.cpan.org/modules/by-module/DateTime/$TARBALL" 2.23 + 2.24 +DEPENDS="perl" 2.25 +BUILD_DEPENDS="perl perl-file-sharedir-install" 2.26 2.27 current_version() 2.28 { 2.29 @@ -22,16 +25,13 @@ 2.30 # Rules to configure and make the package. 2.31 compile_rules() 2.32 { 2.33 - cd $src 2.34 perl Makefile.PL && 2.35 make && 2.36 - make DESTDIR=$DESTDIR install 2.37 + make install DESTDIR=$DESTDIR 2.38 } 2.39 2.40 # Rules to gen a SliTaz package suitable for Tazpkg. 2.41 genpkg_rules() 2.42 { 2.43 - mkdir -p $fs/usr 2.44 - cp -a $install/usr/lib $fs/usr 2.45 + cook_copy_folders lib 2.46 } 2.47 -