wok-next rev 21068
Rebuild Perl modules
line diff
1.1 --- a/backup-manager/receipt Thu Dec 06 20:27:31 2018 +0200 1.2 +++ b/backup-manager/receipt Tue Dec 11 23:38:35 2018 +0200 1.3 @@ -1,12 +1,13 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="backup-manager" 1.7 -VERSION=0.7.13 1.8 +VERSION="0.7.13" 1.9 CATEGORY="network" 1.10 SHORT_DESC="A really simple to use backup tool" 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="GPL2" 1.13 WEB_SITE="https://github.com/sukria/Backup-Manager" 1.14 +HOST_ARCH="any" 1.15 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 WGET_URL="$WEB_SITE/archive/$GITHASH.tar.gz"
2.1 --- a/libpcap/receipt Thu Dec 06 20:27:31 2018 +0200 2.2 +++ b/libpcap/receipt Tue Dec 11 23:38:35 2018 +0200 2.3 @@ -13,28 +13,27 @@ 2.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.5 WGET_URL="http://www.tcpdump.org/release/$TARBALL" 2.6 2.7 -BUILD_DEPENDS="flex bison libnl-dev" 2.8 +BUILD_DEPENDS="flex bison libnl-dev bluez-dev" 2.9 SPLIT="$PACKAGE-dev" 2.10 2.11 +DEPENDS_std="libnl" 2.12 +DEPENDS_dev="libnl-dev" 2.13 + 2.14 compile_rules() { 2.15 - ./configure $CONFIGURE_ARGS && 2.16 + CFLAGS="$CFLAGS -I$src/include $(pkg-config libnl-genl-3.0 --cflags)" \ 2.17 + ./configure \ 2.18 + --enable-ipv6 \ 2.19 + --enable-bluetooth \ 2.20 + --with-libnl \ 2.21 + $CONFIGURE_ARGS && 2.22 make || return 1 2.23 2.24 # disable static 2.25 sed -i '/INSTALL_DATA.*libpcap.a\|RANLIB.*libpcap.a/ s/^/#/' Makefile 2.26 2.27 - make install 2.28 + make install || return 1 2.29 + 2.30 + # backwards compatibility, programs often look for net/bpf.h 2.31 + mkdir -p $install/usr/include/net 2.32 + ln -s ../pcap-bpf.h $install/usr/include/net/bpf.h 2.33 } 2.34 - 2.35 -genpkg_rules() { 2.36 - case $PACKAGE in 2.37 - libpcap) 2.38 - copy @std 2.39 - DEPENDS="libnl" 2.40 - ;; 2.41 - *-dev) 2.42 - copy @dev 2.43 - DEPENDS="libnl-dev" 2.44 - ;; 2.45 - esac 2.46 -}
3.1 --- a/ocsinventory/receipt Thu Dec 06 20:27:31 2018 +0200 3.2 +++ b/ocsinventory/receipt Tue Dec 11 23:38:35 2018 +0200 3.3 @@ -52,7 +52,7 @@ 3.4 mkdir -p $fs/etc/apache/conf.d 3.5 cp $src/etc/ocsinventory/ocsinventory-server.conf \ 3.6 $fs/etc/apache/conf.d/ocsinventory-server.conf 3.7 - sed 3.8 + sed \ 3.9 -e "s#DATABASE_SERVER#localhost#g" \ 3.10 -e "s#DATABASE_PORT#3306#g" \ 3.11 -e "s#VERSION_MP#2#g" \
4.1 --- a/pcsc-tools/receipt Thu Dec 06 20:27:31 2018 +0200 4.2 +++ b/pcsc-tools/receipt Tue Dec 11 23:38:35 2018 +0200 4.3 @@ -24,5 +24,5 @@ 4.4 mkdir -p $fs/usr/share 4.5 cp -a $install/usr/bin $fs/usr 4.6 cp -a $install/usr/share/pcsc $fs/usr/share 4.7 - DEPENDS="pcsc-lite perl-glib perl-gtk2 perl-pcsc" 4.8 + DEPENDS="pcsc-lite perl-glib perl-gtk2 perl-pcsc-perl" 4.9 }
5.1 --- a/perl-algorithm-permute/receipt Thu Dec 06 20:27:31 2018 +0200 5.2 +++ b/perl-algorithm-permute/receipt Tue Dec 11 23:38:35 2018 +0200 5.3 @@ -1,29 +1,23 @@ 5.4 # SliTaz package receipt v2. 5.5 5.6 +ORIGIN="Algorithm-Permute" 5.7 PACKAGE="perl-algorithm-permute" 5.8 VERSION="0.16" 5.9 +AUTHOR="SLOYD" 5.10 CATEGORY="perl" 5.11 SHORT_DESC="Algorithm::Permute - Handy and fast permutation with object \ 5.12 oriented interface" 5.13 MAINTAINER="pascal.bellard@slitaz.org" 5.14 -LICENSE="GPL" 5.15 -WEB_SITE="https://metacpan.org/release/Algorithm-Permute" 5.16 -REPOLOGY="perl:algorithm-permute" 5.17 +LICENSE="Perl" 5.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 5.19 +REPOLOGY="${PACKAGE/-/:}" 5.20 5.21 -TARBALL="Algorithm-Permute-$VERSION.tar.gz" 5.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SL/SLOYD/$TARBALL" 5.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 5.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 5.25 5.26 -BUILD_DEPENDS="perl-dev" 5.27 +DEPENDS_std="perl" 5.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 5.29 5.30 compile_rules() { 5.31 - perl Makefile.PL && 5.32 - make && 5.33 - make DESTDIR=$install install && 5.34 - 5.35 - chmod -R u+w $install 5.36 + cook_perl 5.37 } 5.38 - 5.39 -genpkg_rules() { 5.40 - copy @std 5.41 - DEPENDS="perl" 5.42 -}
6.1 --- a/perl-alien-sdl/receipt Thu Dec 06 20:27:31 2018 +0200 6.2 +++ b/perl-alien-sdl/receipt Tue Dec 11 23:38:35 2018 +0200 6.3 @@ -1,20 +1,23 @@ 6.4 # SliTaz package receipt v2. 6.5 6.6 +ORIGIN="Alien-SDL" 6.7 PACKAGE="perl-alien-sdl" 6.8 VERSION="1.446" 6.9 +AUTHOR="FROGGS" 6.10 CATEGORY="perl" 6.11 SHORT_DESC="Alien::SDL - building, finding and using SDL binaries" 6.12 MAINTAINER="al.bobylev@gmail.com" 6.13 -LICENSE="GPL" 6.14 -WEB_SITE="https://metacpan.org/release/Alien-SDL" 6.15 -REPOLOGY="perl:alien-sdl" 6.16 +LICENSE="Perl" 6.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 6.18 +HOST_ARCH="any" 6.19 +REPOLOGY="${PACKAGE/-/:}" 6.20 6.21 -TARBALL="Alien-SDL-$VERSION.tar.gz" 6.22 -WGET_URL="https://cpan.metacpan.org/authors/id/F/FR/FROGGS/$TARBALL" 6.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 6.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 6.25 6.26 -BUILD_DEPENDS="perl-file-which perl-module-build perl-file-sharedir \ 6.27 -perl-archive-extract perl-text-patch perl-capture-tiny perl-archive-zip \ 6.28 -libsdl-dev" 6.29 +DEPENDS_std="perl perl-capture-tiny perl-file-sharedir perl-file-which libsdl" 6.30 +BUILD_DEPENDS="$DEPENDS_std perl-module-build perl-archive-extract \ 6.31 +perl-text-patch perl-archive-zip libsdl-dev" 6.32 6.33 # TODO: rebuild if sdl-config in libsdl-dev changed 6.34 6.35 @@ -28,8 +31,3 @@ 6.36 6.37 chmod -R u+w $install 6.38 } 6.39 - 6.40 -genpkg_rules() { 6.41 - copy @std 6.42 - DEPENDS="perl perl-capture-tiny perl-file-sharedir perl-file-which libsdl" 6.43 -}
7.1 --- a/perl-apache-dbi/receipt Thu Dec 06 20:27:31 2018 +0200 7.2 +++ b/perl-apache-dbi/receipt Tue Dec 11 23:38:35 2018 +0200 7.3 @@ -1,28 +1,23 @@ 7.4 # SliTaz package receipt v2. 7.5 7.6 +ORIGIN="Apache-DBI" 7.7 PACKAGE="perl-apache-dbi" 7.8 VERSION="1.12" 7.9 +AUTHOR="PHRED" 7.10 CATEGORY="perl" 7.11 SHORT_DESC="Apache::DBI - Initiate a persistent database connection" 7.12 MAINTAINER="pascal.bellard@slitaz.org" 7.13 -LICENSE="GPL" 7.14 -WEB_SITE="https://metacpan.org/release/Apache-DBI" 7.15 -REPOLOGY="perl:apache-dbi" 7.16 +LICENSE="GPL" # metacpan: unknown 7.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 7.18 +HOST_ARCH="any" 7.19 +REPOLOGY="${PACKAGE/-/:}" 7.20 7.21 -TARBALL="Apache-DBI-$VERSION.tar.gz" 7.22 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PH/PHRED/$TARBALL" 7.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 7.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 7.25 7.26 -BUILD_DEPENDS="perl-dbi perl-digest-sha1" 7.27 +DEPENDS_std="perl-dbi perl-digest-sha1" 7.28 +BUILD_DEPENDS="$DEPENDS_std" 7.29 7.30 compile_rules() { 7.31 - perl Makefile.PL && 7.32 - make && 7.33 - make DESTDIR=$install install && 7.34 - 7.35 - chmod -R u+w $install 7.36 + cook_perl 7.37 } 7.38 - 7.39 -genpkg_rules() { 7.40 - copy @std 7.41 - DEPENDS="$BUILD_DEPENDS" 7.42 -}
8.1 --- a/perl-appconfig/receipt Thu Dec 06 20:27:31 2018 +0200 8.2 +++ b/perl-appconfig/receipt Tue Dec 11 23:38:35 2018 +0200 8.3 @@ -1,29 +1,24 @@ 8.4 # SliTaz package receipt v2. 8.5 8.6 +ORIGIN="AppConfig" 8.7 PACKAGE="perl-appconfig" 8.8 VERSION="1.71" 8.9 +AUTHOR="NEILB" 8.10 CATEGORY="perl" 8.11 SHORT_DESC="AppConfig - Perl5 module for reading configuration files and \ 8.12 parsing command line arguments" 8.13 MAINTAINER="devel@slitaz.org" 8.14 -LICENSE="Artistic" 8.15 -WEB_SITE="https://metacpan.org/release/AppConfig" 8.16 -REPOLOGY="perl:appconfig" 8.17 +LICENSE="Perl" 8.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 8.19 +HOST_ARCH="any" 8.20 +REPOLOGY="${PACKAGE/-/:}" 8.21 8.22 -TARBALL="AppConfig-$VERSION.tar.gz" 8.23 -WGET_URL="https://cpan.metacpan.org/authors/id/N/NE/NEILB/$TARBALL" 8.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 8.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 8.26 8.27 -BUILD_DEPENDS="perl" 8.28 +DEPENDS_std="perl" 8.29 +BUILD_DEPENDS="$DEPENDS_std" 8.30 8.31 compile_rules() { 8.32 - perl Makefile.PL && 8.33 - make && 8.34 - make DESTDIR=$install install && 8.35 - 8.36 - chmod -R u+w $install 8.37 + cook_perl 8.38 } 8.39 - 8.40 -genpkg_rules() { 8.41 - copy @std 8.42 - DEPENDS="perl" 8.43 -}
9.1 --- a/perl-archive-extract/receipt Thu Dec 06 20:27:31 2018 +0200 9.2 +++ b/perl-archive-extract/receipt Tue Dec 11 23:38:35 2018 +0200 9.3 @@ -1,29 +1,23 @@ 9.4 # SliTaz package receipt v2. 9.5 9.6 +ORIGIN="Archive-Extract" 9.7 PACKAGE="perl-archive-extract" 9.8 VERSION="0.80" 9.9 +AUTHOR="BINGOS" 9.10 CATEGORY="perl" 9.11 SHORT_DESC="Archive::Extract - A generic archive extracting mechanism" 9.12 MAINTAINER="al.bobylev@gmail.com" 9.13 -LICENSE="GPL" 9.14 -WEB_SITE="https://metacpan.org/release/Archive-Extract" 9.15 +LICENSE="Perl" 9.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 9.17 HOST_ARCH="any" 9.18 -REPOLOGY="perl:archive-extract" 9.19 +REPOLOGY="${PACKAGE/-/:}" 9.20 9.21 -TARBALL="Archive-Extract-$VERSION.tar.gz" 9.22 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BI/BINGOS/$TARBALL" 9.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 9.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 9.25 9.26 -BUILD_DEPENDS="perl" 9.27 +DEPENDS_std="perl" 9.28 +BUILD_DEPENDS="$DEPENDS_std" 9.29 9.30 compile_rules() { 9.31 - perl Makefile.PL && 9.32 - make && 9.33 - make DESTDIR=$install install && 9.34 - 9.35 - chmod -R u+w $install 9.36 + cook_perl 9.37 } 9.38 - 9.39 -genpkg_rules() { 9.40 - copy @std 9.41 - DEPENDS="perl" 9.42 -}
10.1 --- a/perl-archive-zip/receipt Thu Dec 06 20:27:31 2018 +0200 10.2 +++ b/perl-archive-zip/receipt Tue Dec 11 23:38:35 2018 +0200 10.3 @@ -1,29 +1,23 @@ 10.4 # SliTaz package receipt v2. 10.5 10.6 +ORIGIN="Archive-Zip" 10.7 PACKAGE="perl-archive-zip" 10.8 VERSION="1.64" 10.9 +AUTHOR="PHRED" 10.10 CATEGORY="perl" 10.11 SHORT_DESC="Archive::Zip - Provide an interface to ZIP archive files" 10.12 MAINTAINER="devel@slitaz.org" 10.13 -LICENSE="GPL" 10.14 -WEB_SITE="https://metacpan.org/release/Archive-Zip" 10.15 +LICENSE="Perl" 10.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 10.17 HOST_ARCH="any" 10.18 -REPOLOGY="perl:archive-zip" 10.19 +REPOLOGY="${PACKAGE/-/:}" 10.20 10.21 -TARBALL="Archive-Zip-$VERSION.tar.gz" 10.22 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PH/PHRED/$TARBALL" 10.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 10.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 10.25 10.26 -BUILD_DEPENDS="perl" 10.27 +DEPENDS_std="perl" 10.28 +BUILD_DEPENDS="$DEPENDS_std" 10.29 10.30 compile_rules() { 10.31 - perl Makefile.PL && 10.32 - make && 10.33 - make DESTDIR=$install install && 10.34 - 10.35 - chmod -R u+w $install 10.36 + cook_perl 10.37 } 10.38 - 10.39 -genpkg_rules() { 10.40 - copy @std 10.41 - DEPENDS="perl" 10.42 -}
11.1 --- a/perl-authen-sasl/receipt Thu Dec 06 20:27:31 2018 +0200 11.2 +++ b/perl-authen-sasl/receipt Tue Dec 11 23:38:35 2018 +0200 11.3 @@ -1,28 +1,23 @@ 11.4 # SliTaz package receipt v2. 11.5 11.6 +ORIGIN="Authen-SASL" 11.7 PACKAGE="perl-authen-sasl" 11.8 VERSION="2.16" 11.9 +AUTHOR="GBARR" 11.10 CATEGORY="perl" 11.11 SHORT_DESC="Authen::SASL - SASL Authentication framework" 11.12 MAINTAINER="pascal.bellard@slitaz.org" 11.13 -LICENSE="GPL" 11.14 -WEB_SITE="https://metacpan.org/release/Authen-SASL" 11.15 -REPOLOGY="perl:authen-sasl" 11.16 +LICENSE="Perl" 11.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 11.18 +HOST_ARCH="any" 11.19 +REPOLOGY="${PACKAGE/-/:}" 11.20 11.21 -TARBALL="Authen-SASL-$VERSION.tar.gz" 11.22 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GB/GBARR/$TARBALL" 11.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 11.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 11.25 11.26 -BUILD_DEPENDS="perl-digest-hmac perl-gssapi perl-module-install" 11.27 +DEPENDS_std="perl-digest-hmac" 11.28 +BUILD_DEPENDS="$DEPENDS_std perl-gssapi perl-module-install" 11.29 11.30 compile_rules() { 11.31 - perl Makefile.PL && 11.32 - make && 11.33 - make DESTDIR=$install install && 11.34 - 11.35 - chmod -R u+w $install 11.36 + cook_perl 11.37 } 11.38 - 11.39 -genpkg_rules() { 11.40 - copy @std 11.41 - DEPENDS="perl-digest-hmac" 11.42 -}
12.1 --- a/perl-b-hooks-endofscope/receipt Thu Dec 06 20:27:31 2018 +0200 12.2 +++ b/perl-b-hooks-endofscope/receipt Tue Dec 11 23:38:35 2018 +0200 12.3 @@ -1,30 +1,24 @@ 12.4 # SliTaz package receipt v2. 12.5 12.6 +ORIGIN="B-Hooks-EndOfScope" 12.7 PACKAGE="perl-b-hooks-endofscope" 12.8 VERSION="0.24" 12.9 +AUTHOR="ETHER" 12.10 CATEGORY="perl" 12.11 SHORT_DESC="B::Hooks::EndOfScope - Execute code after a scope finished \ 12.12 compilation" 12.13 MAINTAINER="al.bobylev@gmail.com" 12.14 -LICENSE="GPL" 12.15 -WEB_SITE="https://metacpan.org/release/B-Hooks-EndOfScope" 12.16 -REPOLOGY="perl:b-hooks-endofscope" 12.17 +LICENSE="Perl" 12.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 12.19 +HOST_ARCH="any" 12.20 +REPOLOGY="${PACKAGE/-/:}" 12.21 12.22 -TARBALL="B-Hooks-EndOfScope-$VERSION.tar.gz" 12.23 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 12.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 12.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 12.26 12.27 -BUILD_DEPENDS="perl-module-implementation perl-sub-exporter-progressive \ 12.28 -perl-dev perl-variable-magic" 12.29 +DEPENDS_std="perl-module-implementation perl-sub-exporter-progressive" 12.30 +BUILD_DEPENDS="$DEPENDS_std perl-dev perl-variable-magic" 12.31 12.32 compile_rules() { 12.33 - perl Makefile.PL && 12.34 - make && 12.35 - make DESTDIR=$install install && 12.36 - 12.37 - chmod -R u+w $install 12.38 + cook_perl 12.39 } 12.40 - 12.41 -genpkg_rules() { 12.42 - copy @std 12.43 - DEPENDS="perl-module-implementation perl-sub-exporter-progressive" 12.44 -}
13.1 --- a/perl-berkeleydb/receipt Thu Dec 06 20:27:31 2018 +0200 13.2 +++ b/perl-berkeleydb/receipt Tue Dec 11 23:38:35 2018 +0200 13.3 @@ -1,28 +1,22 @@ 13.4 # SliTaz package receipt v2. 13.5 13.6 +ORIGIN="BerkeleyDB" 13.7 PACKAGE="perl-berkeleydb" 13.8 VERSION="0.55" 13.9 +AUTHOR="PMQS" 13.10 CATEGORY="perl" 13.11 SHORT_DESC="BerkeleyDB - Perl extension for Berkeley DB version 2, 3, 4 or 5" 13.12 MAINTAINER="pascal.bellard@slitaz.org" 13.13 -LICENSE="GPL" 13.14 -WEB_SITE="https://metacpan.org/release/BerkeleyDB" 13.15 -REPOLOGY="perl:berkeleydb" 13.16 +LICENSE="Perl" 13.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 13.18 +REPOLOGY="${PACKAGE/-/:}" 13.19 13.20 -TARBALL="BerkeleyDB-$VERSION.tar.gz" 13.21 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PM/PMQS/$TARBALL" 13.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 13.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 13.24 13.25 -BUILD_DEPENDS="perl-dev db-dev" 13.26 +DEPENDS_std="perl db" 13.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev db-dev" 13.28 13.29 compile_rules() { 13.30 - perl Makefile.PL && 13.31 - make && 13.32 - make DESTDIR=$install install && 13.33 - 13.34 - chmod -R u+w $install 13.35 + cook_perl 13.36 } 13.37 - 13.38 -genpkg_rules() { 13.39 - copy @std 13.40 - DEPENDS="perl db" 13.41 -}
14.1 --- a/perl-bit-vector/receipt Thu Dec 06 20:27:31 2018 +0200 14.2 +++ b/perl-bit-vector/receipt Tue Dec 11 23:38:35 2018 +0200 14.3 @@ -1,29 +1,23 @@ 14.4 # SliTaz package receipt v2. 14.5 14.6 +ORIGIN="Bit-Vector" 14.7 PACKAGE="perl-bit-vector" 14.8 VERSION="7.4" 14.9 +AUTHOR="STBEY" 14.10 CATEGORY="perl" 14.11 -SHORT_DESC="Bit::Vector - Efficient bit vector, set of integers and \"big \ 14.12 -int\" math library" 14.13 +SHORT_DESC="Bit::Vector - Efficient bit vector, set of integers and 'big \ 14.14 +int' math library" 14.15 MAINTAINER="devel@slitaz.org" 14.16 -LICENSE="GPL" 14.17 -WEB_SITE="https://metacpan.org/release/Bit-Vector" 14.18 -REPOLOGY="perl:bit-vector" 14.19 +LICENSE="GPL" # metacpan: unknown 14.20 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 14.21 +REPOLOGY="${PACKAGE/-/:}" 14.22 14.23 -TARBALL="Bit-Vector-$VERSION.tar.gz" 14.24 -WGET_URL="https://cpan.metacpan.org/authors/id/S/ST/STBEY/$TARBALL" 14.25 +TARBALL="$ORIGIN-$VERSION.tar.gz" 14.26 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 14.27 14.28 -BUILD_DEPENDS="perl-carp-clan perl-dev" 14.29 +DEPENDS_std="perl-carp-clan" 14.30 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 14.31 14.32 compile_rules() { 14.33 - perl Makefile.PL && 14.34 - make && 14.35 - make DESTDIR=$install install && 14.36 - 14.37 - chmod -R u+w $install 14.38 + cook_perl 14.39 } 14.40 - 14.41 -genpkg_rules() { 14.42 - copy @std 14.43 - DEPENDS="perl-carp-clan" 14.44 -}
15.1 --- a/perl-cairo/receipt Thu Dec 06 20:27:31 2018 +0200 15.2 +++ b/perl-cairo/receipt Tue Dec 11 23:38:35 2018 +0200 15.3 @@ -1,29 +1,24 @@ 15.4 # SliTaz package receipt v2. 15.5 15.6 +ORIGIN="Cairo" 15.7 PACKAGE="perl-cairo" 15.8 VERSION="1.106" 15.9 +AUTHOR="XAOC" 15.10 CATEGORY="perl" 15.11 SHORT_DESC="Cairo - Perl interface to the cairo 2d vector graphics library" 15.12 -MAINTAINER="claudinei@slitaz.org" 15.13 +MAINTAINER="devel@slitaz.org" 15.14 LICENSE="LGPL2.1" 15.15 -WEB_SITE="https://metacpan.org/release/Cairo" 15.16 -REPOLOGY="perl:cairo" 15.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 15.18 +REPOLOGY="${PACKAGE/-/:}" 15.19 15.20 -TARBALL="Cairo-$VERSION.tar.gz" 15.21 -WGET_URL="https://cpan.metacpan.org/authors/id/X/XA/XAOC/$TARBALL" 15.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 15.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 15.24 15.25 -BUILD_DEPENDS="cairo freetype perl-extutils-depends perl-extutils-pkgconfig \ 15.26 -perl-dev cairo-dev" 15.27 +DEPENDS_std="cairo freetype perl-extutils-depends perl-extutils-pkgconfig" 15.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev cairo-dev" 15.29 + 15.30 +COPY_std="@std *.h" 15.31 15.32 compile_rules() { 15.33 - perl Makefile.PL && 15.34 - make && 15.35 - make DESTDIR=$install install && 15.36 - 15.37 - chmod -R u+w $install 15.38 + cook_perl 15.39 } 15.40 - 15.41 -genpkg_rules() { 15.42 - copy @std *.h 15.43 - DEPENDS="cairo freetype perl-extutils-depends perl-extutils-pkgconfig" 15.44 -}
16.1 --- a/perl-capture-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 16.2 +++ b/perl-capture-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 16.3 @@ -1,29 +1,23 @@ 16.4 # SliTaz package receipt v2. 16.5 16.6 +ORIGIN="Capture-Tiny" 16.7 PACKAGE="perl-capture-tiny" 16.8 VERSION="0.48" 16.9 +AUTHOR="DAGOLDEN" 16.10 CATEGORY="perl" 16.11 SHORT_DESC="Capture::Tiny - Capture STDOUT and STDERR from Perl, XS or external programs" 16.12 MAINTAINER="al.bobylev@gmail.com" 16.13 LICENSE="Apache2" 16.14 -WEB_SITE="https://metacpan.org/release/Capture-Tiny" 16.15 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 16.16 HOST_ARCH="any" 16.17 -REPOLOGY="perl:capture-tiny" 16.18 +REPOLOGY="${PACKAGE/-/:}" 16.19 16.20 -TARBALL="Capture-Tiny-$VERSION.tar.gz" 16.21 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/$TARBALL" 16.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 16.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 16.24 16.25 -BUILD_DEPENDS="perl" 16.26 +DEPENDS_std="perl" 16.27 +BUILD_DEPENDS="$DEPENDS_std" 16.28 16.29 compile_rules() { 16.30 - perl Makefile.PL && 16.31 - make && 16.32 - make DESTDIR=$install install && 16.33 - 16.34 - chmod -R u+w $install 16.35 + cook_perl 16.36 } 16.37 - 16.38 -genpkg_rules() { 16.39 - copy @std 16.40 - DEPENDS="perl" 16.41 -}
17.1 --- a/perl-carp-clan/receipt Thu Dec 06 20:27:31 2018 +0200 17.2 +++ b/perl-carp-clan/receipt Tue Dec 11 23:38:35 2018 +0200 17.3 @@ -1,29 +1,24 @@ 17.4 # SliTaz package receipt v2. 17.5 17.6 +ORIGIN="Carp-Clan" 17.7 PACKAGE="perl-carp-clan" 17.8 -VERSION="6.06" 17.9 +VERSION="6.07" 17.10 +AUTHOR="ETHER" 17.11 CATEGORY="perl" 17.12 SHORT_DESC="Carp::Clan - Report errors from perspective of caller of a \ 17.13 -\"clan\" of modules" 17.14 +'clan' of modules" 17.15 MAINTAINER="devel@slitaz.org" 17.16 -LICENSE="GPL" 17.17 -WEB_SITE="https://metacpan.org/release/Carp-Clan" 17.18 -REPOLOGY="perl:carp-clan" 17.19 +LICENSE="Perl" 17.20 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 17.21 +HOST_ARCH="any" 17.22 +REPOLOGY="${PACKAGE/-/:}" 17.23 17.24 -TARBALL="Carp-Clan-$VERSION.tar.gz" 17.25 -WGET_URL="https://cpan.metacpan.org/authors/id/K/KE/KENTNL/$TARBALL" 17.26 +TARBALL="$ORIGIN-$VERSION.tar.gz" 17.27 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 17.28 17.29 -BUILD_DEPENDS="perl-test-exception" 17.30 +DEPENDS_std="perl-test-exception" 17.31 +BUILD_DEPENDS="$DEPENDS_std" 17.32 17.33 compile_rules() { 17.34 - perl Makefile.PL && 17.35 - make && 17.36 - make DESTDIR=$install install && 17.37 - 17.38 - chmod -R u+w $install 17.39 + cook_perl 17.40 } 17.41 - 17.42 -genpkg_rules() { 17.43 - copy @std 17.44 - DEPENDS="perl-test-exception" 17.45 -}
18.1 --- a/perl-cgi-session/receipt Thu Dec 06 20:27:31 2018 +0200 18.2 +++ b/perl-cgi-session/receipt Tue Dec 11 23:38:35 2018 +0200 18.3 @@ -1,28 +1,23 @@ 18.4 # SliTaz package receipt v2. 18.5 18.6 +ORIGIN="CGI-Session" 18.7 PACKAGE="perl-cgi-session" 18.8 VERSION="4.48" 18.9 +AUTHOR="MARKSTOS" 18.10 CATEGORY="perl" 18.11 SHORT_DESC="CGI::Session - persistent session data in CGI applications" 18.12 MAINTAINER="pascal.bellard@slitaz.org" 18.13 -LICENSE="GPL" 18.14 -WEB_SITE="https://metacpan.org/release/CGI-Session" 18.15 -REPOLOGY="perl:cgi-session" 18.16 +LICENSE="Artistic1" 18.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 18.18 +HOST_ARCH="any" 18.19 +REPOLOGY="${PACKAGE/-/:}" 18.20 18.21 -TARBALL="CGI-Session-$VERSION.tar.gz" 18.22 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MA/MARKSTOS/$TARBALL" 18.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 18.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 18.25 18.26 -BUILD_DEPENDS="perl-cgi" 18.27 +DEPENDS_std="perl-cgi" 18.28 +BUILD_DEPENDS="$DEPENDS_std" 18.29 18.30 compile_rules() { 18.31 - perl Makefile.PL && 18.32 - make && 18.33 - make DESTDIR=$install install && 18.34 - 18.35 - chmod -R u+w $install 18.36 + cook_perl 18.37 } 18.38 - 18.39 -genpkg_rules() { 18.40 - copy @std 18.41 - DEPENDS="perl-cgi" 18.42 -}
19.1 --- a/perl-cgi/receipt Thu Dec 06 20:27:31 2018 +0200 19.2 +++ b/perl-cgi/receipt Tue Dec 11 23:38:35 2018 +0200 19.3 @@ -1,29 +1,23 @@ 19.4 # SliTaz package receipt v2. 19.5 19.6 +ORIGIN="CGI" 19.7 PACKAGE="perl-cgi" 19.8 VERSION="4.40" 19.9 +AUTHOR="LEEJO" 19.10 CATEGORY="perl" 19.11 SHORT_DESC="CGI - Handle Common Gateway Interface requests and responses" 19.12 MAINTAINER="pascal.bellard@slitaz.org" 19.13 -LICENSE="GPL" 19.14 -WEB_SITE="https://metacpan.org/release/CGI" 19.15 -REPOLOGY="perl:cgi" 19.16 +LICENSE="Perl" 19.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 19.18 +HOST_ARCH="any" 19.19 +REPOLOGY="${PACKAGE/-/:}" 19.20 19.21 -TARBALL="CGI-$VERSION.tar.gz" 19.22 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LE/LEEJO/$TARBALL" 19.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 19.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 19.25 19.26 -BUILD_DEPENDS="perl-html-parser perl-test-deep perl-test-nowarnings \ 19.27 -perl-test-warn" 19.28 +DEPENDS_std="perl-html-parser" 19.29 +BUILD_DEPENDS="$DEPENDS_std perl-test-deep perl-test-nowarnings perl-test-warn" 19.30 19.31 compile_rules() { 19.32 - perl Makefile.PL && 19.33 - make && 19.34 - make DESTDIR=$install install && 19.35 - 19.36 - chmod -R u+w $install 19.37 + cook_perl 19.38 } 19.39 - 19.40 -genpkg_rules() { 19.41 - copy @std 19.42 - DEPENDS="perl-html-parser" 19.43 -}
20.1 --- a/perl-class-accessor/receipt Thu Dec 06 20:27:31 2018 +0200 20.2 +++ b/perl-class-accessor/receipt Tue Dec 11 23:38:35 2018 +0200 20.3 @@ -1,28 +1,23 @@ 20.4 # SliTaz package receipt v2. 20.5 20.6 +ORIGIN="Class-Accessor" 20.7 PACKAGE="perl-class-accessor" 20.8 VERSION="0.51" 20.9 +AUTHOR="KASEI" 20.10 CATEGORY="perl" 20.11 SHORT_DESC="Class::Accessor - Automated accessor generation" 20.12 MAINTAINER="devel@slitaz.org" 20.13 -LICENSE="GPL" 20.14 -WEB_SITE="https://metacpan.org/release/Class-Accessor" 20.15 -REPOLOGY="perl:class-accessor" 20.16 +LICENSE="Perl" 20.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 20.18 +HOST_ARCH="any" 20.19 +REPOLOGY="${PACKAGE/-/:}" 20.20 20.21 -TARBALL="Class-Accessor-$VERSION.tar.gz" 20.22 -WGET_URL="https://cpan.metacpan.org/authors/id/K/KA/KASEI/$TARBALL" 20.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 20.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 20.25 20.26 -BUILD_DEPENDS="perl" 20.27 +DEPENDS_std="perl" 20.28 +BUILD_DEPENDS="$DEPENDS_std" 20.29 20.30 compile_rules() { 20.31 - perl Makefile.PL && 20.32 - make && 20.33 - make DESTDIR=$install install && 20.34 - 20.35 - chmod -R u+w $install 20.36 + cook_perl 20.37 } 20.38 - 20.39 -genpkg_rules() { 20.40 - copy @std 20.41 - DEPENDS="perl" 20.42 -}
21.1 --- a/perl-class-data-inheritable/receipt Thu Dec 06 20:27:31 2018 +0200 21.2 +++ b/perl-class-data-inheritable/receipt Tue Dec 11 23:38:35 2018 +0200 21.3 @@ -1,28 +1,23 @@ 21.4 # SliTaz package receipt v2. 21.5 21.6 +ORIGIN="Class-Data-Inheritable" 21.7 PACKAGE="perl-class-data-inheritable" 21.8 VERSION="0.08" 21.9 +AUTHOR="TMTM" 21.10 CATEGORY="perl" 21.11 SHORT_DESC="Class::Data::Inheritable - Inheritable, overridable class data" 21.12 MAINTAINER="al.bobylev@gmail.com" 21.13 -LICENSE="GPL" 21.14 -WEB_SITE="https://metacpan.org/release/Class-Data-Inheritable" 21.15 -REPOLOGY="perl:class-data-inheritable" 21.16 +LICENSE="Perl" 21.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 21.18 +HOST_ARCH="any" 21.19 +REPOLOGY="${PACKAGE/-/:}" 21.20 21.21 -TARBALL="Class-Data-Inheritable-$VERSION.tar.gz" 21.22 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TM/TMTM/$TARBALL" 21.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 21.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 21.25 21.26 -BUILD_DEPENDS="perl" 21.27 +DEPENDS_std="perl" 21.28 +BUILD_DEPENDS="$DEPENDS_std" 21.29 21.30 compile_rules() { 21.31 - perl Makefile.PL && 21.32 - make && 21.33 - make DESTDIR=$install install && 21.34 - 21.35 - chmod -R u+w $install 21.36 + cook_perl 21.37 } 21.38 - 21.39 -genpkg_rules() { 21.40 - copy @std 21.41 - DEPENDS="perl" 21.42 -}
22.1 --- a/perl-class-inspector/receipt Thu Dec 06 20:27:31 2018 +0200 22.2 +++ b/perl-class-inspector/receipt Tue Dec 11 23:38:35 2018 +0200 22.3 @@ -1,28 +1,23 @@ 22.4 -# SliTaz package receipt. 22.5 +# SliTaz package receipt v2. 22.6 22.7 +ORIGIN="Class-Inspector" 22.8 PACKAGE="perl-class-inspector" 22.9 VERSION="1.32" 22.10 +AUTHOR="PLICEASE" 22.11 CATEGORY="perl" 22.12 SHORT_DESC="Class::Inspector - Get information about a class and its structure" 22.13 MAINTAINER="al.bobylev@gmail.com" 22.14 -LICENSE="GPL" 22.15 -WEB_SITE="https://metacpan.org/release/Class-Inspector" 22.16 -REPOLOGY="perl:class-inspector" 22.17 +LICENSE="Perl" 22.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 22.19 +HOST_ARCH="any" 22.20 +REPOLOGY="${PACKAGE/-/:}" 22.21 22.22 -TARBALL="Class-Inspector-$VERSION.tar.gz" 22.23 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/$TARBALL" 22.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 22.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 22.26 22.27 -BUILD_DEPENDS="perl" 22.28 +DEPENDS_std="perl" 22.29 +BUILD_DEPENDS="$DEPENDS_std" 22.30 22.31 compile_rules() { 22.32 - perl Makefile.PL && 22.33 - make && 22.34 - make DESTDIR=$install install && 22.35 - 22.36 - chmod -R u+w $install 22.37 + cook_perl 22.38 } 22.39 - 22.40 -genpkg_rules() { 22.41 - copy @std 22.42 - DEPENDS="perl" 22.43 -}
23.1 --- a/perl-class-singleton/receipt Thu Dec 06 20:27:31 2018 +0200 23.2 +++ b/perl-class-singleton/receipt Tue Dec 11 23:38:35 2018 +0200 23.3 @@ -1,28 +1,23 @@ 23.4 -# SliTaz package receipt. 23.5 +# SliTaz package receipt v2. 23.6 23.7 +ORIGIN="Class-Singleton" 23.8 PACKAGE="perl-class-singleton" 23.9 VERSION="1.5" 23.10 +AUTHOR="SHAY" 23.11 CATEGORY="perl" 23.12 -SHORT_DESC="Class::Singleton - Implementation of a \"Singleton\" class" 23.13 +SHORT_DESC="Class::Singleton - Implementation of a 'Singleton' class" 23.14 MAINTAINER="devel@slitaz.org" 23.15 -LICENSE="GPL" 23.16 -WEB_SITE="https://metacpan.org/release/Class-Singleton" 23.17 -REPOLOGY="perl:class-singleton" 23.18 +LICENSE="GPL" # metacpan: unknown 23.19 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 23.20 +HOST_ARCH="any" 23.21 +REPOLOGY="${PACKAGE/-/:}" 23.22 23.23 -TARBALL="Class-Singleton-$VERSION.tar.gz" 23.24 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SH/SHAY/$TARBALL" 23.25 +TARBALL="$ORIGIN-$VERSION.tar.gz" 23.26 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 23.27 23.28 -BUILD_DEPENDS="perl" 23.29 +DEPENDS_std="perl" 23.30 +BUILD_DEPENDS="$DEPENDS_std" 23.31 23.32 compile_rules() { 23.33 - perl Makefile.PL && 23.34 - make && 23.35 - make DESTDIR=$install install && 23.36 - 23.37 - chmod -R u+w $install 23.38 + cook_perl 23.39 } 23.40 - 23.41 -genpkg_rules() { 23.42 - copy @std 23.43 - DEPENDS="perl" 23.44 -}
24.1 --- a/perl-class-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 24.2 +++ b/perl-class-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 24.3 @@ -1,28 +1,23 @@ 24.4 -# SliTaz package receipt. 24.5 +# SliTaz package receipt v2. 24.6 24.7 +ORIGIN="Class-Tiny" 24.8 PACKAGE="perl-class-tiny" 24.9 VERSION="1.006" 24.10 +AUTHOR="DAGOLDEN" 24.11 CATEGORY="perl" 24.12 SHORT_DESC="Class::Tiny - Minimalist class construction" 24.13 MAINTAINER="al.bobylev@gmail.com" 24.14 -LICENSE="GPL" 24.15 -WEB_SITE="https://metacpan.org/release/Class-Tiny" 24.16 -REPOLOGY="perl:class-tiny" 24.17 +LICENSE="Apache2" 24.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 24.19 +HOST_ARCH="any" 24.20 +REPOLOGY="${PACKAGE/-/:}" 24.21 24.22 -TARBALL="Class-Tiny-$VERSION.tar.gz" 24.23 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/$TARBALL" 24.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 24.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 24.26 24.27 -BUILD_DEPENDS="perl" 24.28 +DEPENDS_std="perl" 24.29 +BUILD_DEPENDS="$DEPENDS_std" 24.30 24.31 compile_rules() { 24.32 - perl Makefile.PL && 24.33 - make && 24.34 - make DESTDIR=$install install && 24.35 - 24.36 - chmod -R u+w $install 24.37 + cook_perl 24.38 } 24.39 - 24.40 -genpkg_rules() { 24.41 - copy @std 24.42 - DEPENDS="perl" 24.43 -}
25.1 --- a/perl-common-sense/receipt Thu Dec 06 20:27:31 2018 +0200 25.2 +++ b/perl-common-sense/receipt Tue Dec 11 23:38:35 2018 +0200 25.3 @@ -1,28 +1,24 @@ 25.4 -# SliTaz package receipt. 25.5 +# SliTaz package receipt v2. 25.6 25.7 +ORIGIN="common-sense" 25.8 PACKAGE="perl-common-sense" 25.9 VERSION="3.74" 25.10 +AUTHOR="MLEHMANN" 25.11 CATEGORY="perl" 25.12 SHORT_DESC="common::sense - save a tree AND a kitten, use common::sense!" 25.13 MAINTAINER="pascal.bellard@slitaz.org" 25.14 -LICENSE="GPL" 25.15 -WEB_SITE="https://metacpan.org/release/common-sense" 25.16 -REPOLOGY="perl:common-sense" 25.17 +LICENSE="GPL" # metacpan: unknown 25.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 25.19 +REPOLOGY="${PACKAGE/-/:}" 25.20 25.21 -TARBALL="common-sense-$VERSION.tar.gz" 25.22 -WGET_URL="https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/$TARBALL" 25.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 25.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 25.25 25.26 -BUILD_DEPENDS="perl" 25.27 +DEPENDS_std="perl" 25.28 +BUILD_DEPENDS="$DEPENDS_std" 25.29 + 25.30 +COOKOPTS="force-arch" # architecture-dependent paths 25.31 25.32 compile_rules() { 25.33 - perl Makefile.PL && 25.34 - make && 25.35 - make DESTDIR=$install install && 25.36 - 25.37 - chmod -R u+w $install 25.38 + cook_perl 25.39 } 25.40 - 25.41 -genpkg_rules() { 25.42 - copy @std 25.43 - DEPENDS="perl" 25.44 -}
26.1 --- a/perl-config-general/receipt Thu Dec 06 20:27:31 2018 +0200 26.2 +++ b/perl-config-general/receipt Tue Dec 11 23:38:35 2018 +0200 26.3 @@ -1,28 +1,23 @@ 26.4 # SliTaz package receipt v2. 26.5 26.6 +ORIGIN="Config-General" 26.7 PACKAGE="perl-config-general" 26.8 VERSION="2.63" 26.9 +AUTHOR="TLINDEN" 26.10 CATEGORY="perl" 26.11 SHORT_DESC="Config::General - Generic Config Module" 26.12 MAINTAINER="pascal.bellard@slitaz.org" 26.13 -LICENSE="GPL" 26.14 -WEB_SITE="https://metacpan.org/release/Config-General" 26.15 -REPOLOGY="perl:config-general" 26.16 +LICENSE="Perl" 26.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 26.18 +HOST_ARCH="any" 26.19 +REPOLOGY="${PACKAGE/-/:}" 26.20 26.21 -TARBALL="Config-General-$VERSION.tar.gz" 26.22 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TL/TLINDEN/$TARBALL" 26.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 26.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 26.25 26.26 -BUILD_DEPENDS="perl" 26.27 +DEPENDS_std="perl" 26.28 +BUILD_DEPENDS="$DEPENDS_std" 26.29 26.30 compile_rules() { 26.31 - perl Makefile.PL && 26.32 - make && 26.33 - make DESTDIR=$install install && 26.34 - 26.35 - chmod -R u+w $install 26.36 + cook_perl 26.37 } 26.38 - 26.39 -genpkg_rules() { 26.40 - copy @std 26.41 - DEPENDS="perl" 26.42 -}
27.1 --- a/perl-config-inifiles/receipt Thu Dec 06 20:27:31 2018 +0200 27.2 +++ b/perl-config-inifiles/receipt Tue Dec 11 23:38:35 2018 +0200 27.3 @@ -1,30 +1,24 @@ 27.4 # SliTaz package receipt v2. 27.5 27.6 +ORIGIN="Config-IniFiles" 27.7 PACKAGE="perl-config-inifiles" 27.8 VERSION="3.000000" 27.9 +AUTHOR="SHLOMIF" 27.10 CATEGORY="perl" 27.11 SHORT_DESC="Config::IniFiles - A module for reading .ini-style configuration \ 27.12 files" 27.13 MAINTAINER="pascal.bellard@slitaz.org" 27.14 -LICENSE="GPL" 27.15 -WEB_SITE="https://metacpan.org/release/Config-IniFiles" 27.16 +LICENSE="Perl" 27.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 27.18 HOST_ARCH="any" 27.19 -REPOLOGY="perl:config-inifiles" 27.20 +REPOLOGY="${PACKAGE/-/:}" 27.21 27.22 -TARBALL="Config-IniFiles-$VERSION.tar.gz" 27.23 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/$TARBALL" 27.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 27.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 27.26 27.27 -BUILD_DEPENDS="perl-io-stringy perl-module-build" 27.28 +DEPENDS_std="perl-io-stringy" 27.29 +BUILD_DEPENDS="$DEPENDS_std perl-module-build" 27.30 27.31 compile_rules() { 27.32 - perl Makefile.PL && 27.33 - make && 27.34 - make DESTDIR=$install install && 27.35 - 27.36 - chmod -R u+w $install 27.37 + cook_perl 27.38 } 27.39 - 27.40 -genpkg_rules() { 27.41 - copy @std 27.42 - DEPENDS="perl-io-stringy" 27.43 -}
28.1 --- a/perl-config-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 28.2 +++ b/perl-config-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 28.3 @@ -1,29 +1,24 @@ 28.4 # SliTaz package receipt v2. 28.5 28.6 +ORIGIN="Config-Tiny" 28.7 PACKAGE="perl-config-tiny" 28.8 VERSION="2.23" 28.9 +AUTHOR="RSAVAGE" 28.10 CATEGORY="perl" 28.11 SHORT_DESC="Config::Tiny - Read/Write .ini style files with as little code as \ 28.12 possible" 28.13 MAINTAINER="pascal.bellard@slitaz.org" 28.14 -LICENSE="GPL2" 28.15 -WEB_SITE="https://metacpan.org/release/Config-Tiny" 28.16 -REPOLOGY="perl:config-tiny" 28.17 +LICENSE="Perl" 28.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 28.19 +HOST_ARCH="any" 28.20 +REPOLOGY="${PACKAGE/-/:}" 28.21 28.22 -TARBALL="Config-Tiny-$VERSION.tgz" 28.23 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/$TARBALL" 28.24 +TARBALL="$ORIGIN-$VERSION.tgz" # !!! 28.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 28.26 28.27 -BUILD_DEPENDS="perl" 28.28 +DEPENDS_std="perl" 28.29 +BUILD_DEPENDS="$DEPENDS_std" 28.30 28.31 compile_rules() { 28.32 - perl Makefile.PL && 28.33 - make && 28.34 - make DESTDIR=$install install && 28.35 - 28.36 - chmod -R u+w $install 28.37 + cook_perl 28.38 } 28.39 - 28.40 -genpkg_rules() { 28.41 - copy @std 28.42 - DEPENDS="perl" 28.43 -}
29.1 --- a/perl-convert-asn1/receipt Thu Dec 06 20:27:31 2018 +0200 29.2 +++ b/perl-convert-asn1/receipt Tue Dec 11 23:38:35 2018 +0200 29.3 @@ -1,29 +1,24 @@ 29.4 # SliTaz package receipt v2. 29.5 29.6 +ORIGIN="Convert-ASN1" 29.7 PACKAGE="perl-convert-asn1" 29.8 VERSION="0.27" 29.9 +AUTHOR="GBARR" 29.10 CATEGORY="perl" 29.11 SHORT_DESC="Convert::ASN1 - Convert between perl data structures and ASN.1 \ 29.12 encoded packets" 29.13 MAINTAINER="pascal.bellard@slitaz.org" 29.14 -LICENSE="GPL" 29.15 -WEB_SITE="https://metacpan.org/release/Convert-ASN1" 29.16 -REPOLOGY="perl:convert-asn1" 29.17 +LICENSE="Perl" 29.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 29.19 +HOST_ARCH="any" 29.20 +REPOLOGY="${PACKAGE/-/:}" 29.21 29.22 -TARBALL="Convert-ASN1-$VERSION.tar.gz" 29.23 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GB/GBARR/$TARBALL" 29.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 29.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 29.26 29.27 -BUILD_DEPENDS="perl" 29.28 +DEPENDS_std="perl" 29.29 +BUILD_DEPENDS="$DEPENDS_std" 29.30 29.31 compile_rules() { 29.32 - perl Makefile.PL && 29.33 - make && 29.34 - make DESTDIR=$install install && 29.35 - 29.36 - chmod -R u+w $install 29.37 + cook_perl 29.38 } 29.39 - 29.40 -genpkg_rules() { 29.41 - copy @std 29.42 - DEPENDS="perl" 29.43 -}
30.1 --- a/perl-cpan-meta-check/receipt Thu Dec 06 20:27:31 2018 +0200 30.2 +++ b/perl-cpan-meta-check/receipt Tue Dec 11 23:38:35 2018 +0200 30.3 @@ -1,28 +1,23 @@ 30.4 -# SliTaz package receipt. 30.5 +# SliTaz package receipt v2. 30.6 30.7 +ORIGIN="CPAN-Meta-Check" 30.8 PACKAGE="perl-cpan-meta-check" 30.9 VERSION="0.014" 30.10 +AUTHOR="LEONT" 30.11 CATEGORY="perl" 30.12 SHORT_DESC="CPAN::Meta::Check - Verify requirements in a CPAN::Meta object" 30.13 MAINTAINER="al.bobylev@gmail.com" 30.14 -LICENSE="GPL" 30.15 -WEB_SITE="https://metacpan.org/release/CPAN-Meta-Check" 30.16 -REPOLOGY="perl:cpan-meta-check" 30.17 +LICENSE="Perl" 30.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 30.19 +HOST_ARCH="any" 30.20 +REPOLOGY="${PACKAGE/-/:}" 30.21 30.22 -TARBALL="CPAN-Meta-Check-$VERSION.tar.gz" 30.23 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LE/LEONT/$TARBALL" 30.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 30.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 30.26 30.27 -BUILD_DEPENDS="perl" 30.28 +DEPENDS_std="perl" 30.29 +BUILD_DEPENDS="$DEPENDS_std perl-test-deep" 30.30 30.31 compile_rules() { 30.32 - perl Makefile.PL && 30.33 - make && 30.34 - make DESTDIR=$install install && 30.35 - 30.36 - chmod -R u+w $install 30.37 + cook_perl 30.38 } 30.39 - 30.40 -genpkg_rules() { 30.41 - copy @std 30.42 - DEPENDS="perl" 30.43 -}
31.1 --- a/perl-crypt-blowfish/receipt Thu Dec 06 20:27:31 2018 +0200 31.2 +++ b/perl-crypt-blowfish/receipt Tue Dec 11 23:38:35 2018 +0200 31.3 @@ -1,28 +1,22 @@ 31.4 # SliTaz package receipt v2. 31.5 31.6 +ORIGIN="Crypt-Blowfish" 31.7 PACKAGE="perl-crypt-blowfish" 31.8 VERSION="2.14" 31.9 +AUTHOR="DPARIS" 31.10 CATEGORY="perl" 31.11 SHORT_DESC="Crypt::Blowfish - Perl Blowfish encryption module" 31.12 MAINTAINER="devel@slitaz.org" 31.13 -LICENSE="Perl" 31.14 -WEB_SITE="https://metacpan.org/release/Crypt-Blowfish" 31.15 -REPOLOGY="perl:crypt-blowfish" 31.16 +LICENSE="Perl" # metacpan: unknown 31.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 31.18 +REPOLOGY="${PACKAGE/-/:}" 31.19 31.20 -TARBALL="Crypt-Blowfish-$VERSION.tar.gz" 31.21 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DP/DPARIS/$TARBALL" 31.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 31.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 31.24 31.25 -BUILD_DEPENDS="perl-dev" 31.26 +DEPENDS_std="perl" 31.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 31.28 31.29 compile_rules() { 31.30 - perl Makefile.PL && 31.31 - make && 31.32 - make DESTDIR=$install install && 31.33 - 31.34 - chmod -R u+w $install 31.35 + cook_perl 31.36 } 31.37 - 31.38 -genpkg_rules() { 31.39 - copy @std 31.40 - DEPENDS="perl" 31.41 -}
32.1 --- a/perl-crypt-cbc/receipt Thu Dec 06 20:27:31 2018 +0200 32.2 +++ b/perl-crypt-cbc/receipt Tue Dec 11 23:38:35 2018 +0200 32.3 @@ -1,28 +1,23 @@ 32.4 # SliTaz package receipt v2. 32.5 32.6 +ORIGIN="Crypt-CBC" 32.7 PACKAGE="perl-crypt-cbc" 32.8 VERSION="2.33" 32.9 +AUTHOR="LDS" 32.10 CATEGORY="perl" 32.11 SHORT_DESC="Crypt::CBC - Encrypt Data with Cipher Block Chaining Mode" 32.12 MAINTAINER="devel@slitaz.org" 32.13 -LICENSE="Perl" 32.14 -WEB_SITE="https://metacpan.org/release/Crypt-CBC" 32.15 -REPOLOGY="perl:crypt-cbc" 32.16 +LICENSE="Perl" # metacpan: unknown 32.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 32.18 +HOST_ARCH="any" 32.19 +REPOLOGY="${PACKAGE/-/:}" 32.20 32.21 -TARBALL="Crypt-CBC-$VERSION.tar.gz" 32.22 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LD/LDS/$TARBALL" 32.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 32.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 32.25 32.26 -BUILD_DEPENDS="perl" 32.27 +DEPENDS_std="perl" 32.28 +BUILD_DEPENDS="$DEPENDS_std" 32.29 32.30 compile_rules() { 32.31 - perl Makefile.PL && 32.32 - make && 32.33 - make DESTDIR=$install install && 32.34 - 32.35 - chmod -R u+w $install 32.36 + cook_perl 32.37 } 32.38 - 32.39 -genpkg_rules() { 32.40 - copy @std 32.41 - DEPENDS="perl" 32.42 -}
33.1 --- a/perl-crypt-des/receipt Thu Dec 06 20:27:31 2018 +0200 33.2 +++ b/perl-crypt-des/receipt Tue Dec 11 23:38:35 2018 +0200 33.3 @@ -1,28 +1,22 @@ 33.4 -# SliTaz package receipt. 33.5 +# SliTaz package receipt v2. 33.6 33.7 +ORIGIN="Crypt-DES" 33.8 PACKAGE="perl-crypt-des" 33.9 VERSION="2.07" 33.10 +AUTHOR="DPARIS" 33.11 CATEGORY="perl" 33.12 SHORT_DESC="Crypt::DES - Perl DES encryption module" 33.13 MAINTAINER="pascal.bellard@slitaz.org" 33.14 -LICENSE="GPL" 33.15 -WEB_SITE="https://metacpan.org/release/Crypt-DES" 33.16 -REPOLOGY="perl:crypt-des" 33.17 +LICENSE="GPL" # metacpan: unknown 33.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 33.19 +REPOLOGY="${PACKAGE/-/:}" 33.20 33.21 -TARBALL="Crypt-DES-$VERSION.tar.gz" 33.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DP/DPARIS/$TARBALL" 33.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 33.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 33.25 33.26 -BUILD_DEPENDS="perl-dev" 33.27 +DEPENDS_std="perl" 33.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 33.29 33.30 compile_rules() { 33.31 - perl Makefile.PL && 33.32 - make && 33.33 - make DESTDIR=$install install && 33.34 - 33.35 - chmod -R u+w $install 33.36 + cook_perl 33.37 } 33.38 - 33.39 -genpkg_rules() { 33.40 - copy @std 33.41 - DEPENDS="perl" 33.42 -}
34.1 --- a/perl-crypt-rc4/receipt Thu Dec 06 20:27:31 2018 +0200 34.2 +++ b/perl-crypt-rc4/receipt Tue Dec 11 23:38:35 2018 +0200 34.3 @@ -1,28 +1,23 @@ 34.4 -# SliTaz package receipt. 34.5 +# SliTaz package receipt v2. 34.6 34.7 +ORIGIN="Crypt-RC4" 34.8 PACKAGE="perl-crypt-rc4" 34.9 VERSION="2.02" 34.10 +AUTHOR="SIFUKURT" 34.11 CATEGORY="perl" 34.12 SHORT_DESC="Crypt::RC4 - Perl implementation of the RC4 encryption algorithm" 34.13 MAINTAINER="al.bobylev@gmail.com" 34.14 LICENSE="GPL" 34.15 -WEB_SITE="https://metacpan.org/release/Crypt-RC4" 34.16 -REPOLOGY="perl:crypt-rc4" 34.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 34.18 +HOST_ARCH="any" 34.19 +REPOLOGY="${PACKAGE/-/:}" 34.20 34.21 -TARBALL="Crypt-RC4-$VERSION.tar.gz" 34.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SI/SIFUKURT/$TARBALL" 34.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 34.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 34.25 34.26 -BUILD_DEPENDS="perl" 34.27 +DEPENDS_std="perl" 34.28 +BUILD_DEPENDS="$DEPENDS_std" 34.29 34.30 compile_rules() { 34.31 - perl Makefile.PL && 34.32 - make && 34.33 - make DESTDIR=$install install && 34.34 - 34.35 - chmod -R u+w $install 34.36 + cook_perl 34.37 } 34.38 - 34.39 -genpkg_rules() { 34.40 - copy @std 34.41 - DEPENDS="perl" 34.42 -}
35.1 --- a/perl-crypt-smbhash/receipt Thu Dec 06 20:27:31 2018 +0200 35.2 +++ b/perl-crypt-smbhash/receipt Tue Dec 11 23:38:35 2018 +0200 35.3 @@ -1,29 +1,24 @@ 35.4 # SliTaz package receipt v2. 35.5 35.6 +ORIGIN="Crypt-SmbHash" 35.7 PACKAGE="perl-crypt-smbhash" 35.8 VERSION="0.12" 35.9 +AUTHOR="BJKUIT" 35.10 CATEGORY="perl" 35.11 SHORT_DESC="Crypt::SmbHash - Perl-only implementation of lanman and nt md4 \ 35.12 hash functions, for use in Samba style smbpasswd entries" 35.13 MAINTAINER="pascal.bellard@slitaz.org" 35.14 LICENSE="GPL" 35.15 -WEB_SITE="https://metacpan.org/release/Crypt-SmbHash" 35.16 -REPOLOGY="perl:crypt-smbhash" 35.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 35.18 +HOST_ARCH="any" 35.19 +REPOLOGY="${PACKAGE/-/:}" 35.20 35.21 -TARBALL="Crypt-SmbHash-$VERSION.tar.gz" 35.22 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BJ/BJKUIT/$TARBALL" 35.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 35.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 35.25 35.26 -BUILD_DEPENDS="perl" 35.27 +DEPENDS_std="perl" 35.28 +BUILD_DEPENDS="$DEPENDS_std" 35.29 35.30 compile_rules() { 35.31 - perl Makefile.PL && 35.32 - make && 35.33 - make DESTDIR=$install install && 35.34 - 35.35 - chmod -R u+w $install 35.36 + cook_perl 35.37 } 35.38 - 35.39 -genpkg_rules() { 35.40 - copy @std 35.41 - DEPENDS="perl" 35.42 -}
36.1 --- a/perl-crypt-ssleay/receipt Thu Dec 06 20:27:31 2018 +0200 36.2 +++ b/perl-crypt-ssleay/receipt Tue Dec 11 23:38:35 2018 +0200 36.3 @@ -1,31 +1,25 @@ 36.4 # SliTaz package receipt v2. 36.5 36.6 +ORIGIN="Crypt-SSLeay" 36.7 PACKAGE="perl-crypt-ssleay" 36.8 VERSION="0.72" 36.9 +AUTHOR="NANIS" 36.10 CATEGORY="perl" 36.11 SHORT_DESC="Crypt::SSLeay - OpenSSL support for LWP" 36.12 MAINTAINER="pascal.bellard@slitaz.org" 36.13 LICENSE="GPL" 36.14 -WEB_SITE="https://metacpan.org/release/Crypt-SSLeay" 36.15 -REPOLOGY="perl:crypt-ssleay" 36.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 36.17 +REPOLOGY="${PACKAGE/-/:}" 36.18 36.19 -TARBALL="Crypt-SSLeay-$VERSION.tar.gz" 36.20 -WGET_URL="https://cpan.metacpan.org/authors/id/N/NA/NANIS/$TARBALL" 36.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 36.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 36.23 36.24 -BUILD_DEPENDS="perl-lwp-protocol-https perl-dev openssl-dev perl-path-class \ 36.25 +DEPENDS_std="perl openssl perl-lwp-protocol-https" 36.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev openssl-dev perl-path-class \ 36.27 perl-io-interactive-tiny" 36.28 36.29 compile_rules() { 36.30 sed -i 's|inc::||' Makefile.PL 36.31 36.32 - perl Makefile.PL && 36.33 - make && 36.34 - make DESTDIR=$install install && 36.35 - 36.36 - chmod -R u+w $install 36.37 + cook_perl 36.38 } 36.39 - 36.40 -genpkg_rules() { 36.41 - copy @std 36.42 - DEPENDS="perl openssl perl-lwp-protocol-https" 36.43 -}
37.1 --- a/perl-curses/receipt Thu Dec 06 20:27:31 2018 +0200 37.2 +++ b/perl-curses/receipt Tue Dec 11 23:38:35 2018 +0200 37.3 @@ -1,28 +1,22 @@ 37.4 -# SliTaz package receipt. 37.5 +# SliTaz package receipt v2. 37.6 37.7 +ORIGIN="Curses" 37.8 PACKAGE="perl-curses" 37.9 VERSION="1.36" 37.10 +AUTHOR="GIRAFFED" 37.11 CATEGORY="perl" 37.12 SHORT_DESC="Curses - terminal screen handling and optimization" 37.13 MAINTAINER="pascal.bellard@slitaz.org" 37.14 LICENSE="GPL" 37.15 -WEB_SITE="https://metacpan.org/release/Curses" 37.16 -REPOLOGY="perl:curses" 37.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 37.18 +REPOLOGY="${PACKAGE/-/:}" 37.19 37.20 -TARBALL="Curses-$VERSION.tar.gz" 37.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GI/GIRAFFED/$TARBALL" 37.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 37.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 37.24 37.25 -DEPENDS="perl ncurses ncurses-libform ncurses-libmenu ncurses-libpanel" 37.26 -BUILD_DEPENDS="perl-dev ncurses-dev" 37.27 +DEPENDS_std="perl ncurses ncurses-libform ncurses-libmenu ncurses-libpanel" 37.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev ncurses-dev" 37.29 37.30 compile_rules() { 37.31 - perl Makefile.PL PANELS MENUS FORMS && 37.32 - make && 37.33 - make DESTDIR=$install install && 37.34 - 37.35 - chmod -R u+w $install 37.36 + cook_perl "PANELS MENUS FORMS" 37.37 } 37.38 - 37.39 -genpkg_rules() { 37.40 - copy @std 37.41 -}
38.1 --- a/perl-date-calc/receipt Thu Dec 06 20:27:31 2018 +0200 38.2 +++ b/perl-date-calc/receipt Tue Dec 11 23:38:35 2018 +0200 38.3 @@ -1,28 +1,23 @@ 38.4 -# SliTaz package receipt. 38.5 +# SliTaz package receipt v2. 38.6 38.7 +ORIGIN="Date-Calc" 38.8 PACKAGE="perl-date-calc" 38.9 VERSION="6.4" 38.10 +AUTHOR="STBEY" 38.11 CATEGORY="perl" 38.12 SHORT_DESC="Date::Calc - Gregorian calendar date calculations" 38.13 MAINTAINER="devel@slitaz.org" 38.14 LICENSE="GPL" 38.15 -WEB_SITE="https://metacpan.org/release/Date-Calc" 38.16 -REPOLOGY="perl:date-calc" 38.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 38.18 +HOST_ARCH="any" 38.19 +REPOLOGY="${PACKAGE/-/:}" 38.20 38.21 -TARBALL="Date-Calc-$VERSION.tar.gz" 38.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/ST/STBEY/$TARBALL" 38.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 38.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 38.25 38.26 -BUILD_DEPENDS="perl-bit-vector perl-carp-clan" 38.27 +DEPENDS_std="perl-bit-vector perl-carp-clan" 38.28 +BUILD_DEPENDS="$DEPENDS_std" 38.29 38.30 compile_rules() { 38.31 - perl Makefile.PL && 38.32 - make && 38.33 - make DESTDIR=$install UNINST=1 install && 38.34 - 38.35 - chmod -R u+w $install 38.36 + cook_perl "" "" "UNINST=1" 38.37 } 38.38 - 38.39 -genpkg_rules() { 38.40 - copy @std 38.41 - DEPENDS="perl-bit-vector perl-carp-clan" 38.42 -}
39.1 --- a/perl-date-manip/receipt Thu Dec 06 20:27:31 2018 +0200 39.2 +++ b/perl-date-manip/receipt Tue Dec 11 23:38:35 2018 +0200 39.3 @@ -1,28 +1,23 @@ 39.4 # SliTaz package receipt v2. 39.5 39.6 +ORIGIN="Date-Manip" 39.7 PACKAGE="perl-date-manip" 39.8 -VERSION="6.73" 39.9 +VERSION="6.75" 39.10 +AUTHOR="SBECK" 39.11 CATEGORY="perl" 39.12 SHORT_DESC="Date::Manip - Date manipulation routines" 39.13 MAINTAINER="devel@slitaz.org" 39.14 LICENSE="GPL" 39.15 -WEB_SITE="https://metacpan.org/release/Date-Manip" 39.16 -REPOLOGY="perl:date-manip" 39.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 39.18 +HOST_ARCH="any" 39.19 +REPOLOGY="${PACKAGE/-/:}" 39.20 39.21 -TARBALL="Date-Manip-$VERSION.tar.gz" 39.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SB/SBECK/$TARBALL" 39.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 39.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 39.25 39.26 -BUILD_DEPENDS="perl" 39.27 +DEPENDS_std="perl" 39.28 +BUILD_DEPENDS="$DEPENDS_std perl-test-inter" 39.29 39.30 compile_rules() { 39.31 - perl Makefile.PL && 39.32 - make && 39.33 - make DESTDIR=$install install && 39.34 - 39.35 - chmod -R u+w $install 39.36 + cook_perl 39.37 } 39.38 - 39.39 -genpkg_rules() { 39.40 - copy @std 39.41 - DEPENDS="perl" 39.42 -}
40.1 --- a/perl-datetime-format-mail/receipt Thu Dec 06 20:27:31 2018 +0200 40.2 +++ b/perl-datetime-format-mail/receipt Tue Dec 11 23:38:35 2018 +0200 40.3 @@ -1,29 +1,24 @@ 40.4 -# SliTaz package receipt. 40.5 +# SliTaz package receipt v2. 40.6 40.7 +ORIGIN="DateTime-Format-Mail" 40.8 PACKAGE="perl-datetime-format-mail" 40.9 VERSION="0.403" 40.10 +AUTHOR="BOOK" 40.11 CATEGORY="perl" 40.12 SHORT_DESC="DateTime::Format::Mail - Convert between DateTime and RFC2822/822 \ 40.13 formats" 40.14 MAINTAINER="pascal.bellard@slitaz.org" 40.15 LICENSE="GPL2" 40.16 -WEB_SITE="https://metacpan.org/release/DateTime-Format-Mail" 40.17 -REPOLOGY="perl:datetime-format-mail" 40.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 40.19 +HOST_ARCH="any" 40.20 +REPOLOGY="${PACKAGE/-/:}" 40.21 40.22 -TARBALL="DateTime-Format-Mail-$VERSION.tar.gz" 40.23 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BO/BOOK/$TARBALL" 40.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 40.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 40.26 40.27 -BUILD_DEPENDS="perl-datetime perl-params-validate" 40.28 +DEPENDS_std="perl-datetime perl-params-validate" 40.29 +BUILD_DEPENDS="$DEPENDS_std" 40.30 40.31 compile_rules() { 40.32 - perl Makefile.PL && 40.33 - make && 40.34 - make DESTDIR=$install install && 40.35 - 40.36 - chmod -R u+w $install 40.37 + cook_perl 40.38 } 40.39 - 40.40 -genpkg_rules() { 40.41 - copy @std 40.42 - DEPENDS="perl-datetime perl-params-validate" 40.43 -}
41.1 --- a/perl-datetime-format-strptime/receipt Thu Dec 06 20:27:31 2018 +0200 41.2 +++ b/perl-datetime-format-strptime/receipt Tue Dec 11 23:38:35 2018 +0200 41.3 @@ -1,33 +1,26 @@ 41.4 -# SliTaz package receipt. 41.5 +# SliTaz package receipt v2. 41.6 41.7 +ORIGIN="DateTime-Format-Strptime" 41.8 PACKAGE="perl-datetime-format-strptime" 41.9 VERSION="1.75" 41.10 +AUTHOR="DROLSKY" 41.11 CATEGORY="perl" 41.12 SHORT_DESC="DateTime::Format::Strptime - Parse and format strp and strf time \ 41.13 patterns" 41.14 MAINTAINER="pascal.bellard@slitaz.org" 41.15 LICENSE="GPL2" 41.16 -WEB_SITE="https://metacpan.org/release/DateTime-Format-Strptime" 41.17 -REPOLOGY="perl:datetime-format-strptime" 41.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 41.19 +HOST_ARCH="any" 41.20 +REPOLOGY="${PACKAGE/-/:}" 41.21 41.22 -TARBALL="DateTime-Format-Strptime-$VERSION.tar.gz" 41.23 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 41.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 41.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 41.26 41.27 -BUILD_DEPENDS="perl-datetime perl-datetime-locale perl-datetime-timezone \ 41.28 +DEPENDS_std="perl-datetime perl-datetime-locale perl-datetime-timezone \ 41.29 perl-package-deprecationmanager perl-params-validationcompiler perl-specio \ 41.30 -perl-try-tiny perl-test-warnings" 41.31 +perl-try-tiny" 41.32 +BUILD_DEPENDS="$DEPENDS_std perl-test-warnings" 41.33 41.34 compile_rules() { 41.35 - perl Makefile.PL && 41.36 - make && 41.37 - make DESTDIR=$install install && 41.38 - 41.39 - chmod -R u+w $install 41.40 + cook_perl 41.41 } 41.42 - 41.43 -genpkg_rules() { 41.44 - copy @std 41.45 - DEPENDS="perl-datetime perl-datetime-locale perl-datetime-timezone \ 41.46 - perl-package-deprecationmanager perl-params-validationcompiler perl-specio \ 41.47 - perl-try-tiny" 41.48 -}
42.1 --- a/perl-datetime-format-w3cdtf/receipt Thu Dec 06 20:27:31 2018 +0200 42.2 +++ b/perl-datetime-format-w3cdtf/receipt Tue Dec 11 23:38:35 2018 +0200 42.3 @@ -1,28 +1,23 @@ 42.4 # SliTaz package receipt v2. 42.5 42.6 +ORIGIN="DateTime-Format-W3CDTF" 42.7 PACKAGE="perl-datetime-format-w3cdtf" 42.8 VERSION="0.07" 42.9 +AUTHOR="GWILLIAMS" 42.10 CATEGORY="perl" 42.11 SHORT_DESC="DateTime::Format::W3CDTF - Parse and format W3CDTF datetime strings" 42.12 MAINTAINER="pascal.bellard@slitaz.org" 42.13 LICENSE="GPL" 42.14 -WEB_SITE="https://metacpan.org/release/DateTime-Format-W3CDTF" 42.15 -REPOLOGY="perl:datetime-format-w3cdtf" 42.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 42.17 +HOST_ARCH="any" 42.18 +REPOLOGY="${PACKAGE/-/:}" 42.19 42.20 -TARBALL="DateTime-Format-W3CDTF-$VERSION.tar.gz" 42.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GW/GWILLIAMS/$TARBALL" 42.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 42.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 42.24 42.25 -BUILD_DEPENDS="perl-datetime" 42.26 +DEPENDS_std="perl-datetime" 42.27 +BUILD_DEPENDS="$DEPENDS_std" 42.28 42.29 compile_rules() { 42.30 - perl Makefile.PL && 42.31 - make && 42.32 - make DESTDIR=$install install && 42.33 - 42.34 - chmod -R u+w $install 42.35 + cook_perl 42.36 } 42.37 - 42.38 -genpkg_rules() { 42.39 - copy @std 42.40 - DEPENDS="perl-datetime" 42.41 -}
43.1 --- a/perl-datetime-locale/receipt Thu Dec 06 20:27:31 2018 +0200 43.2 +++ b/perl-datetime-locale/receipt Tue Dec 11 23:38:35 2018 +0200 43.3 @@ -1,32 +1,25 @@ 43.4 -# SliTaz package receipt. 43.5 +# SliTaz package receipt v2. 43.6 43.7 +ORIGIN="DateTime-Locale" 43.8 PACKAGE="perl-datetime-locale" 43.9 -VERSION="1.22" 43.10 +VERSION="1.23" 43.11 +AUTHOR="DROLSKY" 43.12 CATEGORY="perl" 43.13 SHORT_DESC="DateTime::Locale - Localization support for DateTime.pm" 43.14 MAINTAINER="pascal.bellard@slitaz.org" 43.15 LICENSE="GPL" 43.16 -WEB_SITE="https://metacpan.org/release/DateTime-Locale" 43.17 -REPOLOGY="perl:datetime-locale" 43.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 43.19 +HOST_ARCH="any" 43.20 +REPOLOGY="${PACKAGE/-/:}" 43.21 43.22 -TARBALL="DateTime-Locale-$VERSION.tar.gz" 43.23 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 43.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 43.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 43.26 43.27 -BUILD_DEPENDS="perl-dist-checkconflicts perl-file-sharedir \ 43.28 -perl-scalar-list-utils perl-namespace-autoclean perl-params-validationcompiler \ 43.29 -perl-specio perl-file-sharedir-install perl-cpan-meta-check perl-test-fatal \ 43.30 -perl-test-file-sharedir perl-test-requires perl-test-warnings" 43.31 +DEPENDS_std="perl-dist-checkconflicts perl-file-sharedir perl-scalar-list-utils \ 43.32 +perl-namespace-autoclean perl-params-validationcompiler perl-specio" 43.33 +BUILD_DEPENDS="$DEPENDS_std perl-file-sharedir-install perl-cpan-meta-check \ 43.34 +perl-test-fatal perl-test-file-sharedir perl-test-requires perl-test-warnings" 43.35 43.36 compile_rules() { 43.37 - perl Makefile.PL && 43.38 - make && 43.39 - make DESTDIR=$install install && 43.40 - 43.41 - chmod -R u+w $install 43.42 + cook_perl 43.43 } 43.44 - 43.45 -genpkg_rules() { 43.46 - copy @std 43.47 - DEPENDS="perl-dist-checkconflicts perl-file-sharedir perl-scalar-list-utils \ 43.48 - perl-namespace-autoclean perl-params-validationcompiler perl-specio" 43.49 -}
44.1 --- a/perl-datetime-timezone/receipt Thu Dec 06 20:27:31 2018 +0200 44.2 +++ b/perl-datetime-timezone/receipt Tue Dec 11 23:38:35 2018 +0200 44.3 @@ -1,31 +1,24 @@ 44.4 # SliTaz package receipt v2. 44.5 44.6 +ORIGIN="DateTime-TimeZone" 44.7 PACKAGE="perl-datetime-timezone" 44.8 -VERSION="2.19" 44.9 +VERSION="2.21" 44.10 +AUTHOR="DROLSKY" 44.11 CATEGORY="perl" 44.12 SHORT_DESC="DateTime::TimeZone - Time zone object base class and factory" 44.13 MAINTAINER="pascal.bellard@slitaz.org" 44.14 LICENSE="GPL" 44.15 -WEB_SITE="https://metacpan.org/release/DateTime-TimeZone" 44.16 -REPOLOGY="perl:datetime-timezone" 44.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 44.18 +HOST_ARCH="any" 44.19 +REPOLOGY="${PACKAGE/-/:}" 44.20 44.21 -TARBALL="DateTime-TimeZone-$VERSION.tar.gz" 44.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 44.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 44.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 44.25 44.26 -BUILD_DEPENDS="perl-class-singleton perl-module-runtime \ 44.27 -perl-namespace-autoclean perl-params-validationcompiler perl-specio \ 44.28 -perl-try-tiny perl-test-requires" 44.29 +DEPENDS_std="perl-class-singleton perl-module-runtime perl-namespace-autoclean \ 44.30 +perl-params-validationcompiler perl-specio perl-try-tiny" 44.31 +BUILD_DEPENDS="$DEPENDS_std perl-test-requires" 44.32 44.33 compile_rules() { 44.34 - perl Makefile.PL && 44.35 - make && 44.36 - make DESTDIR=$install install && 44.37 - 44.38 - chmod -R u+w $install 44.39 + cook_perl 44.40 } 44.41 - 44.42 -genpkg_rules() { 44.43 - copy @std 44.44 - DEPENDS="perl-class-singleton perl-module-runtime perl-namespace-autoclean \ 44.45 - perl-params-validationcompiler perl-specio perl-try-tiny" 44.46 -}
45.1 --- a/perl-datetime/receipt Thu Dec 06 20:27:31 2018 +0200 45.2 +++ b/perl-datetime/receipt Tue Dec 11 23:38:35 2018 +0200 45.3 @@ -1,33 +1,24 @@ 45.4 # SliTaz package receipt v2. 45.5 45.6 +ORIGIN="DateTime" 45.7 PACKAGE="perl-datetime" 45.8 VERSION="1.50" 45.9 +AUTHOR="DROLSKY" 45.10 CATEGORY="perl" 45.11 SHORT_DESC="DateTime - A date and time object for Perl" 45.12 MAINTAINER="pascal.bellard@slitaz.org" 45.13 LICENSE="GPL" 45.14 -WEB_SITE="https://metacpan.org/release/DateTime" 45.15 -REPOLOGY="perl:datetime" 45.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 45.17 +REPOLOGY="${PACKAGE/-/:}" 45.18 45.19 -TARBALL="DateTime-$VERSION.tar.gz" 45.20 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 45.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 45.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 45.23 45.24 -BUILD_DEPENDS="perl-datetime-locale perl-datetime-timezone \ 45.25 +DEPENDS_std="perl-datetime-locale perl-datetime-timezone \ 45.26 perl-dist-checkconflicts perl-namespace-autoclean \ 45.27 -perl-params-validationcompiler perl-specio perl-try-tiny \ 45.28 -perl-dev perl-cpan-meta-check perl-test-warnings" 45.29 +perl-params-validationcompiler perl-specio perl-try-tiny" 45.30 +BUILD_DEPENDS="$DEPENDS_std perl-dev perl-cpan-meta-check perl-test-warnings" 45.31 45.32 compile_rules() { 45.33 - perl Makefile.PL && 45.34 - make && 45.35 - make DESTDIR=$install install && 45.36 - 45.37 - chmod -R u+w $install 45.38 + cook_perl 45.39 } 45.40 - 45.41 -genpkg_rules() { 45.42 - copy @std 45.43 - DEPENDS="perl-datetime-locale perl-datetime-timezone \ 45.44 - perl-dist-checkconflicts perl-namespace-autoclean \ 45.45 - perl-params-validationcompiler perl-specio perl-try-tiny" 45.46 -}
46.1 --- a/perl-dbd-mysql/receipt Thu Dec 06 20:27:31 2018 +0200 46.2 +++ b/perl-dbd-mysql/receipt Tue Dec 11 23:38:35 2018 +0200 46.3 @@ -1,29 +1,22 @@ 46.4 # SliTaz package receipt v2. 46.5 46.6 +ORIGIN="DBD-mysql" 46.7 PACKAGE="perl-dbd-mysql" 46.8 -VERSION="4.048" 46.9 +VERSION="4.049" 46.10 +AUTHOR="DVEEDEN" 46.11 CATEGORY="perl" 46.12 SHORT_DESC="DBD::mysql - MySQL driver for the Perl5 Database Interface (DBI)" 46.13 MAINTAINER="pascal.bellard@slitaz.org" 46.14 LICENSE="GPL" 46.15 -WEB_SITE="https://metacpan.org/release/DBD-mysql" 46.16 -HOST_ARCH="any" 46.17 -REPOLOGY="perl:dbd-mysql" 46.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 46.19 +REPOLOGY="${PACKAGE/-/:}" 46.20 46.21 -TARBALL="DBD-mysql-$VERSION.tar.gz" 46.22 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MI/MICHIELB/$TARBALL" 46.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 46.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 46.25 46.26 -BUILD_DEPENDS="perl-dev perl-dbi mysql-dev perl-devel-checklib" 46.27 +DEPENDS_std="perl perl-dbi libmysqlclient zlib" 46.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev mysql-dev perl-devel-checklib" 46.29 46.30 compile_rules() { 46.31 - perl Makefile.PL && 46.32 - make && 46.33 - make DESTDIR=$install install && 46.34 - 46.35 - chmod -R u+w $install 46.36 + cook_perl 46.37 } 46.38 - 46.39 -genpkg_rules() { 46.40 - copy @std 46.41 - DEPENDS="perl perl-dbi libmysqlclient zlib" 46.42 -}
47.1 --- a/perl-dbd-pg/receipt Thu Dec 06 20:27:31 2018 +0200 47.2 +++ b/perl-dbd-pg/receipt Tue Dec 11 23:38:35 2018 +0200 47.3 @@ -1,28 +1,22 @@ 47.4 -# SliTaz package receipt. 47.5 +# SliTaz package receipt v2. 47.6 47.7 +ORIGIN="DBD-Pg" 47.8 PACKAGE="perl-dbd-pg" 47.9 VERSION="3.7.4" 47.10 +AUTHOR="TURNSTEP" 47.11 CATEGORY="perl" 47.12 SHORT_DESC="DBD::Pg - PostgreSQL database driver for the DBI module" 47.13 MAINTAINER="pascal.bellard@slitaz.org" 47.14 LICENSE="GPL" 47.15 -WEB_SITE="https://metacpan.org/release/DBD-Pg" 47.16 -REPOLOGY="perl:dbd-pg" 47.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 47.18 +REPOLOGY="${PACKAGE/-/:}" 47.19 47.20 -TARBALL="DBD-Pg-$VERSION.tar.gz" 47.21 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TU/TURNSTEP/$TARBALL" 47.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 47.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 47.24 47.25 -BUILD_DEPENDS="perl-dbi libpostgresqlclient perl-dev postgresql-dev" 47.26 +DEPENDS_std="perl-dbi libpostgresqlclient" 47.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev postgresql-dev" 47.28 47.29 compile_rules() { 47.30 - perl Makefile.PL && 47.31 - make && 47.32 - make DESTDIR=$install install && 47.33 - 47.34 - chmod -R u+w $install 47.35 + cook_perl 47.36 } 47.37 - 47.38 -genpkg_rules() { 47.39 - copy @std 47.40 - DEPENDS="perl-dbi libpostgresqlclient" 47.41 -}
48.1 --- a/perl-dbd-sqlite/receipt Thu Dec 06 20:27:31 2018 +0200 48.2 +++ b/perl-dbd-sqlite/receipt Tue Dec 11 23:38:35 2018 +0200 48.3 @@ -1,29 +1,25 @@ 48.4 -# SliTaz package receipt. 48.5 +# SliTaz package receipt v2. 48.6 48.7 +ORIGIN="DBD-SQLite" 48.8 PACKAGE="perl-dbd-sqlite" 48.9 -VERSION="1.58" 48.10 +VERSION="1.60" 48.11 +AUTHOR="ISHIGAKI" 48.12 CATEGORY="perl" 48.13 SHORT_DESC="DBD::SQLite - Self-contained RDBMS in a DBI Driver" 48.14 MAINTAINER="devel@slitaz.org" 48.15 LICENSE="GPL" 48.16 -WEB_SITE="https://metacpan.org/release/DBD-SQLite" 48.17 -REPOLOGY="perl:dbd-sqlite" 48.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 48.19 +REPOLOGY="${PACKAGE/-/:}" 48.20 48.21 -TARBALL="DBD-SQLite-$VERSION.tar.gz" 48.22 -WGET_URL="https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/$TARBALL" 48.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 48.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 48.25 48.26 # FIXME: sqlite3-dev and libsqlite3 aren't detected as (b)deps 48.27 -BUILD_DEPENDS="perl-dbi libsqlite3 perl-dev sqlite3-dev" 48.28 +DEPENDS_std="perl-dbi libsqlite3" 48.29 +BUILD_DEPENDS="$DEPENDS_std perl-dev sqlite3-dev" 48.30 + 48.31 +COPY_std="@std @dev" 48.32 48.33 compile_rules() { 48.34 - perl Makefile.PL && 48.35 - make && 48.36 - make DESTDIR=$install install && 48.37 - 48.38 - chmod -R u+w $install 48.39 + cook_perl 48.40 } 48.41 - 48.42 -genpkg_rules() { 48.43 - copy @std @dev 48.44 - DEPENDS="perl-dbi libsqlite3" 48.45 -}
49.1 --- a/perl-dbi/receipt Thu Dec 06 20:27:31 2018 +0200 49.2 +++ b/perl-dbi/receipt Tue Dec 11 23:38:35 2018 +0200 49.3 @@ -1,28 +1,24 @@ 49.4 -# SliTaz package receipt. 49.5 +# SliTaz package receipt v2. 49.6 49.7 +ORIGIN="DBI" 49.8 PACKAGE="perl-dbi" 49.9 -VERSION="1.641" 49.10 +VERSION="1.642" 49.11 +AUTHOR="TIMB" 49.12 CATEGORY="perl" 49.13 SHORT_DESC="DBI - Database independent interface for Perl" 49.14 MAINTAINER="pascal.bellard@slitaz.org" 49.15 LICENSE="GPL" 49.16 -WEB_SITE="https://metacpan.org/release/DBI" 49.17 -REPOLOGY="perl:dbi" 49.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 49.19 +REPOLOGY="${PACKAGE/-/:}" 49.20 49.21 -TARBALL="DBI-$VERSION.tar.gz" 49.22 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TI/TIMB/$TARBALL" 49.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 49.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 49.25 49.26 -BUILD_DEPENDS="perl-dev" 49.27 +DEPENDS_std="perl" 49.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 49.29 + 49.30 +COPY_std="@std @dev" 49.31 49.32 compile_rules() { 49.33 - perl Makefile.PL && 49.34 - make && 49.35 - make DESTDIR=$install install && 49.36 - 49.37 - chmod -R u+w $install 49.38 + cook_perl 49.39 } 49.40 - 49.41 -genpkg_rules() { 49.42 - copy @std @dev 49.43 - DEPENDS="perl" 49.44 -}
50.1 --- a/perl-devel-checklib/receipt Thu Dec 06 20:27:31 2018 +0200 50.2 +++ b/perl-devel-checklib/receipt Tue Dec 11 23:38:35 2018 +0200 50.3 @@ -1,28 +1,23 @@ 50.4 -# SliTaz package receipt. 50.5 +# SliTaz package receipt v2. 50.6 50.7 +ORIGIN="Devel-CheckLib" 50.8 PACKAGE="perl-devel-checklib" 50.9 VERSION="1.13" 50.10 +AUTHOR="MATTN" 50.11 CATEGORY="perl" 50.12 SHORT_DESC="Devel::CheckLib - check that a library is available" 50.13 MAINTAINER="al.bobylev@gmail.com" 50.14 LICENSE="GPL" 50.15 -WEB_SITE="https://metacpan.org/release/Devel-CheckLib" 50.16 -REPOLOGY="perl:devel-checklib" 50.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 50.18 +HOST_ARCH="any" 50.19 +REPOLOGY="${PACKAGE/-/:}" 50.20 50.21 -TARBALL="Devel-CheckLib-$VERSION.tar.gz" 50.22 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MA/MATTN/$TARBALL" 50.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 50.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 50.25 50.26 -BUILD_DEPENDS="perl-io-captureoutput perl-mock-config" 50.27 +DEPENDS_std="perl-io-captureoutput perl-mock-config" 50.28 +BUILD_DEPENDS="$DEPENDS_std" 50.29 50.30 compile_rules() { 50.31 - perl Makefile.PL && 50.32 - make && 50.33 - make DESTDIR=$install install && 50.34 - 50.35 - chmod -R u+w $install 50.36 + cook_perl 50.37 } 50.38 - 50.39 -genpkg_rules() { 50.40 - copy @std 50.41 - DEPENDS="perl-io-captureoutput perl-mock-config" 50.42 -}
51.1 --- a/perl-devel-stacktrace/receipt Thu Dec 06 20:27:31 2018 +0200 51.2 +++ b/perl-devel-stacktrace/receipt Tue Dec 11 23:38:35 2018 +0200 51.3 @@ -1,28 +1,23 @@ 51.4 -# SliTaz package receipt. 51.5 +# SliTaz package receipt v2. 51.6 51.7 +ORIGIN="Devel-StackTrace" 51.8 PACKAGE="perl-devel-stacktrace" 51.9 VERSION="2.03" 51.10 +AUTHOR="DROLSKY" 51.11 CATEGORY="perl" 51.12 SHORT_DESC="Devel::StackTrace - An object representing a stack trace" 51.13 MAINTAINER="al.bobylev@gmail.com" 51.14 LICENSE="GPL" 51.15 -WEB_SITE="https://metacpan.org/release/Devel-StackTrace" 51.16 -REPOLOGY="perl:devel-stacktrace" 51.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 51.18 +HOST_ARCH="any" 51.19 +REPOLOGY="${PACKAGE/-/:}" 51.20 51.21 -TARBALL="Devel-StackTrace-$VERSION.tar.gz" 51.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 51.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 51.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 51.25 51.26 -BUILD_DEPENDS="perl" 51.27 +DEPENDS_std="perl" 51.28 +BUILD_DEPENDS="$DEPENDS_std" 51.29 51.30 compile_rules() { 51.31 - perl Makefile.PL && 51.32 - make && 51.33 - make DESTDIR=$install install && 51.34 - 51.35 - chmod -R u+w $install 51.36 + cook_perl 51.37 } 51.38 - 51.39 -genpkg_rules() { 51.40 - copy @std 51.41 - DEPENDS="perl" 51.42 -}
52.1 --- a/perl-devel-symdump/receipt Thu Dec 06 20:27:31 2018 +0200 52.2 +++ b/perl-devel-symdump/receipt Tue Dec 11 23:38:35 2018 +0200 52.3 @@ -1,28 +1,23 @@ 52.4 # SliTaz package receipt v2. 52.5 52.6 +ORIGIN="Devel-Symdump" 52.7 PACKAGE="perl-devel-symdump" 52.8 VERSION="2.18" 52.9 +AUTHOR="ANDK" 52.10 CATEGORY="perl" 52.11 SHORT_DESC="Devel::Symdump - dump symbol names or the symbol table" 52.12 MAINTAINER="al.bobylev@gmail.com" 52.13 LICENSE="GPL" 52.14 -WEB_SITE="https://metacpan.org/release/Devel-Symdump" 52.15 -REPOLOGY="perl:devel-symdump" 52.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 52.17 +HOST_ARCH="any" 52.18 +REPOLOGY="${PACKAGE/-/:}" 52.19 52.20 -TARBALL="Devel-Symdump-$VERSION.tar.gz" 52.21 -WGET_URL="https://cpan.metacpan.org/authors/id/A/AN/ANDK/$TARBALL" 52.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 52.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 52.24 52.25 -BUILD_DEPENDS="perl" 52.26 +DEPENDS_std="perl" 52.27 +BUILD_DEPENDS="$DEPENDS_std" 52.28 52.29 compile_rules() { 52.30 - perl Makefile.PL && 52.31 - make && 52.32 - make DESTDIR=$install install && 52.33 - 52.34 - chmod -R u+w $install 52.35 + cook_perl 52.36 } 52.37 - 52.38 -genpkg_rules() { 52.39 - copy @std 52.40 - DEPENDS="perl" 52.41 -}
53.1 --- a/perl-digest-hmac/receipt Thu Dec 06 20:27:31 2018 +0200 53.2 +++ b/perl-digest-hmac/receipt Tue Dec 11 23:38:35 2018 +0200 53.3 @@ -1,28 +1,23 @@ 53.4 -# SliTaz package receipt. 53.5 +# SliTaz package receipt v2. 53.6 53.7 +ORIGIN="Digest-HMAC" 53.8 PACKAGE="perl-digest-hmac" 53.9 VERSION="1.03" 53.10 +AUTHOR="GAAS" 53.11 CATEGORY="perl" 53.12 SHORT_DESC="Digest::HMAC - Keyed-Hashing for Message Authentication" 53.13 MAINTAINER="pascal.bellard@slitaz.org" 53.14 LICENSE="GPL" 53.15 -WEB_SITE="https://metacpan.org/release/Digest-HMAC" 53.16 -REPOLOGY="perl:digest-hmac" 53.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 53.18 +HOST_ARCH="any" 53.19 +REPOLOGY="${PACKAGE/-/:}" 53.20 53.21 -TARBALL="Digest-HMAC-$VERSION.tar.gz" 53.22 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 53.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 53.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 53.25 53.26 -BUILD_DEPENDS="perl" 53.27 +DEPENDS_std="perl" 53.28 +BUILD_DEPENDS="$DEPENDS_std" 53.29 53.30 compile_rules() { 53.31 - perl Makefile.PL && 53.32 - make && 53.33 - make DESTDIR=$install install && 53.34 - 53.35 - chmod -R u+w $install 53.36 + cook_perl 53.37 } 53.38 - 53.39 -genpkg_rules() { 53.40 - copy @std 53.41 - DEPENDS="perl" 53.42 -}
54.1 --- a/perl-digest-md4/receipt Thu Dec 06 20:27:31 2018 +0200 54.2 +++ b/perl-digest-md4/receipt Tue Dec 11 23:38:35 2018 +0200 54.3 @@ -1,28 +1,22 @@ 54.4 # SliTaz package receipt v2. 54.5 54.6 +ORIGIN="Digest-MD4" 54.7 PACKAGE="perl-digest-md4" 54.8 VERSION="1.9" 54.9 +AUTHOR="MIKEM" 54.10 CATEGORY="perl" 54.11 SHORT_DESC="Digest::MD4 - Perl interface to the MD4 Algorithm" 54.12 MAINTAINER="al.bobylev@gmail.com" 54.13 LICENSE="GPL" 54.14 -WEB_SITE="https://metacpan.org/release/Digest-MD4" 54.15 -REPOLOGY="perl:digest-md4" 54.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 54.17 +REPOLOGY="${PACKAGE/-/:}" 54.18 54.19 -TARBALL="Digest-MD4-$VERSION.tar.gz" 54.20 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MI/MIKEM/DigestMD4/$TARBALL" 54.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 54.22 +WGET_URL="https://cpan.metacpan.org/authors/id/M/MI/MIKEM/DigestMD4/$TARBALL" # !!! 54.23 54.24 -BUILD_DEPENDS="perl-dev" 54.25 +DEPENDS_std="perl" 54.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 54.27 54.28 compile_rules() { 54.29 - perl Makefile.PL && 54.30 - make && 54.31 - make DESTDIR=$install install && 54.32 - 54.33 - chmod -R u+w $install 54.34 + cook_perl 54.35 } 54.36 - 54.37 -genpkg_rules() { 54.38 - copy @std 54.39 - DEPENDS="perl" 54.40 -}
55.1 --- a/perl-digest-perl-md4/receipt Thu Dec 06 20:27:31 2018 +0200 55.2 +++ b/perl-digest-perl-md4/receipt Tue Dec 11 23:38:35 2018 +0200 55.3 @@ -1,29 +1,24 @@ 55.4 -# SliTaz package receipt. 55.5 +# SliTaz package receipt v2. 55.6 55.7 +ORIGIN="Digest-Perl-MD4" 55.8 PACKAGE="perl-digest-perl-md4" 55.9 VERSION="1.4" 55.10 +AUTHOR="OTAKA" 55.11 CATEGORY="perl" 55.12 SHORT_DESC="Digest::Perl::MD4 - Perl implementation of Ron Rivests MD4 \ 55.13 Algorithm" 55.14 MAINTAINER="pascal.bellard@slitaz.org" 55.15 LICENSE="GPL" 55.16 -WEB_SITE="https://metacpan.org/release/Digest-Perl-MD4" 55.17 -REPOLOGY="perl:digest-perl-md4" 55.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 55.19 +HOST_ARCH="any" 55.20 +REPOLOGY="${PACKAGE/-/:}" 55.21 55.22 -TARBALL="Digest-Perl-MD4-$VERSION.tar.gz" 55.23 -WGET_URL="https://cpan.metacpan.org/authors/id/O/OT/OTAKA/$TARBALL" 55.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 55.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 55.26 55.27 -BUILD_DEPENDS="perl" 55.28 +DEPENDS_std="perl" 55.29 +BUILD_DEPENDS="$DEPENDS_std" 55.30 55.31 compile_rules() { 55.32 - perl Makefile.PL && 55.33 - make && 55.34 - make DESTDIR=$install install && 55.35 - 55.36 - chmod -R u+w $install 55.37 + cook_perl 55.38 } 55.39 - 55.40 -genpkg_rules() { 55.41 - copy @std 55.42 - DEPENDS="perl" 55.43 -}
56.1 --- a/perl-digest-perl-md5/receipt Thu Dec 06 20:27:31 2018 +0200 56.2 +++ b/perl-digest-perl-md5/receipt Tue Dec 11 23:38:35 2018 +0200 56.3 @@ -1,29 +1,24 @@ 56.4 # SliTaz package receipt v2. 56.5 56.6 +ORIGIN="Digest-Perl-MD5" 56.7 PACKAGE="perl-digest-perl-md5" 56.8 VERSION="1.9" 56.9 +AUTHOR="DELTA" 56.10 CATEGORY="perl" 56.11 SHORT_DESC="Digest::Perl::MD5 - Perl implementation of Ron Rivests MD5 \ 56.12 Algorithm" 56.13 MAINTAINER="al.bobylev@gmail.com" 56.14 LICENSE="GPL" 56.15 -WEB_SITE="https://metacpan.org/release/Digest-Perl-MD5" 56.16 -REPOLOGY="perl:digest-perl-md5" 56.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 56.18 +HOST_ARCH="any" 56.19 +REPOLOGY="${PACKAGE/-/:}" 56.20 56.21 -TARBALL="Digest-Perl-MD5-$VERSION.tar.gz" 56.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DE/DELTA/$TARBALL" 56.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 56.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 56.25 56.26 -BUILD_DEPENDS="perl" 56.27 +DEPENDS_std="perl" 56.28 +BUILD_DEPENDS="$DEPENDS_std" 56.29 56.30 compile_rules() { 56.31 - perl Makefile.PL && 56.32 - make && 56.33 - make DESTDIR=$install install && 56.34 - 56.35 - chmod -R u+w $install 56.36 + cook_perl 56.37 } 56.38 - 56.39 -genpkg_rules() { 56.40 - copy @std 56.41 - DEPENDS="perl" 56.42 -}
57.1 --- a/perl-digest-sha1/receipt Thu Dec 06 20:27:31 2018 +0200 57.2 +++ b/perl-digest-sha1/receipt Tue Dec 11 23:38:35 2018 +0200 57.3 @@ -1,28 +1,22 @@ 57.4 # SliTaz package receipt v2. 57.5 57.6 +ORIGIN="Digest-SHA1" 57.7 PACKAGE="perl-digest-sha1" 57.8 VERSION="2.13" 57.9 +AUTHOR="GAAS" 57.10 CATEGORY="perl" 57.11 SHORT_DESC="Digest::SHA1 - Perl interface to the SHA-1 algorithm" 57.12 MAINTAINER="pascal.bellard@slitaz.org" 57.13 LICENSE="GPL" 57.14 -WEB_SITE="https://metacpan.org/release/Digest-SHA1" 57.15 -REPOLOGY="perl:digest-sha1" 57.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 57.17 +REPOLOGY="${PACKAGE/-/:}" 57.18 57.19 -TARBALL="Digest-SHA1-$VERSION.tar.gz" 57.20 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 57.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 57.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 57.23 57.24 -BUILD_DEPENDS="perl-dev" 57.25 +DEPENDS_std="perl" 57.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 57.27 57.28 compile_rules() { 57.29 - perl Makefile.PL && 57.30 - make && 57.31 - make DESTDIR=$install install && 57.32 - 57.33 - chmod -R u+w $install 57.34 + cook_perl 57.35 } 57.36 - 57.37 -genpkg_rules() { 57.38 - copy @std 57.39 - DEPENDS="perl" 57.40 -}
58.1 --- a/perl-dist-checkconflicts/receipt Thu Dec 06 20:27:31 2018 +0200 58.2 +++ b/perl-dist-checkconflicts/receipt Tue Dec 11 23:38:35 2018 +0200 58.3 @@ -1,28 +1,23 @@ 58.4 # SliTaz package receipt v2. 58.5 58.6 +ORIGIN="Dist-CheckConflicts" 58.7 PACKAGE="perl-dist-checkconflicts" 58.8 VERSION="0.11" 58.9 +AUTHOR="DOY" 58.10 CATEGORY="perl" 58.11 SHORT_DESC="Dist::CheckConflicts - declare version conflicts for your dist" 58.12 MAINTAINER="al.bobylev@gmail.com" 58.13 LICENSE="GPL" 58.14 -WEB_SITE="https://metacpan.org/release/Dist-CheckConflicts" 58.15 -REPOLOGY="perl:dist-checkconflicts" 58.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 58.17 +HOST_ARCH="any" 58.18 +REPOLOGY="${PACKAGE/-/:}" 58.19 58.20 -TARBALL="Dist-CheckConflicts-$VERSION.tar.gz" 58.21 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DO/DOY/$TARBALL" 58.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 58.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 58.24 58.25 -BUILD_DEPENDS="perl-module-runtime" 58.26 +DEPENDS_std="perl-module-runtime" 58.27 +BUILD_DEPENDS="$DEPENDS_std" 58.28 58.29 compile_rules() { 58.30 - perl Makefile.PL && 58.31 - make && 58.32 - make DESTDIR=$install install && 58.33 - 58.34 - chmod -R u+w $install 58.35 + cook_perl 58.36 } 58.37 - 58.38 -genpkg_rules() { 58.39 - copy @std 58.40 - DEPENDS="perl-module-runtime" 58.41 -}
59.1 --- a/perl-email-date-format/receipt Thu Dec 06 20:27:31 2018 +0200 59.2 +++ b/perl-email-date-format/receipt Tue Dec 11 23:38:35 2018 +0200 59.3 @@ -1,28 +1,23 @@ 59.4 -# SliTaz package receipt. 59.5 +# SliTaz package receipt v2. 59.6 59.7 +ORIGIN="Email-Date-Format" 59.8 PACKAGE="perl-email-date-format" 59.9 VERSION="1.005" 59.10 +AUTHOR="RJBS" 59.11 CATEGORY="perl" 59.12 SHORT_DESC="Email::Date::Format - produce RFC 2822 date strings" 59.13 MAINTAINER="al.bobylev@gmail.com" 59.14 LICENSE="GPL" 59.15 -WEB_SITE="https://metacpan.org/release/Email-Date-Format" 59.16 -REPOLOGY="perl:email-date-format" 59.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 59.18 +HOST_ARCH="any" 59.19 +REPOLOGY="${PACKAGE/-/:}" 59.20 59.21 -TARBALL="Email-Date-Format-$VERSION.tar.gz" 59.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RJ/RJBS/$TARBALL" 59.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 59.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 59.25 59.26 -BUILD_DEPENDS="perl" 59.27 +DEPENDS_std="perl" 59.28 +BUILD_DEPENDS="$DEPENDS_std" 59.29 59.30 compile_rules() { 59.31 - perl Makefile.PL && 59.32 - make && 59.33 - make DESTDIR=$install install && 59.34 - 59.35 - chmod -R u+w $install 59.36 + cook_perl 59.37 } 59.38 - 59.39 -genpkg_rules() { 59.40 - copy @std 59.41 - DEPENDS="perl" 59.42 -}
60.1 --- a/perl-encode-locale/receipt Thu Dec 06 20:27:31 2018 +0200 60.2 +++ b/perl-encode-locale/receipt Tue Dec 11 23:38:35 2018 +0200 60.3 @@ -1,28 +1,23 @@ 60.4 # SliTaz package receipt v2. 60.5 60.6 +ORIGIN="Encode-Locale" 60.7 PACKAGE="perl-encode-locale" 60.8 VERSION="1.05" 60.9 +AUTHOR="GAAS" 60.10 CATEGORY="perl" 60.11 SHORT_DESC="Encode::Locale - Determine the locale encoding" 60.12 MAINTAINER="devel@slitaz.org" 60.13 LICENSE="GPL" 60.14 -WEB_SITE="https://metacpan.org/release/Encode-Locale" 60.15 -REPOLOGY="perl:encode-locale" 60.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 60.17 +HOST_ARCH="any" 60.18 +REPOLOGY="${PACKAGE/-/:}" 60.19 60.20 -TARBALL="Encode-Locale-$VERSION.tar.gz" 60.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 60.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 60.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 60.24 60.25 -BUILD_DEPENDS="perl" 60.26 +DEPENDS_std="perl" 60.27 +BUILD_DEPENDS="$DEPENDS_std" 60.28 60.29 compile_rules() { 60.30 - perl Makefile.PL && 60.31 - make && 60.32 - make DESTDIR=$install install && 60.33 - 60.34 - chmod -R u+w $install 60.35 + cook_perl 60.36 } 60.37 - 60.38 -genpkg_rules() { 60.39 - copy @std 60.40 - DEPENDS="perl" 60.41 -}
61.1 --- a/perl-eval-closure/receipt Thu Dec 06 20:27:31 2018 +0200 61.2 +++ b/perl-eval-closure/receipt Tue Dec 11 23:38:35 2018 +0200 61.3 @@ -1,28 +1,23 @@ 61.4 # SliTaz package receipt v2. 61.5 61.6 +ORIGIN="Eval-Closure" 61.7 PACKAGE="perl-eval-closure" 61.8 VERSION="0.14" 61.9 +AUTHOR="DOY" 61.10 CATEGORY="perl" 61.11 SHORT_DESC="Eval::Closure - safely and cleanly create closures via string eval" 61.12 MAINTAINER="al.bobylev@gmail.com" 61.13 LICENSE="GPL" 61.14 -WEB_SITE="https://metacpan.org/release/Eval-Closure" 61.15 -REPOLOGY="perl:eval-closure" 61.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 61.17 +HOST_ARCH="any" 61.18 +REPOLOGY="${PACKAGE/-/:}" 61.19 61.20 -TARBALL="Eval-Closure-$VERSION.tar.gz" 61.21 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DO/DOY/$TARBALL" 61.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 61.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 61.24 61.25 -BUILD_DEPENDS="perl" 61.26 +DEPENDS_std="perl" 61.27 +BUILD_DEPENDS="$DEPENDS_std" 61.28 61.29 compile_rules() { 61.30 - perl Makefile.PL && 61.31 - make && 61.32 - make DESTDIR=$install install && 61.33 - 61.34 - chmod -R u+w $install 61.35 + cook_perl 61.36 } 61.37 - 61.38 -genpkg_rules() { 61.39 - copy @std 61.40 - DEPENDS="perl" 61.41 -}
62.1 --- a/perl-event/receipt Thu Dec 06 20:27:31 2018 +0200 62.2 +++ b/perl-event/receipt Tue Dec 11 23:38:35 2018 +0200 62.3 @@ -1,29 +1,25 @@ 62.4 # SliTaz package receipt v2. 62.5 62.6 +ORIGIN="Event" 62.7 PACKAGE="perl-event" 62.8 -VERSION="1.26" 62.9 +VERSION="1.27" 62.10 +AUTHOR="ETJ" 62.11 CATEGORY="perl" 62.12 SHORT_DESC="Event - Event loop processing" 62.13 MAINTAINER="pascal.bellard@slitaz.org" 62.14 LICENSE="unknown" 62.15 -WEB_SITE="https://metacpan.org/release/Event" 62.16 -REPOLOGY="perl:event" 62.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 62.18 +REPOLOGY="${PACKAGE/-/:}" 62.19 62.20 -TARBALL="Event-$VERSION.tar.gz" 62.21 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETJ/$TARBALL" 62.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 62.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 62.24 62.25 -BUILD_DEPENDS="perl-dev" 62.26 +DEPENDS_std="perl" 62.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 62.28 + 62.29 +COPY_std="@std @dev" 62.30 +SUGGESTED_std="perl-time-hires" 62.31 62.32 compile_rules() { 62.33 - perl Makefile.PL && 62.34 - make && 62.35 - make DESTDIR=$install install && 62.36 - 62.37 - chmod -R u+w $install 62.38 + cook_perl 62.39 } 62.40 - 62.41 -genpkg_rules() { 62.42 - copy @std @dev 62.43 - DEPENDS="perl" 62.44 - SUGGESTED="perl-time-hires" 62.45 -}
63.1 --- a/perl-exception-class/receipt Thu Dec 06 20:27:31 2018 +0200 63.2 +++ b/perl-exception-class/receipt Tue Dec 11 23:38:35 2018 +0200 63.3 @@ -1,29 +1,24 @@ 63.4 -# SliTaz package receipt. 63.5 +# SliTaz package receipt v2. 63.6 63.7 +ORIGIN="Exception-Class" 63.8 PACKAGE="perl-exception-class" 63.9 VERSION="1.44" 63.10 +AUTHOR="DROLSKY" 63.11 CATEGORY="perl" 63.12 SHORT_DESC="Exception::Class - A module that allows you to declare real \ 63.13 exception classes in Perl" 63.14 MAINTAINER="al.bobylev@gmail.com" 63.15 LICENSE="GPL" 63.16 -WEB_SITE="https://metacpan.org/release/Exception-Class" 63.17 -REPOLOGY="perl:exception-class" 63.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 63.19 +HOST_ARCH="any" 63.20 +REPOLOGY="${PACKAGE/-/:}" 63.21 63.22 -TARBALL="Exception-Class-$VERSION.tar.gz" 63.23 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 63.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 63.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 63.26 63.27 -BUILD_DEPENDS="perl-class-data-inheritable perl-devel-stacktrace" 63.28 +DEPENDS_std="perl-class-data-inheritable perl-devel-stacktrace" 63.29 +BUILD_DEPENDS="$DEPENDS_std" 63.30 63.31 compile_rules() { 63.32 - perl Makefile.PL && 63.33 - make && 63.34 - make DESTDIR=$install install && 63.35 - 63.36 - chmod -R u+w $install 63.37 + cook_perl 63.38 } 63.39 - 63.40 -genpkg_rules() { 63.41 - copy @std 63.42 - DEPENDS="perl-class-data-inheritable perl-devel-stacktrace" 63.43 -}
64.1 --- a/perl-expect/receipt Thu Dec 06 20:27:31 2018 +0200 64.2 +++ b/perl-expect/receipt Tue Dec 11 23:38:35 2018 +0200 64.3 @@ -1,30 +1,26 @@ 64.4 # SliTaz package receipt v2. 64.5 64.6 +ORIGIN="Expect" 64.7 PACKAGE="perl-expect" 64.8 VERSION="1.35" 64.9 +AUTHOR="JACOBY" 64.10 CATEGORY="perl" 64.11 SHORT_DESC="Expect - automate interactions with command line programs that \ 64.12 expose a text terminal interface" 64.13 MAINTAINER="pascal.bellard@slitaz.org" 64.14 LICENSE="unknown" 64.15 -WEB_SITE="https://metacpan.org/release/Expect" 64.16 -REPOLOGY="perl:expect" 64.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 64.18 +HOST_ARCH="any" 64.19 +REPOLOGY="${PACKAGE/-/:}" 64.20 64.21 -TARBALL="Expect-$VERSION.tar.gz" 64.22 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JA/JACOBY/$TARBALL" 64.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 64.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 64.25 64.26 -BUILD_DEPENDS="perl-io-tty" 64.27 +DEPENDS_std="perl" 64.28 +BUILD_DEPENDS="$DEPENDS_std perl-io-tty" 64.29 + 64.30 +SUGGESTED_std="perl-io-stty" 64.31 64.32 compile_rules() { 64.33 - perl Makefile.PL && 64.34 - make && 64.35 - make DESTDIR=$install install && 64.36 - 64.37 - chmod -R u+w $install 64.38 + cook_perl 64.39 } 64.40 - 64.41 -genpkg_rules() { 64.42 - copy @std 64.43 - DEPENDS="perl" 64.44 - SUGGESTED="perl-io-stty" 64.45 -}
65.1 --- a/perl-exporter-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 65.2 +++ b/perl-exporter-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 65.3 @@ -1,29 +1,24 @@ 65.4 # SliTaz package receipt v2. 65.5 65.6 +ORIGIN="Exporter-Tiny" 65.7 PACKAGE="perl-exporter-tiny" 65.8 VERSION="1.002001" 65.9 +AUTHOR="TOBYINK" 65.10 CATEGORY="perl" 65.11 SHORT_DESC="Exporter::Tiny - an exporter with the features of Sub::Exporter \ 65.12 but only core dependencies" 65.13 MAINTAINER="devel@slitaz.org" 65.14 LICENSE="GPL" 65.15 -WEB_SITE="https://metacpan.org/release/Exporter-Tiny" 65.16 -REPOLOGY="perl:exporter-tiny" 65.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 65.18 +HOST_ARCH="any" 65.19 +REPOLOGY="${PACKAGE/-/:}" 65.20 65.21 -TARBALL="Exporter-Tiny-$VERSION.tar.gz" 65.22 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/$TARBALL" 65.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 65.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 65.25 65.26 -BUILD_DEPENDS="perl" 65.27 +DEPENDS_std="perl" 65.28 +BUILD_DEPENDS="$DEPENDS_std" 65.29 65.30 compile_rules() { 65.31 - perl Makefile.PL && 65.32 - make && 65.33 - make DESTDIR=$install install && 65.34 - 65.35 - chmod -R u+w $install 65.36 + cook_perl 65.37 } 65.38 - 65.39 -genpkg_rules() { 65.40 - copy @std 65.41 - DEPENDS="perl" 65.42 -}
66.1 --- a/perl-extutils-config/receipt Thu Dec 06 20:27:31 2018 +0200 66.2 +++ b/perl-extutils-config/receipt Tue Dec 11 23:38:35 2018 +0200 66.3 @@ -1,28 +1,23 @@ 66.4 -# SliTaz package receipt. 66.5 +# SliTaz package receipt v2. 66.6 66.7 +ORIGIN="ExtUtils-Config" 66.8 PACKAGE="perl-extutils-config" 66.9 VERSION="0.008" 66.10 +AUTHOR="LEONT" 66.11 CATEGORY="perl" 66.12 SHORT_DESC="ExtUtils::Config - A wrapper for perl's configuration" 66.13 MAINTAINER="al.bobylev@gmail.com" 66.14 LICENSE="GPL" 66.15 -WEB_SITE="https://metacpan.org/release/ExtUtils-Config" 66.16 -REPOLOGY="perl:extutils-config" 66.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 66.18 +HOST_ARCH="any" 66.19 +REPOLOGY="${PACKAGE/-/:}" 66.20 66.21 -TARBALL="ExtUtils-Config-$VERSION.tar.gz" 66.22 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LE/LEONT/$TARBALL" 66.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 66.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 66.25 66.26 -BUILD_DEPENDS="perl" 66.27 +DEPENDS_std="perl" 66.28 +BUILD_DEPENDS="$DEPENDS_std" 66.29 66.30 compile_rules() { 66.31 - perl Makefile.PL && 66.32 - make && 66.33 - make DESTDIR=$install install && 66.34 - 66.35 - chmod -R u+w $install 66.36 + cook_perl 66.37 } 66.38 - 66.39 -genpkg_rules() { 66.40 - copy @std 66.41 - DEPENDS="perl" 66.42 -}
67.1 --- a/perl-extutils-depends/receipt Thu Dec 06 20:27:31 2018 +0200 67.2 +++ b/perl-extutils-depends/receipt Tue Dec 11 23:38:35 2018 +0200 67.3 @@ -1,29 +1,24 @@ 67.4 -# SliTaz package receipt. 67.5 +# SliTaz package receipt v2. 67.6 67.7 +ORIGIN="ExtUtils-Depends" 67.8 PACKAGE="perl-extutils-depends" 67.9 VERSION="0.405" 67.10 +AUTHOR="XAOC" 67.11 CATEGORY="perl" 67.12 SHORT_DESC="ExtUtils::Depends - Easily build XS extensions that depend on XS \ 67.13 extensions" 67.14 MAINTAINER="claudinei@slitaz.org" 67.15 LICENSE="GPL" 67.16 -WEB_SITE="https://metacpan.org/release/ExtUtils-Depends" 67.17 -REPOLOGY="perl:extutils-depends" 67.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 67.19 +HOST_ARCH="any" 67.20 +REPOLOGY="${PACKAGE/-/:}" 67.21 67.22 -TARBALL="ExtUtils-Depends-$VERSION.tar.gz" 67.23 -WGET_URL="https://cpan.metacpan.org/authors/id/X/XA/XAOC/$TARBALL" 67.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 67.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 67.26 67.27 -BUILD_DEPENDS="perl" 67.28 +DEPENDS_std="perl" 67.29 +BUILD_DEPENDS="$DEPENDS_std" 67.30 67.31 compile_rules() { 67.32 - perl Makefile.PL && 67.33 - make && 67.34 - make DESTDIR=$install install && 67.35 - 67.36 - chmod -R u+w $install 67.37 + cook_perl 67.38 } 67.39 - 67.40 -genpkg_rules() { 67.41 - copy @std 67.42 - DEPENDS="perl" 67.43 -}
68.1 --- a/perl-extutils-helpers/receipt Thu Dec 06 20:27:31 2018 +0200 68.2 +++ b/perl-extutils-helpers/receipt Tue Dec 11 23:38:35 2018 +0200 68.3 @@ -1,29 +1,24 @@ 68.4 -# SliTaz package receipt. 68.5 +# SliTaz package receipt v2. 68.6 68.7 +ORIGIN="ExtUtils-Helpers" 68.8 PACKAGE="perl-extutils-helpers" 68.9 VERSION="0.026" 68.10 +AUTHOR="LEONT" 68.11 CATEGORY="perl" 68.12 SHORT_DESC="ExtUtils::Helpers - Various portability utilities for module \ 68.13 builders" 68.14 MAINTAINER="al.bobylev@gmail.com" 68.15 LICENSE="GPL" 68.16 -WEB_SITE="https://metacpan.org/release/ExtUtils-Helpers" 68.17 -REPOLOGY="perl:extutils-helpers" 68.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 68.19 +HOST_ARCH="any" 68.20 +REPOLOGY="${PACKAGE/-/:}" 68.21 68.22 -TARBALL="ExtUtils-Helpers-$VERSION.tar.gz" 68.23 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LE/LEONT/$TARBALL" 68.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 68.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 68.26 68.27 -BUILD_DEPENDS="perl" 68.28 +DEPENDS_std="perl" 68.29 +BUILD_DEPENDS="$DEPENDS_std" 68.30 68.31 compile_rules() { 68.32 - perl Makefile.PL && 68.33 - make && 68.34 - make DESTDIR=$install install && 68.35 - 68.36 - chmod -R u+w $install 68.37 + cook_perl 68.38 } 68.39 - 68.40 -genpkg_rules() { 68.41 - copy @std 68.42 - DEPENDS="perl" 68.43 -}
69.1 --- a/perl-extutils-installpaths/receipt Thu Dec 06 20:27:31 2018 +0200 69.2 +++ b/perl-extutils-installpaths/receipt Tue Dec 11 23:38:35 2018 +0200 69.3 @@ -1,28 +1,23 @@ 69.4 -# SliTaz package receipt. 69.5 +# SliTaz package receipt v2. 69.6 69.7 +ORIGIN="ExtUtils-InstallPaths" 69.8 PACKAGE="perl-extutils-installpaths" 69.9 VERSION="0.012" 69.10 +AUTHOR="LEONT" 69.11 CATEGORY="perl" 69.12 SHORT_DESC="ExtUtils::InstallPaths - Build.PL install path logic made easy" 69.13 MAINTAINER="al.bobylev@gmail.com" 69.14 LICENSE="GPL" 69.15 -WEB_SITE="https://metacpan.org/release/ExtUtils-InstallPaths" 69.16 -REPOLOGY="perl:extutils-installpaths" 69.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 69.18 +HOST_ARCH="any" 69.19 +REPOLOGY="${PACKAGE/-/:}" 69.20 69.21 -TARBALL="ExtUtils-InstallPaths-$VERSION.tar.gz" 69.22 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LE/LEONT/$TARBALL" 69.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 69.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 69.25 69.26 -BUILD_DEPENDS="perl-extutils-config" 69.27 +DEPENDS_std="perl-extutils-config" 69.28 +BUILD_DEPENDS="$DEPENDS_std" 69.29 69.30 compile_rules() { 69.31 - perl Makefile.PL && 69.32 - make && 69.33 - make DESTDIR=$install install && 69.34 - 69.35 - chmod -R u+w $install 69.36 + cook_perl 69.37 } 69.38 - 69.39 -genpkg_rules() { 69.40 - copy @std 69.41 - DEPENDS="perl-extutils-config" 69.42 -}
70.1 --- a/perl-extutils-pkgconfig/receipt Thu Dec 06 20:27:31 2018 +0200 70.2 +++ b/perl-extutils-pkgconfig/receipt Tue Dec 11 23:38:35 2018 +0200 70.3 @@ -1,28 +1,23 @@ 70.4 # SliTaz package receipt v2. 70.5 70.6 +ORIGIN="ExtUtils-PkgConfig" 70.7 PACKAGE="perl-extutils-pkgconfig" 70.8 VERSION="1.16" 70.9 +AUTHOR="XAOC" 70.10 CATEGORY="perl" 70.11 SHORT_DESC="ExtUtils::PkgConfig - simplistic interface to pkg-config" 70.12 MAINTAINER="claudinei@slitaz.org" 70.13 LICENSE="LGPL2.1" 70.14 -WEB_SITE="https://metacpan.org/release/ExtUtils-PkgConfig" 70.15 -REPOLOGY="perl:extutils-pkgconfig" 70.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 70.17 +HOST_ARCH="any" 70.18 +REPOLOGY="${PACKAGE/-/:}" 70.19 70.20 -TARBALL="ExtUtils-PkgConfig-$VERSION.tar.gz" 70.21 -WGET_URL="https://cpan.metacpan.org/authors/id/X/XA/XAOC/$TARBALL" 70.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 70.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 70.24 70.25 -BUILD_DEPENDS="perl pkg-config" 70.26 +DEPENDS_std="perl pkg-config" 70.27 +BUILD_DEPENDS="$DEPENDS_std" 70.28 70.29 compile_rules() { 70.30 - perl Makefile.PL && 70.31 - make && 70.32 - make DESTDIR=$install install && 70.33 - 70.34 - chmod -R u+w $install 70.35 + cook_perl 70.36 } 70.37 - 70.38 -genpkg_rules() { 70.39 - copy @std 70.40 - DEPENDS="perl pkg-config" 70.41 -}
71.1 --- a/perl-fcgi-procmanager/receipt Thu Dec 06 20:27:31 2018 +0200 71.2 +++ b/perl-fcgi-procmanager/receipt Tue Dec 11 23:38:35 2018 +0200 71.3 @@ -1,28 +1,23 @@ 71.4 # SliTaz package receipt v2. 71.5 71.6 +ORIGIN="FCGI-ProcManager" 71.7 PACKAGE="perl-fcgi-procmanager" 71.8 VERSION="0.28" 71.9 +AUTHOR="ARODLAND" 71.10 CATEGORY="perl" 71.11 SHORT_DESC="FCGI::ProcManager - functions for managing FastCGI applications" 71.12 MAINTAINER="devel@slitaz.org" 71.13 LICENSE="GPL" 71.14 -WEB_SITE="https://metacpan.org/release/FCGI-ProcManager" 71.15 -REPOLOGY="perl:fcgi-procmanager" 71.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 71.17 +HOST_ARCH="any" 71.18 +REPOLOGY="${PACKAGE/-/:}" 71.19 71.20 -TARBALL="FCGI-ProcManager-$VERSION.tar.gz" 71.21 -WGET_URL="https://cpan.metacpan.org/authors/id/A/AR/ARODLAND/$TARBALL" 71.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 71.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 71.24 71.25 -BUILD_DEPENDS="perl" 71.26 +DEPENDS_std="perl" 71.27 +BUILD_DEPENDS="$DEPENDS_std" 71.28 71.29 compile_rules() { 71.30 - perl Makefile.PL && 71.31 - make && 71.32 - make DESTDIR=$install install && 71.33 - 71.34 - chmod -R u+w $install 71.35 + cook_perl 71.36 } 71.37 - 71.38 -genpkg_rules() { 71.39 - copy @std 71.40 - DEPENDS="perl" 71.41 -}
72.1 --- a/perl-fcgi/receipt Thu Dec 06 20:27:31 2018 +0200 72.2 +++ b/perl-fcgi/receipt Tue Dec 11 23:38:35 2018 +0200 72.3 @@ -1,28 +1,22 @@ 72.4 -# SliTaz package receipt. 72.5 +# SliTaz package receipt v2. 72.6 72.7 +ORIGIN="FCGI" 72.8 PACKAGE="perl-fcgi" 72.9 VERSION="0.78" 72.10 +AUTHOR="ETHER" 72.11 CATEGORY="perl" 72.12 SHORT_DESC="FCGI - Fast CGI module" 72.13 MAINTAINER="devel@slitaz.org" 72.14 LICENSE="unknown" 72.15 -WEB_SITE="https://metacpan.org/release/FCGI" 72.16 -REPOLOGY="perl:fcgi" 72.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 72.18 +REPOLOGY="${PACKAGE/-/:}" 72.19 72.20 -TARBALL="FCGI-$VERSION.tar.gz" 72.21 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 72.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 72.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 72.24 72.25 -BUILD_DEPENDS="perl-dev" 72.26 +DEPENDS_std="perl" 72.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 72.28 72.29 compile_rules() { 72.30 - perl Makefile.PL && 72.31 - make && 72.32 - make DESTDIR=$install install && 72.33 - 72.34 - chmod -R u+w $install 72.35 + cook_perl 72.36 } 72.37 - 72.38 -genpkg_rules() { 72.39 - copy @std 72.40 - DEPENDS="perl" 72.41 -}
73.1 --- a/perl-file-basedir/receipt Thu Dec 06 20:27:31 2018 +0200 73.2 +++ b/perl-file-basedir/receipt Tue Dec 11 23:38:35 2018 +0200 73.3 @@ -1,29 +1,24 @@ 73.4 -# SliTaz package receipt. 73.5 +# SliTaz package receipt v2. 73.6 73.7 +ORIGIN="File-BaseDir" 73.8 PACKAGE="perl-file-basedir" 73.9 VERSION="0.08" 73.10 +AUTHOR="KIMRYAN" 73.11 CATEGORY="perl" 73.12 SHORT_DESC="File::BaseDir - Use the Freedesktop.org base directory \ 73.13 specification" 73.14 MAINTAINER="paul@slitaz.org" 73.15 LICENSE="GPL" 73.16 -WEB_SITE="https://metacpan.org/release/File-BaseDir" 73.17 -REPOLOGY="perl:file-basedir" 73.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 73.19 +HOST_ARCH="any" 73.20 +REPOLOGY="${PACKAGE/-/:}" 73.21 73.22 -TARBALL="File-BaseDir-$VERSION.tar.gz" 73.23 -WGET_URL="https://cpan.metacpan.org/authors/id/K/KI/KIMRYAN/$TARBALL" 73.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 73.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 73.26 73.27 -BUILD_DEPENDS="perl-ipc-system-simple perl-module-build perl-file-which" 73.28 +DEPENDS_std="perl-ipc-system-simple" 73.29 +BUILD_DEPENDS="$DEPENDS_std perl-module-build perl-file-which" 73.30 73.31 compile_rules() { 73.32 - perl Makefile.PL && 73.33 - make && 73.34 - make DESTDIR=$install install && 73.35 - 73.36 - chmod -R u+w $install 73.37 + cook_perl 73.38 } 73.39 - 73.40 -genpkg_rules() { 73.41 - copy @std 73.42 - DEPENDS="perl-ipc-system-simple" 73.43 -}
74.1 --- a/perl-file-copy-recursive/receipt Thu Dec 06 20:27:31 2018 +0200 74.2 +++ b/perl-file-copy-recursive/receipt Tue Dec 11 23:38:35 2018 +0200 74.3 @@ -1,29 +1,24 @@ 74.4 -# SliTaz package receipt. 74.5 +# SliTaz package receipt v2. 74.6 74.7 +ORIGIN="File-Copy-Recursive" 74.8 PACKAGE="perl-file-copy-recursive" 74.9 VERSION="0.44" 74.10 +AUTHOR="DMUEY" 74.11 CATEGORY="perl" 74.12 SHORT_DESC="File::Copy::Recursive - Perl extension for recursively copying \ 74.13 files and directories" 74.14 MAINTAINER="al.bobylev@gmail.com" 74.15 LICENSE="GPL" 74.16 -WEB_SITE="https://metacpan.org/release/File-Copy-Recursive" 74.17 -REPOLOGY="perl:file-copy-recursive" 74.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 74.19 +HOST_ARCH="any" 74.20 +REPOLOGY="${PACKAGE/-/:}" 74.21 74.22 -TARBALL="File-Copy-Recursive-$VERSION.tar.gz" 74.23 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DM/DMUEY/$TARBALL" 74.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 74.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 74.26 74.27 -BUILD_DEPENDS="perl" 74.28 +DEPENDS_std="perl" 74.29 +BUILD_DEPENDS="$DEPENDS_std" 74.30 74.31 compile_rules() { 74.32 - perl Makefile.PL && 74.33 - make && 74.34 - make DESTDIR=$install install && 74.35 - 74.36 - chmod -R u+w $install 74.37 + cook_perl 74.38 } 74.39 - 74.40 -genpkg_rules() { 74.41 - copy @std 74.42 - DEPENDS="perl" 74.43 -}
75.1 --- a/perl-file-desktopentry/receipt Thu Dec 06 20:27:31 2018 +0200 75.2 +++ b/perl-file-desktopentry/receipt Tue Dec 11 23:38:35 2018 +0200 75.3 @@ -1,28 +1,23 @@ 75.4 -# SliTaz package receipt. 75.5 +# SliTaz package receipt v2. 75.6 75.7 +ORIGIN="File-DesktopEntry" 75.8 PACKAGE="perl-file-desktopentry" 75.9 VERSION="0.22" 75.10 +AUTHOR="MICHIELB" 75.11 CATEGORY="perl" 75.12 SHORT_DESC="File::DesktopEntry - Object to handle .desktop files" 75.13 MAINTAINER="paul@slitaz.org" 75.14 LICENSE="GPL" 75.15 -WEB_SITE="https://metacpan.org/release/File-DesktopEntry" 75.16 -REPOLOGY="perl:file-desktopentry" 75.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 75.18 +HOST_ARCH="any" 75.19 +REPOLOGY="${PACKAGE/-/:}" 75.20 75.21 -TARBALL="File-DesktopEntry-$VERSION.tar.gz" 75.22 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MI/MICHIELB/$TARBALL" 75.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 75.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 75.25 75.26 -BUILD_DEPENDS="perl-file-basedir perl-uri" 75.27 +DEPENDS_std="perl-file-basedir perl-uri" 75.28 +BUILD_DEPENDS="$DEPENDS_std" 75.29 75.30 compile_rules() { 75.31 - perl Makefile.PL && 75.32 - make && 75.33 - make DESTDIR=$install install && 75.34 - 75.35 - chmod -R u+w $install 75.36 + cook_perl 75.37 } 75.38 - 75.39 -genpkg_rules() { 75.40 - copy @std 75.41 - DEPENDS="perl-file-basedir perl-uri" 75.42 -}
76.1 --- a/perl-file-find-rule/receipt Thu Dec 06 20:27:31 2018 +0200 76.2 +++ b/perl-file-find-rule/receipt Tue Dec 11 23:38:35 2018 +0200 76.3 @@ -1,28 +1,23 @@ 76.4 -# SliTaz package receipt. 76.5 +# SliTaz package receipt v2. 76.6 76.7 +ORIGIN="File-Find-Rule" 76.8 PACKAGE="perl-file-find-rule" 76.9 VERSION="0.34" 76.10 +AUTHOR="RCLAMP" 76.11 CATEGORY="perl" 76.12 SHORT_DESC="File::Find::Rule - Alternative interface to File::Find" 76.13 MAINTAINER="devel@slitaz.org" 76.14 LICENSE="GPL" 76.15 -WEB_SITE="https://metacpan.org/release/File-Find-Rule" 76.16 -REPOLOGY="perl:file-find-rule" 76.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 76.18 +HOST_ARCH="any" 76.19 +REPOLOGY="${PACKAGE/-/:}" 76.20 76.21 -TARBALL="File-Find-Rule-$VERSION.tar.gz" 76.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/$TARBALL" 76.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 76.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 76.25 76.26 -BUILD_DEPENDS="perl-number-compare perl-text-glob" 76.27 +DEPENDS_std="perl-number-compare perl-text-glob" 76.28 +BUILD_DEPENDS="$DEPENDS_std" 76.29 76.30 compile_rules() { 76.31 - perl Makefile.PL && 76.32 - make && 76.33 - make DESTDIR=$install install && 76.34 - 76.35 - chmod -R u+w $install 76.36 + cook_perl 76.37 } 76.38 - 76.39 -genpkg_rules() { 76.40 - copy @std 76.41 - DEPENDS="perl-number-compare perl-text-glob" 76.42 -}
77.1 --- a/perl-file-listing/receipt Thu Dec 06 20:27:31 2018 +0200 77.2 +++ b/perl-file-listing/receipt Tue Dec 11 23:38:35 2018 +0200 77.3 @@ -1,28 +1,23 @@ 77.4 # SliTaz package receipt v2. 77.5 77.6 +ORIGIN="File-Listing" 77.7 PACKAGE="perl-file-listing" 77.8 VERSION="6.04" 77.9 +AUTHOR="GAAS" 77.10 CATEGORY="perl" 77.11 SHORT_DESC="File::Listing - parse directory listing" 77.12 MAINTAINER="devel@slitaz.org" 77.13 LICENSE="GPL" 77.14 -WEB_SITE="https://metacpan.org/release/File-Listing" 77.15 -REPOLOGY="perl:file-listing" 77.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 77.17 +HOST_ARCH="any" 77.18 +REPOLOGY="${PACKAGE/-/:}" 77.19 77.20 -TARBALL="File-Listing-$VERSION.tar.gz" 77.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 77.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 77.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 77.24 77.25 -BUILD_DEPENDS="perl-http-date" 77.26 +DEPENDS_std="perl-http-date" 77.27 +BUILD_DEPENDS="$DEPENDS_std" 77.28 77.29 compile_rules() { 77.30 - perl Makefile.PL && 77.31 - make && 77.32 - make DESTDIR=$install install && 77.33 - 77.34 - chmod -R u+w $install 77.35 + cook_perl 77.36 } 77.37 - 77.38 -genpkg_rules() { 77.39 - copy @std 77.40 - DEPENDS="$BUILD_DEPENDS" 77.41 -}
78.1 --- a/perl-file-mimeinfo/receipt Thu Dec 06 20:27:31 2018 +0200 78.2 +++ b/perl-file-mimeinfo/receipt Tue Dec 11 23:38:35 2018 +0200 78.3 @@ -1,28 +1,23 @@ 78.4 # SliTaz package receipt v2. 78.5 78.6 +ORIGIN="File-MimeInfo" 78.7 PACKAGE="perl-file-mimeinfo" 78.8 VERSION="0.29" 78.9 +AUTHOR="MICHIELB" 78.10 CATEGORY="perl" 78.11 SHORT_DESC="File::MimeInfo - Determine file type from the file name" 78.12 MAINTAINER="paul@slitaz.org" 78.13 LICENSE="GPL" 78.14 -WEB_SITE="https://metacpan.org/release/File-MimeInfo" 78.15 -REPOLOGY="perl:file-mimeinfo" 78.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 78.17 +HOST_ARCH="any" 78.18 +REPOLOGY="${PACKAGE/-/:}" 78.19 78.20 -TARBALL="File-MimeInfo-$VERSION.tar.gz" 78.21 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MI/MICHIELB/$TARBALL" 78.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 78.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 78.24 78.25 -BUILD_DEPENDS="perl-file-basedir perl-file-desktopentry" 78.26 +DEPENDS_std="perl" 78.27 +BUILD_DEPENDS="$DEPENDS_std perl-file-basedir perl-file-desktopentry" 78.28 78.29 compile_rules() { 78.30 - perl Makefile.PL && 78.31 - make && 78.32 - make DESTDIR=$install install && 78.33 - 78.34 - chmod -R u+w $install 78.35 + cook_perl 78.36 } 78.37 - 78.38 -genpkg_rules() { 78.39 - copy @std 78.40 - DEPENDS="perl" 78.41 -}
79.1 --- a/perl-file-remove/receipt Thu Dec 06 20:27:31 2018 +0200 79.2 +++ b/perl-file-remove/receipt Tue Dec 11 23:38:35 2018 +0200 79.3 @@ -1,29 +1,23 @@ 79.4 # SliTaz package receipt v2. 79.5 79.6 +ORIGIN="File-Remove" 79.7 PACKAGE="perl-file-remove" 79.8 VERSION="1.58" 79.9 +AUTHOR="SHLOMIF" 79.10 CATEGORY="perl" 79.11 SHORT_DESC="File::Remove - Remove files and directories" 79.12 MAINTAINER="al.bobylev@gmail.com" 79.13 LICENSE="GPL" 79.14 -WEB_SITE="https://metacpan.org/release/File-Remove" 79.15 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 79.16 HOST_ARCH="any" 79.17 -REPOLOGY="perl:file-remove" 79.18 +REPOLOGY="${PACKAGE/-/:}" 79.19 79.20 -TARBALL="File-Remove-$VERSION.tar.gz" 79.21 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/$TARBALL" 79.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 79.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 79.24 79.25 -BUILD_DEPENDS="perl" 79.26 +DEPENDS_std="perl" 79.27 +BUILD_DEPENDS="$DEPENDS_std" 79.28 79.29 compile_rules() { 79.30 - perl Makefile.PL && 79.31 - make && 79.32 - make DESTDIR=$install install && 79.33 - 79.34 - chmod -R u+w $install 79.35 + cook_perl 79.36 } 79.37 - 79.38 -genpkg_rules() { 79.39 - copy @std 79.40 - DEPENDS="perl" 79.41 -}
80.1 --- a/perl-file-rsyncp/receipt Thu Dec 06 20:27:31 2018 +0200 80.2 +++ b/perl-file-rsyncp/receipt Tue Dec 11 23:38:35 2018 +0200 80.3 @@ -1,28 +1,22 @@ 80.4 # SliTaz package receipt v2. 80.5 80.6 +ORIGIN="File-RsyncP" 80.7 PACKAGE="perl-file-rsyncp" 80.8 VERSION="0.74" 80.9 +AUTHOR="CBARRATT" 80.10 CATEGORY="perl" 80.11 SHORT_DESC="File::RsyncP - Perl Rsync client" 80.12 MAINTAINER="devel@slitaz.org" 80.13 LICENSE="GPL" 80.14 -WEB_SITE="https://metacpan.org/release/File-RsyncP" 80.15 -REPOLOGY="perl:file-rsyncp" 80.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 80.17 +REPOLOGY="${PACKAGE/-/:}" 80.18 80.19 -TARBALL="File-RsyncP-$VERSION.tar.gz" 80.20 -WGET_URL="https://cpan.metacpan.org/authors/id/C/CB/CBARRATT/$TARBALL" 80.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 80.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 80.23 80.24 -BUILD_DEPENDS="perl-dev" 80.25 +DEPENDS_std="perl rsync" 80.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 80.27 80.28 compile_rules() { 80.29 - perl Makefile.PL && 80.30 - make -j1 && 80.31 - make -j1 DESTDIR=$install install && 80.32 - 80.33 - chmod -R u+w $install 80.34 + cook_perl "" "-j1" "-j1" 80.35 } 80.36 - 80.37 -genpkg_rules() { 80.38 - copy @std 80.39 - DEPENDS="perl rsync" 80.40 -}
81.1 --- a/perl-file-sharedir-install/receipt Thu Dec 06 20:27:31 2018 +0200 81.2 +++ b/perl-file-sharedir-install/receipt Tue Dec 11 23:38:35 2018 +0200 81.3 @@ -1,28 +1,23 @@ 81.4 -# SliTaz package receipt. 81.5 +# SliTaz package receipt v2. 81.6 81.7 +ORIGIN="File-ShareDir-Install" 81.8 PACKAGE="perl-file-sharedir-install" 81.9 VERSION="0.13" 81.10 +AUTHOR="ETHER" 81.11 CATEGORY="perl" 81.12 SHORT_DESC="File::ShareDir::Install - Install shared files" 81.13 MAINTAINER="al.bobylev@gmail.com" 81.14 LICENSE="GPL" 81.15 -WEB_SITE="https://metacpan.org/release/File-ShareDir-Install" 81.16 -REPOLOGY="perl:file-sharedir-install" 81.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 81.18 +HOST_ARCH="any" 81.19 +REPOLOGY="${PACKAGE/-/:}" 81.20 81.21 -TARBALL="File-ShareDir-Install-$VERSION.tar.gz" 81.22 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 81.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 81.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 81.25 81.26 -BUILD_DEPENDS="perl-module-build-tiny" 81.27 +DEPENDS_std="perl" 81.28 +BUILD_DEPENDS="$DEPENDS_std perl-module-build-tiny" 81.29 81.30 compile_rules() { 81.31 - perl Makefile.PL && 81.32 - make && 81.33 - make DESTDIR=$install install && 81.34 - 81.35 - chmod -R u+w $install 81.36 + cook_perl 81.37 } 81.38 - 81.39 -genpkg_rules() { 81.40 - copy @std 81.41 - DEPENDS="perl" 81.42 -}
82.1 --- a/perl-file-sharedir/receipt Thu Dec 06 20:27:31 2018 +0200 82.2 +++ b/perl-file-sharedir/receipt Tue Dec 11 23:38:35 2018 +0200 82.3 @@ -1,28 +1,23 @@ 82.4 # SliTaz package receipt v2. 82.5 82.6 +ORIGIN="File-ShareDir" 82.7 PACKAGE="perl-file-sharedir" 82.8 VERSION="1.116" 82.9 +AUTHOR="REHSACK" 82.10 CATEGORY="perl" 82.11 SHORT_DESC="File::ShareDir - Locate per-dist and per-module shared files" 82.12 MAINTAINER="al.bobylev@gmail.com" 82.13 LICENSE="GPL" 82.14 -WEB_SITE="https://metacpan.org/release/File-ShareDir" 82.15 -REPOLOGY="perl:file-sharedir" 82.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 82.17 +HOST_ARCH="any" 82.18 +REPOLOGY="${PACKAGE/-/:}" 82.19 82.20 -TARBALL="File-ShareDir-$VERSION.tar.gz" 82.21 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RE/REHSACK/$TARBALL" 82.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 82.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 82.24 82.25 -BUILD_DEPENDS="perl-class-inspector" 82.26 +DEPENDS_std="perl-class-inspector" 82.27 +BUILD_DEPENDS="$DEPENDS_std" 82.28 82.29 compile_rules() { 82.30 - perl Makefile.PL && 82.31 - make && 82.32 - make DESTDIR=$install install && 82.33 - 82.34 - chmod -R u+w $install 82.35 + cook_perl 82.36 } 82.37 - 82.38 -genpkg_rules() { 82.39 - copy @std 82.40 - DEPENDS="perl-class-inspector" 82.41 -}
83.1 --- a/perl-file-slurp/receipt Thu Dec 06 20:27:31 2018 +0200 83.2 +++ b/perl-file-slurp/receipt Tue Dec 11 23:38:35 2018 +0200 83.3 @@ -1,30 +1,24 @@ 83.4 # SliTaz package receipt v2. 83.5 83.6 +ORIGIN="File-Slurp" 83.7 PACKAGE="perl-file-slurp" 83.8 -VERSION="9999.21" 83.9 +VERSION="9999.25" 83.10 +AUTHOR="CAPOEIRAB" 83.11 CATEGORY="perl" 83.12 SHORT_DESC="File::Slurp - Simple and Efficient Reading/Writing/Modifying of \ 83.13 Complete Files" 83.14 MAINTAINER="devel@slitaz.org" 83.15 LICENSE="GPL" 83.16 -WEB_SITE="https://metacpan.org/release/File-Slurp" 83.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 83.18 HOST_ARCH="any" 83.19 -REPOLOGY="perl:file-slurp" 83.20 +REPOLOGY="${PACKAGE/-/:}" 83.21 83.22 -TARBALL="File-Slurp-$VERSION.tar.gz" 83.23 -WGET_URL="https://cpan.metacpan.org/authors/id/C/CA/CAPOEIRAB/$TARBALL" 83.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 83.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 83.26 83.27 -BUILD_DEPENDS="perl" 83.28 +DEPENDS_std="perl" 83.29 +BUILD_DEPENDS="$DEPENDS_std" 83.30 83.31 compile_rules() { 83.32 - perl Makefile.PL && 83.33 - make && 83.34 - make DESTDIR=$install install && 83.35 - 83.36 - chmod -R u+w $install 83.37 + cook_perl 83.38 } 83.39 - 83.40 -genpkg_rules() { 83.41 - copy @std 83.42 - DEPENDS="perl" 83.43 -}
84.1 --- a/perl-file-slurper/receipt Thu Dec 06 20:27:31 2018 +0200 84.2 +++ b/perl-file-slurper/receipt Tue Dec 11 23:38:35 2018 +0200 84.3 @@ -1,28 +1,23 @@ 84.4 # SliTaz package receipt v2. 84.5 84.6 +ORIGIN="File-Slurper" 84.7 PACKAGE="perl-file-slurper" 84.8 VERSION="0.012" 84.9 +AUTHOR="LEONT" 84.10 CATEGORY="perl" 84.11 SHORT_DESC="File::Slurper - A simple, sane and efficient module to slurp a file" 84.12 MAINTAINER="al.bobylev@gmail.com" 84.13 LICENSE="GPL" 84.14 -WEB_SITE="https://metacpan.org/release/File-Slurper" 84.15 -REPOLOGY="perl:file-slurper" 84.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 84.17 +HOST_ARCH="any" 84.18 +REPOLOGY="${PACKAGE/-/:}" 84.19 84.20 -TARBALL="File-Slurper-$VERSION.tar.gz" 84.21 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LE/LEONT/$TARBALL" 84.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 84.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 84.24 84.25 -BUILD_DEPENDS="perl" 84.26 +DEPENDS_std="perl" 84.27 +BUILD_DEPENDS="$DEPENDS_std" 84.28 84.29 compile_rules() { 84.30 - perl Makefile.PL && 84.31 - make && 84.32 - make DESTDIR=$install install && 84.33 - 84.34 - chmod -R u+w $install 84.35 + cook_perl 84.36 } 84.37 - 84.38 -genpkg_rules() { 84.39 - copy @std 84.40 - DEPENDS="perl" 84.41 -}
85.1 --- a/perl-file-tail/receipt Thu Dec 06 20:27:31 2018 +0200 85.2 +++ b/perl-file-tail/receipt Tue Dec 11 23:38:35 2018 +0200 85.3 @@ -1,29 +1,24 @@ 85.4 -# SliTaz package receipt. 85.5 +# SliTaz package receipt v2. 85.6 85.7 +ORIGIN="File-Tail" 85.8 PACKAGE="perl-file-tail" 85.9 VERSION="1.3" 85.10 +AUTHOR="MGRABNAR" 85.11 CATEGORY="perl" 85.12 SHORT_DESC="File::Tail - Perl extension for reading from continously updated \ 85.13 files" 85.14 MAINTAINER="pascal.bellard@slitaz.org" 85.15 LICENSE="GPL" 85.16 -WEB_SITE="https://metacpan.org/release/File-Tail" 85.17 -REPOLOGY="perl:file-tail" 85.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 85.19 +HOST_ARCH="any" 85.20 +REPOLOGY="${PACKAGE/-/:}" 85.21 85.22 -TARBALL="File-Tail-$VERSION.tar.gz" 85.23 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MG/MGRABNAR/$TARBALL" 85.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 85.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 85.26 85.27 -BUILD_DEPENDS="perl" 85.28 +DEPENDS_std="perl" 85.29 +BUILD_DEPENDS="$DEPENDS_std" 85.30 85.31 compile_rules() { 85.32 - perl Makefile.PL && 85.33 - make && 85.34 - make DESTDIR=$install install && 85.35 - 85.36 - chmod -R u+w $install 85.37 + cook_perl 85.38 } 85.39 - 85.40 -genpkg_rules() { 85.41 - copy @std 85.42 - DEPENDS="perl" 85.43 -}
86.1 --- a/perl-file-which/receipt Thu Dec 06 20:27:31 2018 +0200 86.2 +++ b/perl-file-which/receipt Tue Dec 11 23:38:35 2018 +0200 86.3 @@ -1,28 +1,23 @@ 86.4 -# SliTaz package receipt. 86.5 +# SliTaz package receipt v2. 86.6 86.7 +ORIGIN="File-Which" 86.8 PACKAGE="perl-file-which" 86.9 VERSION="1.22" 86.10 +AUTHOR="PLICEASE" 86.11 CATEGORY="perl" 86.12 SHORT_DESC="File::Which - Perl implementation of the which utility as an API" 86.13 MAINTAINER="al.bobylev@gmail.com" 86.14 LICENSE="GPL" 86.15 -WEB_SITE="https://metacpan.org/release/File-Which" 86.16 -REPOLOGY="perl:file-which" 86.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 86.18 +HOST_ARCH="any" 86.19 +REPOLOGY="${PACKAGE/-/:}" 86.20 86.21 -TARBALL="File-Which-$VERSION.tar.gz" 86.22 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/$TARBALL" 86.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 86.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 86.25 86.26 -BUILD_DEPENDS="perl" 86.27 +DEPENDS_std="perl" 86.28 +BUILD_DEPENDS="$DEPENDS_std" 86.29 86.30 compile_rules() { 86.31 - perl Makefile.PL && 86.32 - make && 86.33 - make DESTDIR=$install install && 86.34 - 86.35 - chmod -R u+w $install 86.36 + cook_perl 86.37 } 86.38 - 86.39 -genpkg_rules() { 86.40 - copy @std 86.41 - DEPENDS="perl" 86.42 -}
87.1 --- a/perl-filesys-statvfs/receipt Thu Dec 06 20:27:31 2018 +0200 87.2 +++ b/perl-filesys-statvfs/receipt Tue Dec 11 23:38:35 2018 +0200 87.3 @@ -1,28 +1,22 @@ 87.4 # SliTaz package receipt v2. 87.5 87.6 +ORIGIN="Filesys-Statvfs" 87.7 PACKAGE="perl-filesys-statvfs" 87.8 VERSION="0.82" 87.9 +AUTHOR="IGUTHRIE" 87.10 CATEGORY="perl" 87.11 SHORT_DESC="Filesys::Statvfs - Perl extension for statvfs() and fstatvfs()" 87.12 MAINTAINER="pascal.bellard@slitaz.org" 87.13 LICENSE="GPL" 87.14 -WEB_SITE="https://metacpan.org/release/Filesys-Statvfs" 87.15 -REPOLOGY="perl:filesys-statvfs" 87.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 87.17 +REPOLOGY="${PACKAGE/-/:}" 87.18 87.19 -TARBALL="Filesys-Statvfs-$VERSION.tar.gz" 87.20 -WGET_URL="https://cpan.metacpan.org/authors/id/I/IG/IGUTHRIE/$TARBALL" 87.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 87.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 87.23 87.24 -BUILD_DEPENDS="perl-dev" 87.25 +DEPENDS_std="perl" 87.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 87.27 87.28 compile_rules() { 87.29 - perl Makefile.PL && 87.30 - make && 87.31 - make DESTDIR=$install install && 87.32 - 87.33 - chmod -R u+w $install 87.34 + cook_perl 87.35 } 87.36 - 87.37 -genpkg_rules() { 87.38 - copy @std 87.39 - DEPENDS="perl" 87.40 -}
88.1 --- a/perl-font-afm/receipt Thu Dec 06 20:27:31 2018 +0200 88.2 +++ b/perl-font-afm/receipt Tue Dec 11 23:38:35 2018 +0200 88.3 @@ -1,28 +1,23 @@ 88.4 -# SliTaz package receipt. 88.5 +# SliTaz package receipt v2. 88.6 88.7 +ORIGIN="Font-AFM" 88.8 PACKAGE="perl-font-afm" 88.9 VERSION="1.20" 88.10 +AUTHOR="GAAS" 88.11 CATEGORY="perl" 88.12 SHORT_DESC="Font::AFM - Interface to Adobe Font Metrics files" 88.13 MAINTAINER="al.bobylev@gmail.com" 88.14 LICENSE="GPL" 88.15 -WEB_SITE="https://metacpan.org/release/Font-AFM" 88.16 -REPOLOGY="perl:font-afm" 88.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 88.18 +HOST_ARCH="any" 88.19 +REPOLOGY="${PACKAGE/-/:}" 88.20 88.21 -TARBALL="Font-AFM-$VERSION.tar.gz" 88.22 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 88.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 88.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 88.25 88.26 -BUILD_DEPENDS="perl" 88.27 +DEPENDS_std="perl" 88.28 +BUILD_DEPENDS="$DEPENDS_std" 88.29 88.30 compile_rules() { 88.31 - perl Makefile.PL && 88.32 - make && 88.33 - make DESTDIR=$install install && 88.34 - 88.35 - chmod -R u+w $install 88.36 + cook_perl 88.37 } 88.38 - 88.39 -genpkg_rules() { 88.40 - copy @std 88.41 - DEPENDS="perl" 88.42 -}
89.1 --- a/perl-fuse/receipt Thu Dec 06 20:27:31 2018 +0200 89.2 +++ b/perl-fuse/receipt Tue Dec 11 23:38:35 2018 +0200 89.3 @@ -1,29 +1,22 @@ 89.4 # SliTaz package receipt v2. 89.5 89.6 +ORIGIN="Fuse" 89.7 PACKAGE="perl-fuse" 89.8 VERSION="0.16" 89.9 +AUTHOR="DPATES" 89.10 CATEGORY="perl" 89.11 SHORT_DESC="Fuse - write filesystems in Perl using FUSE" 89.12 MAINTAINER="pascal.bellard@slitaz.org" 89.13 LICENSE="GPL" 89.14 -WEB_SITE="https://metacpan.org/release/Fuse" 89.15 -REPOLOGY="perl:fuse" 89.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 89.17 +REPOLOGY="${PACKAGE/-/:}" 89.18 89.19 -TARBALL="Fuse-$VERSION.tar.gz" 89.20 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DP/DPATES/$TARBALL" 89.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 89.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 89.23 89.24 -BUILD_DEPENDS="fuse2 perl-filesys-statvfs perl-lchown perl-unix-mknod \ 89.25 -perl-dev fuse2-dev" 89.26 +DEPENDS_std="fuse2 perl-filesys-statvfs perl-lchown perl-unix-mknod" 89.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev fuse2-dev" 89.28 89.29 compile_rules() { 89.30 - perl Makefile.PL && 89.31 - make && 89.32 - make DESTDIR=$install install && 89.33 - 89.34 - chmod -R u+w $install 89.35 + cook_perl 89.36 } 89.37 - 89.38 -genpkg_rules() { 89.39 - copy @std 89.40 - DEPENDS="fuse2 perl-filesys-statvfs perl-lchown perl-unix-mknod" 89.41 -}
90.1 --- a/perl-gd/receipt Thu Dec 06 20:27:31 2018 +0200 90.2 +++ b/perl-gd/receipt Tue Dec 11 23:38:35 2018 +0200 90.3 @@ -1,30 +1,22 @@ 90.4 # SliTaz package receipt v2. 90.5 90.6 +ORIGIN="GD" 90.7 PACKAGE="perl-gd" 90.8 VERSION="2.69" 90.9 +AUTHOR="RURBAN" 90.10 CATEGORY="perl" 90.11 SHORT_DESC="GD - Interface to Gd Graphics Library" 90.12 MAINTAINER="pascal.bellard@slitaz.org" 90.13 LICENSE="GPL" 90.14 -WEB_SITE="https://metacpan.org/release/GD" 90.15 -REPOLOGY="perl:gd" 90.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 90.17 +REPOLOGY="${PACKAGE/-/:}" 90.18 90.19 -TARBALL="GD-$VERSION.tar.gz" 90.20 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RU/RURBAN/$TARBALL" 90.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 90.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 90.23 90.24 -BUILD_DEPENDS="perl-dev libgd-dev libgd perl-extutils-pkgconfig" 90.25 +DEPENDS_std="perl libgd" 90.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev libgd-dev libgd perl-extutils-pkgconfig" 90.27 90.28 compile_rules() { 90.29 - # avoid interactive questions 90.30 - PERL_MM_USE_DEFAULT=1 \ 90.31 - perl Makefile.PL && 90.32 - make && 90.33 - make DESTDIR=$install install && 90.34 - 90.35 - chmod -R u+w $install 90.36 + cook_perl 90.37 } 90.38 - 90.39 -genpkg_rules() { 90.40 - copy @std 90.41 - DEPENDS="perl libgd" 90.42 -}
91.1 --- a/perl-geo-ipfree/receipt Thu Dec 06 20:27:31 2018 +0200 91.2 +++ b/perl-geo-ipfree/receipt Tue Dec 11 23:38:35 2018 +0200 91.3 @@ -1,28 +1,23 @@ 91.4 # SliTaz package receipt v2. 91.5 91.6 +ORIGIN="Geo-IPfree" 91.7 PACKAGE="perl-geo-ipfree" 91.8 VERSION="1.151940" 91.9 +AUTHOR="BRICAS" 91.10 CATEGORY="perl" 91.11 SHORT_DESC="Geo::IPfree - Look up the country of an IPv4 address" 91.12 MAINTAINER="devel@slitaz.org" 91.13 LICENSE="GPL" 91.14 -WEB_SITE="https://metacpan.org/release/Geo-IPfree" 91.15 -REPOLOGY="perl:geo-ipfree" 91.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 91.17 +HOST_ARCH="any" 91.18 +REPOLOGY="${PACKAGE/-/:}" 91.19 91.20 -TARBALL="Geo-IPfree-$VERSION.tar.gz" 91.21 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BR/BRICAS/$TARBALL" 91.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 91.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 91.24 91.25 -BUILD_DEPENDS="perl" 91.26 +DEPENDS_std="perl" 91.27 +BUILD_DEPENDS="$DEPENDS_std" 91.28 91.29 compile_rules() { 91.30 - perl Makefile.PL && 91.31 - make && 91.32 - make DESTDIR=$install install && 91.33 - 91.34 - chmod -R u+w $install 91.35 + cook_perl 91.36 } 91.37 - 91.38 -genpkg_rules() { 91.39 - copy @std 91.40 - DEPENDS="perl" 91.41 -}
92.1 --- a/perl-glib/receipt Thu Dec 06 20:27:31 2018 +0200 92.2 +++ b/perl-glib/receipt Tue Dec 11 23:38:35 2018 +0200 92.3 @@ -1,28 +1,25 @@ 92.4 # SliTaz package receipt v2. 92.5 92.6 +ORIGIN="Glib" 92.7 PACKAGE="perl-glib" 92.8 VERSION="1.328" 92.9 +AUTHOR="XAOC" 92.10 CATEGORY="perl" 92.11 SHORT_DESC="Glib - Perl wrappers for the GLib utility and Object libraries" 92.12 MAINTAINER="claudinei@slitaz.org" 92.13 LICENSE="LGPL2.1" 92.14 -WEB_SITE="https://metacpan.org/release/Glib" 92.15 -REPOLOGY="perl:glib" 92.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 92.17 +REPOLOGY="${PACKAGE/-/:}" 92.18 92.19 -TARBALL="Glib-$VERSION.tar.gz" 92.20 -WGET_URL="https://cpan.metacpan.org/authors/id/X/XA/XAOC/$TARBALL" 92.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 92.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 92.23 92.24 -BUILD_DEPENDS="perl-dev perl-extutils-depends perl-extutils-pkgconfig glib-dev" 92.25 +DEPENDS_std="perl glib" 92.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev perl-extutils-depends \ 92.27 +perl-extutils-pkgconfig glib-dev" 92.28 + 92.29 +COPY_std="@std @dev" 92.30 92.31 compile_rules() { 92.32 - perl Makefile.PL && 92.33 - make && 92.34 - make DESTDIR=$install install && 92.35 - 92.36 - chmod -R u+w $install 92.37 + cook_perl 92.38 } 92.39 - 92.40 -genpkg_rules() { 92.41 - copy @std @dev 92.42 - DEPENDS="perl glib" 92.43 -}
93.1 --- a/perl-gssapi/receipt Thu Dec 06 20:27:31 2018 +0200 93.2 +++ b/perl-gssapi/receipt Tue Dec 11 23:38:35 2018 +0200 93.3 @@ -1,28 +1,22 @@ 93.4 # SliTaz package receipt v2. 93.5 93.6 +ORIGIN="GSSAPI" 93.7 PACKAGE="perl-gssapi" 93.8 VERSION="0.28" 93.9 +AUTHOR="AGROLMS" 93.10 CATEGORY="perl" 93.11 SHORT_DESC="GSSAPI - Perl extension providing access to the GSSAPIv2 library" 93.12 MAINTAINER="pascal.bellard@slitaz.org" 93.13 LICENSE="GPL" 93.14 -WEB_SITE="https://metacpan.org/release/GSSAPI" 93.15 -REPOLOGY="perl:gssapi" 93.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 93.17 +REPOLOGY="${PACKAGE/-/:}" 93.18 93.19 -TARBALL="GSSAPI-$VERSION.tar.gz" 93.20 -WGET_URL="https://cpan.metacpan.org/authors/id/A/AG/AGROLMS/$TARBALL" 93.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 93.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 93.23 93.24 -BUILD_DEPENDS="perl-dev krb5-dev" 93.25 +DEPENDS_std="libcomerr3 libkrb5 perl" 93.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev krb5-dev" 93.27 93.28 compile_rules() { 93.29 - perl Makefile.PL && 93.30 - make && 93.31 - make DESTDIR=$install install && 93.32 - 93.33 - chmod -R u+w $install 93.34 + cook_perl 93.35 } 93.36 - 93.37 -genpkg_rules() { 93.38 - copy @std 93.39 - DEPENDS="libcomerr3 libkrb5 perl" 93.40 -}
94.1 --- a/perl-gtk2-trayicon/receipt Thu Dec 06 20:27:31 2018 +0200 94.2 +++ b/perl-gtk2-trayicon/receipt Tue Dec 11 23:38:35 2018 +0200 94.3 @@ -1,29 +1,25 @@ 94.4 -# SliTaz package receipt. 94.5 +# SliTaz package receipt v2. 94.6 94.7 +ORIGIN="Gtk2-TrayIcon" 94.8 PACKAGE="perl-gtk2-trayicon" 94.9 VERSION="0.06" 94.10 +AUTHOR="BORUP" 94.11 CATEGORY="perl" 94.12 SHORT_DESC="Gtk2::TrayIcon - Perl interface to the EggTrayIcon library" 94.13 MAINTAINER="pascal.bellard@slitaz.org" 94.14 LICENSE="GPL" 94.15 -WEB_SITE="https://metacpan.org/release/Gtk2-TrayIcon" 94.16 -REPOLOGY="perl:gtk2-trayicon" 94.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 94.18 +REPOLOGY="${PACKAGE/-/:}" 94.19 94.20 -TARBALL="Gtk2-TrayIcon-$VERSION.tar.gz" 94.21 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BO/BORUP/$TARBALL" 94.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 94.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 94.24 94.25 -BUILD_DEPENDS="perl-gtk2 perl-dev perl-extutils-depends perl-extutils-pkgconfig \ 94.26 -gtk2-dev" 94.27 +DEPENDS_std="perl-gtk2" 94.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev perl-extutils-depends \ 94.29 +perl-extutils-pkgconfig gtk2-dev" 94.30 + 94.31 +COPY_std="@std @dev" 94.32 94.33 compile_rules() { 94.34 - perl Makefile.PL && 94.35 - make && 94.36 - make DESTDIR=$install install && 94.37 - 94.38 - chmod -R u+w $install 94.39 + cook_perl 94.40 } 94.41 - 94.42 -genpkg_rules() { 94.43 - copy @std @dev 94.44 - DEPENDS="perl-gtk2" 94.45 -}
95.1 --- a/perl-gtk2/receipt Thu Dec 06 20:27:31 2018 +0200 95.2 +++ b/perl-gtk2/receipt Tue Dec 11 23:38:35 2018 +0200 95.3 @@ -1,30 +1,26 @@ 95.4 -# SliTaz package receipt. 95.5 +# SliTaz package receipt v2. 95.6 95.7 +ORIGIN="Gtk2" 95.8 PACKAGE="perl-gtk2" 95.9 VERSION="1.24992" 95.10 +AUTHOR="XAOC" 95.11 CATEGORY="perl" 95.12 SHORT_DESC="Gtk2 - Perl interface to the 2.x series of the Gimp Toolkit library" 95.13 MAINTAINER="claudinei@slitaz.org" 95.14 LICENSE="LGPL2.1" 95.15 -WEB_SITE="https://metacpan.org/release/Gtk2" 95.16 -REPOLOGY="perl:gtk2" 95.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 95.18 +REPOLOGY="${PACKAGE/-/:}" 95.19 95.20 -TARBALL="Gtk2-$VERSION.tar.gz" 95.21 -WGET_URL="https://cpan.metacpan.org/authors/id/X/XA/XAOC/$TARBALL" 95.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 95.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 95.24 95.25 -BUILD_DEPENDS="perl-dev perl-glib perl-pango perl-extutils-depends \ 95.26 +DEPENDS_std="perl-glib perl-pango atk cairo fontconfig freetype gdk-pixbuf \ 95.27 +glib gtk2 pango" 95.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev perl-extutils-depends \ 95.29 perl-extutils-pkgconfig gtk2-dev" 95.30 95.31 +COPY_std="@std @dev" 95.32 + 95.33 compile_rules() { 95.34 - perl Makefile.PL && 95.35 - make && 95.36 - make DESTDIR=$install install && 95.37 - 95.38 - chmod -R u+w $install 95.39 + cook_perl 95.40 } 95.41 - 95.42 -genpkg_rules() { 95.43 - copy @std @dev 95.44 - DEPENDS="perl-glib perl-pango atk cairo fontconfig freetype gdk-pixbuf glib \ 95.45 - gtk2 pango" 95.46 -}
96.1 --- a/perl-html-formatter/receipt Thu Dec 06 20:27:31 2018 +0200 96.2 +++ b/perl-html-formatter/receipt Tue Dec 11 23:38:35 2018 +0200 96.3 @@ -1,28 +1,23 @@ 96.4 # SliTaz package receipt v2. 96.5 96.6 +ORIGIN="HTML-Formatter" 96.7 PACKAGE="perl-html-formatter" 96.8 VERSION="2.16" 96.9 +AUTHOR="NIGELM" 96.10 CATEGORY="perl" 96.11 SHORT_DESC="HTML::Formatter - Base class for HTML formatters" 96.12 MAINTAINER="al.bobylev@gmail.com" 96.13 LICENSE="GPL" 96.14 -WEB_SITE="https://metacpan.org/release/HTML-Formatter" 96.15 -REPOLOGY="perl:html-formatter" 96.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 96.17 +HOST_ARCH="any" 96.18 +REPOLOGY="${PACKAGE/-/:}" 96.19 96.20 -TARBALL="HTML-Formatter-$VERSION.tar.gz" 96.21 -WGET_URL="https://cpan.metacpan.org/authors/id/N/NI/NIGELM/$TARBALL" 96.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 96.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 96.24 96.25 -BUILD_DEPENDS="perl-font-afm perl-html-tree perl-file-slurper perl-test-warnings" 96.26 +DEPENDS_std="perl-font-afm perl-html-tree" 96.27 +BUILD_DEPENDS="$DEPENDS_std perl-file-slurper perl-test-warnings" 96.28 96.29 compile_rules() { 96.30 - perl Makefile.PL && 96.31 - make && 96.32 - make DESTDIR=$install install && 96.33 - 96.34 - chmod -R u+w $install 96.35 + cook_perl 96.36 } 96.37 - 96.38 -genpkg_rules() { 96.39 - copy @std 96.40 - DEPENDS="perl-font-afm perl-html-tree" 96.41 -}
97.1 --- a/perl-html-parser/receipt Thu Dec 06 20:27:31 2018 +0200 97.2 +++ b/perl-html-parser/receipt Tue Dec 11 23:38:35 2018 +0200 97.3 @@ -1,28 +1,22 @@ 97.4 # SliTaz package receipt v2. 97.5 97.6 +ORIGIN="HTML-Parser" 97.7 PACKAGE="perl-html-parser" 97.8 VERSION="3.72" 97.9 +AUTHOR="GAAS" 97.10 CATEGORY="perl" 97.11 SHORT_DESC="HTML::Parser - HTML parser class" 97.12 MAINTAINER="pascal.bellard@slitaz.org" 97.13 LICENSE="GPL" 97.14 -WEB_SITE="https://metacpan.org/release/HTML-Parser" 97.15 -REPOLOGY="perl:html-parser" 97.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 97.17 +REPOLOGY="${PACKAGE/-/:}" 97.18 97.19 -TARBALL="HTML-Parser-$VERSION.tar.gz" 97.20 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 97.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 97.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 97.23 97.24 -BUILD_DEPENDS="perl-dev perl-html-tagset" 97.25 +DEPENDS_std="perl-html-tagset" 97.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 97.27 97.28 compile_rules() { 97.29 - perl Makefile.PL && 97.30 - make && 97.31 - make DESTDIR=$install install && 97.32 - 97.33 - chmod -R u+w $install 97.34 + cook_perl 97.35 } 97.36 - 97.37 -genpkg_rules() { 97.38 - copy @std 97.39 - DEPENDS="perl-html-tagset" 97.40 -}
98.1 --- a/perl-html-tagset/receipt Thu Dec 06 20:27:31 2018 +0200 98.2 +++ b/perl-html-tagset/receipt Tue Dec 11 23:38:35 2018 +0200 98.3 @@ -1,28 +1,23 @@ 98.4 # SliTaz package receipt v2. 98.5 98.6 +ORIGIN="HTML-Tagset" 98.7 PACKAGE="perl-html-tagset" 98.8 VERSION="3.20" 98.9 +AUTHOR="PETDANCE" 98.10 CATEGORY="perl" 98.11 SHORT_DESC="HTML::Tagset - data tables useful in parsing HTML" 98.12 MAINTAINER="pascal.bellard@slitaz.org" 98.13 LICENSE="GPL" 98.14 -WEB_SITE="https://metacpan.org/release/HTML-Tagset" 98.15 -REPOLOGY="perl:html-tagset" 98.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 98.17 +HOST_ARCH="any" 98.18 +REPOLOGY="${PACKAGE/-/:}" 98.19 98.20 -TARBALL="HTML-Tagset-$VERSION.tar.gz" 98.21 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PE/PETDANCE/$TARBALL" 98.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 98.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 98.24 98.25 -BUILD_DEPENDS="perl" 98.26 +DEPENDS_std="perl" 98.27 +BUILD_DEPENDS="$DEPENDS_std" 98.28 98.29 compile_rules() { 98.30 - perl Makefile.PL && 98.31 - make && 98.32 - make DESTDIR=$install install && 98.33 - 98.34 - chmod -R u+w $install 98.35 + cook_perl 98.36 } 98.37 - 98.38 -genpkg_rules() { 98.39 - copy @std 98.40 - DEPENDS="perl" 98.41 -}
99.1 --- a/perl-html-tree/receipt Thu Dec 06 20:27:31 2018 +0200 99.2 +++ b/perl-html-tree/receipt Tue Dec 11 23:38:35 2018 +0200 99.3 @@ -1,19 +1,23 @@ 99.4 # SliTaz package receipt v2. 99.5 99.6 +ORIGIN="HTML-Tree" 99.7 PACKAGE="perl-html-tree" 99.8 VERSION="5.07" 99.9 +AUTHOR="KENTNL" 99.10 CATEGORY="perl" 99.11 SHORT_DESC="HTML::Tree - build and scan parse-trees of HTML" 99.12 MAINTAINER="devel@slitaz.org" 99.13 LICENSE="GPL" 99.14 -WEB_SITE="https://metacpan.org/release/HTML-Tree" 99.15 -REPOLOGY="perl:html-tree" 99.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 99.17 +HOST_ARCH="any" 99.18 +REPOLOGY="${PACKAGE/-/:}" 99.19 99.20 -TARBALL="HTML-Tree-$VERSION.tar.gz" 99.21 -WGET_URL="https://cpan.metacpan.org/authors/id/K/KE/KENTNL/$TARBALL" 99.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 99.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 99.24 99.25 -BUILD_DEPENDS="perl-html-parser perl-html-tagset perl-module-build \ 99.26 -perl-test-fatal perl-html-formatter perl-libwww-perl" 99.27 +DEPENDS_std="perl-html-parser perl-html-tagset" 99.28 +BUILD_DEPENDS="$DEPENDS_std perl-module-build perl-test-fatal \ 99.29 +perl-html-formatter perl-libwww-perl" 99.30 # BDEP loop: 'perl-html-tree' needs 'perl-html-formatter' needs 'perl-html-tree' 99.31 99.32 compile_rules() { 99.33 @@ -23,8 +27,3 @@ 99.34 99.35 chmod -R u+w $install 99.36 } 99.37 - 99.38 -genpkg_rules() { 99.39 - copy @std 99.40 - DEPENDS="perl-html-parser perl-html-tagset" 99.41 -}
100.1 --- a/perl-http-cookies/receipt Thu Dec 06 20:27:31 2018 +0200 100.2 +++ b/perl-http-cookies/receipt Tue Dec 11 23:38:35 2018 +0200 100.3 @@ -1,28 +1,23 @@ 100.4 # SliTaz package receipt v2. 100.5 100.6 +ORIGIN="HTTP-Cookies" 100.7 PACKAGE="perl-http-cookies" 100.8 VERSION="6.04" 100.9 +AUTHOR="OALDERS" 100.10 CATEGORY="perl" 100.11 SHORT_DESC="HTTP::Cookies - HTTP cookie jars" 100.12 MAINTAINER="devel@slitaz.org" 100.13 LICENSE="GPL" 100.14 -WEB_SITE="https://metacpan.org/release/HTTP-Cookies" 100.15 -REPOLOGY="perl:http-cookies" 100.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 100.17 +HOST_ARCH="any" 100.18 +REPOLOGY="${PACKAGE/-/:}" 100.19 100.20 -TARBALL="HTTP-Cookies-$VERSION.tar.gz" 100.21 -WGET_URL="https://cpan.metacpan.org/authors/id/O/OA/OALDERS/$TARBALL" 100.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 100.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 100.24 100.25 -BUILD_DEPENDS="perl-http-date perl-http-message" 100.26 +DEPENDS_std="perl-http-date perl-http-message" 100.27 +BUILD_DEPENDS="$DEPENDS_std" 100.28 100.29 compile_rules() { 100.30 - perl Makefile.PL && 100.31 - make && 100.32 - make DESTDIR=$install install && 100.33 - 100.34 - chmod -R u+w $install 100.35 + cook_perl 100.36 } 100.37 - 100.38 -genpkg_rules() { 100.39 - copy @std 100.40 - DEPENDS="$BUILD_DEPENDS" 100.41 -}
101.1 --- a/perl-http-daemon/receipt Thu Dec 06 20:27:31 2018 +0200 101.2 +++ b/perl-http-daemon/receipt Tue Dec 11 23:38:35 2018 +0200 101.3 @@ -1,28 +1,23 @@ 101.4 # SliTaz package receipt v2. 101.5 101.6 +ORIGIN="HTTP-Daemon" 101.7 PACKAGE="perl-http-daemon" 101.8 VERSION="6.01" 101.9 +AUTHOR="GAAS" 101.10 CATEGORY="perl" 101.11 SHORT_DESC="HTTP::Daemon - a simple http server class" 101.12 MAINTAINER="devel@slitaz.org" 101.13 LICENSE="GPL" 101.14 -WEB_SITE="https://metacpan.org/release/HTTP-Daemon" 101.15 -REPOLOGY="perl:http-daemon" 101.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 101.17 +HOST_ARCH="any" 101.18 +REPOLOGY="${PACKAGE/-/:}" 101.19 101.20 -TARBALL="HTTP-Daemon-$VERSION.tar.gz" 101.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 101.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 101.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 101.24 101.25 -BUILD_DEPENDS="perl-http-date perl-http-message perl-lwp-mediatypes" 101.26 +DEPENDS_std="perl-http-date perl-http-message perl-lwp-mediatypes" 101.27 +BUILD_DEPENDS="$DEPENDS_std" 101.28 101.29 compile_rules() { 101.30 - perl Makefile.PL && 101.31 - make && 101.32 - make DESTDIR=$install install && 101.33 - 101.34 - chmod -R u+w $install 101.35 + cook_perl 101.36 } 101.37 - 101.38 -genpkg_rules() { 101.39 - copy @std 101.40 - DEPENDS="$BUILD_DEPENDS" 101.41 -}
102.1 --- a/perl-http-date/receipt Thu Dec 06 20:27:31 2018 +0200 102.2 +++ b/perl-http-date/receipt Tue Dec 11 23:38:35 2018 +0200 102.3 @@ -1,28 +1,23 @@ 102.4 # SliTaz package receipt v2. 102.5 102.6 +ORIGIN="HTTP-Date" 102.7 PACKAGE="perl-http-date" 102.8 VERSION="6.02" 102.9 +AUTHOR="GAAS" 102.10 CATEGORY="perl" 102.11 SHORT_DESC="HTTP::Date - date conversion routines" 102.12 MAINTAINER="devel@slitaz.org" 102.13 LICENSE="GPL" 102.14 -WEB_SITE="https://metacpan.org/release/HTTP-Date" 102.15 -REPOLOGY="perl:http-date" 102.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 102.17 +HOST_ARCH="any" 102.18 +REPOLOGY="${PACKAGE/-/:}" 102.19 102.20 -TARBALL="HTTP-Date-$VERSION.tar.gz" 102.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 102.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 102.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 102.24 102.25 -BUILD_DEPENDS="perl" 102.26 +DEPENDS_std="perl" 102.27 +BUILD_DEPENDS="$DEPENDS_std" 102.28 102.29 compile_rules() { 102.30 - perl Makefile.PL && 102.31 - make && 102.32 - make DESTDIR=$install install && 102.33 - 102.34 - chmod -R u+w $install 102.35 + cook_perl 102.36 } 102.37 - 102.38 -genpkg_rules() { 102.39 - copy @std 102.40 - DEPENDS="perl" 102.41 -}
103.1 --- a/perl-http-message/receipt Thu Dec 06 20:27:31 2018 +0200 103.2 +++ b/perl-http-message/receipt Tue Dec 11 23:38:35 2018 +0200 103.3 @@ -1,29 +1,24 @@ 103.4 # SliTaz package receipt v2. 103.5 103.6 +ORIGIN="HTTP-Message" 103.7 PACKAGE="perl-http-message" 103.8 VERSION="6.18" 103.9 +AUTHOR="OALDERS" 103.10 CATEGORY="perl" 103.11 SHORT_DESC="HTTP::Message - HTTP style message" 103.12 MAINTAINER="devel@slitaz.org" 103.13 LICENSE="GPL" 103.14 -WEB_SITE="https://metacpan.org/release/HTTP-Message" 103.15 -REPOLOGY="perl:http-message" 103.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 103.17 +HOST_ARCH="any" 103.18 +REPOLOGY="${PACKAGE/-/:}" 103.19 103.20 -TARBALL="HTTP-Message-$VERSION.tar.gz" 103.21 -WGET_URL="https://cpan.metacpan.org/authors/id/O/OA/OALDERS/$TARBALL" 103.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 103.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 103.24 103.25 -BUILD_DEPENDS="perl-encode-locale perl-http-date perl-io-html \ 103.26 -perl-lwp-mediatypes perl-uri" 103.27 +DEPENDS_std="perl-encode-locale perl-http-date perl-io-html \ 103.28 +perl-lwp-mediatypes perl-uri perl-try-tiny" 103.29 +BUILD_DEPENDS="$DEPENDS_std" 103.30 103.31 compile_rules() { 103.32 - perl Makefile.PL && 103.33 - make && 103.34 - make DESTDIR=$install install && 103.35 - 103.36 - chmod -R u+w $install 103.37 + cook_perl 103.38 } 103.39 - 103.40 -genpkg_rules() { 103.41 - copy @std 103.42 - DEPENDS="$BUILD_DEPENDS" 103.43 -}
104.1 --- a/perl-http-negotiate/receipt Thu Dec 06 20:27:31 2018 +0200 104.2 +++ b/perl-http-negotiate/receipt Tue Dec 11 23:38:35 2018 +0200 104.3 @@ -1,28 +1,23 @@ 104.4 # SliTaz package receipt v2. 104.5 104.6 +ORIGIN="HTTP-Negotiate" 104.7 PACKAGE="perl-http-negotiate" 104.8 VERSION="6.01" 104.9 +AUTHOR="GAAS" 104.10 CATEGORY="perl" 104.11 SHORT_DESC="HTTP::Negotiate - choose a variant to serve" 104.12 MAINTAINER="devel@slitaz.org" 104.13 LICENSE="GPL" 104.14 -WEB_SITE="https://metacpan.org/release/HTTP-Negotiate" 104.15 -REPOLOGY="perl:http-negotiate" 104.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 104.17 +HOST_ARCH="any" 104.18 +REPOLOGY="${PACKAGE/-/:}" 104.19 104.20 -TARBALL="HTTP-Negotiate-$VERSION.tar.gz" 104.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 104.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 104.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 104.24 104.25 -BUILD_DEPENDS="perl-http-message" 104.26 +DEPENDS_std="perl-http-message" 104.27 +BUILD_DEPENDS="$DEPENDS_std" 104.28 104.29 compile_rules() { 104.30 - perl Makefile.PL && 104.31 - make && 104.32 - make DESTDIR=$install install && 104.33 - 104.34 - chmod -R u+w $install 104.35 + cook_perl 104.36 } 104.37 - 104.38 -genpkg_rules() { 104.39 - copy @std 104.40 - DEPENDS="$BUILD_DEPENDS" 104.41 -}
105.1 --- a/perl-http-parser/receipt Thu Dec 06 20:27:31 2018 +0200 105.2 +++ b/perl-http-parser/receipt Tue Dec 11 23:38:35 2018 +0200 105.3 @@ -1,29 +1,24 @@ 105.4 -# SliTaz package receipt. 105.5 +# SliTaz package receipt v2. 105.6 105.7 +ORIGIN="HTTP-Parser" 105.8 PACKAGE="perl-http-parser" 105.9 VERSION="0.06" 105.10 +AUTHOR="EDECA" 105.11 CATEGORY="perl" 105.12 SHORT_DESC="HTTP::Parser - parse HTTP/1.1 request into HTTP::Request/Response \ 105.13 object" 105.14 MAINTAINER="devel@slitaz.org" 105.15 LICENSE="GPL" 105.16 -WEB_SITE="https://metacpan.org/release/HTTP-Parser" 105.17 -REPOLOGY="perl:http-parser" 105.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 105.19 +HOST_ARCH="any" 105.20 +REPOLOGY="${PACKAGE/-/:}" 105.21 105.22 -TARBALL="HTTP-Parser-$VERSION.tar.gz" 105.23 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ED/EDECA/$TARBALL" 105.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 105.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 105.26 105.27 -BUILD_DEPENDS="perl-http-message perl-uri" 105.28 +DEPENDS_std="perl-http-message perl-uri" 105.29 +BUILD_DEPENDS="$DEPENDS_std" 105.30 105.31 compile_rules() { 105.32 - perl Makefile.PL && 105.33 - make && 105.34 - make DESTDIR=$install install && 105.35 - 105.36 - chmod -R u+w $install 105.37 + cook_perl 105.38 } 105.39 - 105.40 -genpkg_rules() { 105.41 - copy @std 105.42 - DEPENDS="perl-http-message perl-uri" 105.43 -}
106.1 --- a/perl-http-server-simple/receipt Thu Dec 06 20:27:31 2018 +0200 106.2 +++ b/perl-http-server-simple/receipt Tue Dec 11 23:38:35 2018 +0200 106.3 @@ -1,28 +1,23 @@ 106.4 -# SliTaz package receipt. 106.5 +# SliTaz package receipt v2. 106.6 106.7 +ORIGIN="HTTP-Server-Simple" 106.8 PACKAGE="perl-http-server-simple" 106.9 VERSION="0.52" 106.10 +AUTHOR="BPS" 106.11 CATEGORY="perl" 106.12 SHORT_DESC="HTTP::Server::Simple - Lightweight HTTP server" 106.13 MAINTAINER="pascal.bellard@slitaz.org" 106.14 LICENSE="GPL" 106.15 -WEB_SITE="https://metacpan.org/release/HTTP-Server-Simple" 106.16 -REPOLOGY="perl:http-server-simple" 106.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 106.18 +HOST_ARCH="any" 106.19 +REPOLOGY="${PACKAGE/-/:}" 106.20 106.21 -TARBALL="HTTP-Server-Simple-$VERSION.tar.gz" 106.22 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BP/BPS/$TARBALL" 106.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 106.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 106.25 106.26 -BUILD_DEPENDS="perl-cgi" 106.27 +DEPENDS_std="perl-cgi" 106.28 +BUILD_DEPENDS="$DEPENDS_std" 106.29 106.30 compile_rules() { 106.31 - perl Makefile.PL && 106.32 - make && 106.33 - make DESTDIR=$install install && 106.34 - 106.35 - chmod -R u+w $install 106.36 + cook_perl 106.37 } 106.38 - 106.39 -genpkg_rules() { 106.40 - copy @std 106.41 - DEPENDS="perl-cgi" 106.42 -}
107.1 --- a/perl-image-librsvg/receipt Thu Dec 06 20:27:31 2018 +0200 107.2 +++ b/perl-image-librsvg/receipt Tue Dec 11 23:38:35 2018 +0200 107.3 @@ -1,28 +1,22 @@ 107.4 # SliTaz package receipt v2. 107.5 107.6 +ORIGIN="Image-LibRSVG" 107.7 PACKAGE="perl-image-librsvg" 107.8 VERSION="0.07" 107.9 +AUTHOR="TOMSON" 107.10 CATEGORY="perl" 107.11 SHORT_DESC="Image::LibRSVG - Perl extension for librsvg" 107.12 MAINTAINER="pascal.bellard@slitaz.org" 107.13 LICENSE="GPL" 107.14 -WEB_SITE="https://metacpan.org/release/Image-LibRSVG" 107.15 -REPOLOGY="perl:image-librsvg" 107.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 107.17 +REPOLOGY="${PACKAGE/-/:}" 107.18 107.19 -TARBALL="Image-LibRSVG-$VERSION.tar.gz" 107.20 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TOMSON/$TARBALL" 107.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 107.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 107.23 107.24 -BUILD_DEPENDS="perl-dev librsvg-dev" 107.25 +DEPENDS_std="perl cairo gdk-pixbuf glib librsvg" 107.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev librsvg-dev" 107.27 107.28 compile_rules() { 107.29 - perl Makefile.PL && 107.30 - make && 107.31 - make DESTDIR=$install install && 107.32 - 107.33 - chmod -R u+w $install 107.34 + cook_perl 107.35 } 107.36 - 107.37 -genpkg_rules() { 107.38 - copy @std 107.39 - DEPENDS="perl cairo gdk-pixbuf glib librsvg" 107.40 -}
108.1 --- a/perl-importer/receipt Thu Dec 06 20:27:31 2018 +0200 108.2 +++ b/perl-importer/receipt Tue Dec 11 23:38:35 2018 +0200 108.3 @@ -1,29 +1,24 @@ 108.4 # SliTaz package receipt v2. 108.5 108.6 +ORIGIN="Importer" 108.7 PACKAGE="perl-importer" 108.8 VERSION="0.025" 108.9 +AUTHOR="EXODIST" 108.10 CATEGORY="perl" 108.11 SHORT_DESC="Importer - Alternative but compatible interface to modules that \ 108.12 export symbols" 108.13 MAINTAINER="al.bobylev@gmail.com" 108.14 LICENSE="GPL" 108.15 -WEB_SITE="https://metacpan.org/release/Importer" 108.16 -REPOLOGY="perl:importer" 108.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 108.18 +HOST_ARCH="any" 108.19 +REPOLOGY="${PACKAGE/-/:}" 108.20 108.21 -TARBALL="Importer-$VERSION.tar.gz" 108.22 -WGET_URL="https://cpan.metacpan.org/authors/id/E/EX/EXODIST/$TARBALL" 108.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 108.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 108.25 108.26 -BUILD_DEPENDS="perl" 108.27 +DEPENDS_std="perl" 108.28 +BUILD_DEPENDS="$DEPENDS_std" 108.29 108.30 compile_rules() { 108.31 - perl Makefile.PL && 108.32 - make && 108.33 - make DESTDIR=$install install && 108.34 - 108.35 - chmod -R u+w $install 108.36 + cook_perl 108.37 } 108.38 - 108.39 -genpkg_rules() { 108.40 - copy @std 108.41 - DEPENDS="perl" 108.42 -}
109.1 --- a/perl-inc-latest/receipt Thu Dec 06 20:27:31 2018 +0200 109.2 +++ b/perl-inc-latest/receipt Tue Dec 11 23:38:35 2018 +0200 109.3 @@ -1,29 +1,24 @@ 109.4 # SliTaz package receipt v2. 109.5 109.6 +ORIGIN="inc-latest" 109.7 PACKAGE="perl-inc-latest" 109.8 VERSION="0.500" 109.9 +AUTHOR="DAGOLDEN" 109.10 CATEGORY="perl" 109.11 SHORT_DESC="inc::latest - use modules bundled in inc/ if they are newer than \ 109.12 installed ones" 109.13 MAINTAINER="al.bobylev@gmail.com" 109.14 LICENSE="GPL" 109.15 -WEB_SITE="https://metacpan.org/release/inc-latest" 109.16 -REPOLOGY="perl:inc-latest" 109.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 109.18 +HOST_ARCH="any" 109.19 +REPOLOGY="${PACKAGE/-/:}" 109.20 109.21 -TARBALL="inc-latest-$VERSION.tar.gz" 109.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/$TARBALL" 109.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 109.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 109.25 109.26 -BUILD_DEPENDS="perl" 109.27 +DEPENDS_std="perl" 109.28 +BUILD_DEPENDS="$DEPENDS_std" 109.29 109.30 compile_rules() { 109.31 - perl Makefile.PL && 109.32 - make && 109.33 - make DESTDIR=$install install && 109.34 - 109.35 - chmod -R u+w $install 109.36 + cook_perl 109.37 } 109.38 - 109.39 -genpkg_rules() { 109.40 - copy @std 109.41 - DEPENDS="perl" 109.42 -}
110.1 --- a/perl-io-captureoutput/receipt Thu Dec 06 20:27:31 2018 +0200 110.2 +++ b/perl-io-captureoutput/receipt Tue Dec 11 23:38:35 2018 +0200 110.3 @@ -1,29 +1,24 @@ 110.4 # SliTaz package receipt v2. 110.5 110.6 +ORIGIN="IO-CaptureOutput" 110.7 PACKAGE="perl-io-captureoutput" 110.8 VERSION="1.1104" 110.9 +AUTHOR="DAGOLDEN" 110.10 CATEGORY="perl" 110.11 SHORT_DESC="IO::CaptureOutput - capture STDOUT and STDERR from Perl code, \ 110.12 subprocesses or XS" 110.13 MAINTAINER="al.bobylev@gmail.com" 110.14 LICENSE="GPL" 110.15 -WEB_SITE="https://metacpan.org/release/IO-CaptureOutput" 110.16 -REPOLOGY="perl:io-captureoutput" 110.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 110.18 +HOST_ARCH="any" 110.19 +REPOLOGY="${PACKAGE/-/:}" 110.20 110.21 -TARBALL="IO-CaptureOutput-$VERSION.tar.gz" 110.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/$TARBALL" 110.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 110.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 110.25 110.26 -BUILD_DEPENDS="perl" 110.27 +DEPENDS_std="perl" 110.28 +BUILD_DEPENDS="$DEPENDS_std" 110.29 110.30 compile_rules() { 110.31 - perl Makefile.PL && 110.32 - make && 110.33 - make DESTDIR=$install install && 110.34 - 110.35 - chmod -R u+w $install 110.36 + cook_perl 110.37 } 110.38 - 110.39 -genpkg_rules() { 110.40 - copy @std 110.41 - DEPENDS="perl" 110.42 -}
111.1 --- a/perl-io-html/receipt Thu Dec 06 20:27:31 2018 +0200 111.2 +++ b/perl-io-html/receipt Tue Dec 11 23:38:35 2018 +0200 111.3 @@ -1,28 +1,23 @@ 111.4 # SliTaz package receipt v2. 111.5 111.6 +ORIGIN="IO-HTML" 111.7 PACKAGE="perl-io-html" 111.8 VERSION="1.001" 111.9 +AUTHOR="CJM" 111.10 CATEGORY="perl" 111.11 SHORT_DESC="IO::HTML - Open an HTML file with automatic charset detection" 111.12 MAINTAINER="al.bobylev@gmail.com" 111.13 LICENSE="GPL" 111.14 -WEB_SITE="https://metacpan.org/release/IO-HTML" 111.15 -REPOLOGY="perl:io-html" 111.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 111.17 +HOST_ARCH="any" 111.18 +REPOLOGY="${PACKAGE/-/:}" 111.19 111.20 -TARBALL="IO-HTML-$VERSION.tar.gz" 111.21 -WGET_URL="https://cpan.metacpan.org/authors/id/C/CJ/CJM/$TARBALL" 111.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 111.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 111.24 111.25 -BUILD_DEPENDS="perl" 111.26 +DEPENDS_std="perl" 111.27 +BUILD_DEPENDS="$DEPENDS_std" 111.28 111.29 compile_rules() { 111.30 - perl Makefile.PL && 111.31 - make && 111.32 - make DESTDIR=$install install && 111.33 - 111.34 - chmod -R u+w $install 111.35 + cook_perl 111.36 } 111.37 - 111.38 -genpkg_rules() { 111.39 - copy @std 111.40 - DEPENDS="perl" 111.41 -}
112.1 --- a/perl-io-interactive-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 112.2 +++ b/perl-io-interactive-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 112.3 @@ -1,28 +1,23 @@ 112.4 # SliTaz package receipt v2. 112.5 112.6 +ORIGIN="IO-Interactive-Tiny" 112.7 PACKAGE="perl-io-interactive-tiny" 112.8 VERSION="0.2" 112.9 +AUTHOR="DMUEY" 112.10 CATEGORY="perl" 112.11 SHORT_DESC="IO::Interactive::Tiny - is_interactive() without large deps" 112.12 MAINTAINER="al.bobylev@gmail.com" 112.13 LICENSE="GPL" 112.14 -WEB_SITE="https://metacpan.org/release/IO-Interactive-Tiny" 112.15 -REPOLOGY="perl:io-interactive-tiny" 112.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 112.17 +HOST_ARCH="any" 112.18 +REPOLOGY="${PACKAGE/-/:}" 112.19 112.20 -TARBALL="IO-Interactive-Tiny-$VERSION.tar.gz" 112.21 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DM/DMUEY/$TARBALL" 112.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 112.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 112.24 112.25 -BUILD_DEPENDS="perl" 112.26 +DEPENDS_std="perl" 112.27 +BUILD_DEPENDS="$DEPENDS_std" 112.28 112.29 compile_rules() { 112.30 - perl Makefile.PL && 112.31 - make && 112.32 - make DESTDIR=$install install && 112.33 - 112.34 - chmod -R u+w $install 112.35 + cook_perl 112.36 } 112.37 - 112.38 -genpkg_rules() { 112.39 - copy @std 112.40 - DEPENDS="perl" 112.41 -}
113.1 --- a/perl-io-multiplex/receipt Thu Dec 06 20:27:31 2018 +0200 113.2 +++ b/perl-io-multiplex/receipt Tue Dec 11 23:38:35 2018 +0200 113.3 @@ -1,28 +1,23 @@ 113.4 -# SliTaz package receipt. 113.5 +# SliTaz package receipt v2. 113.6 113.7 +ORIGIN="IO-Multiplex" 113.8 PACKAGE="perl-io-multiplex" 113.9 VERSION="1.16" 113.10 +AUTHOR="BBB" 113.11 CATEGORY="perl" 113.12 SHORT_DESC="IO::Multiplex - Manage IO on many file handles" 113.13 MAINTAINER="pascal.bellard@slitaz.org" 113.14 LICENSE="GPL" 113.15 -WEB_SITE="https://metacpan.org/release/IO-Multiplex" 113.16 -REPOLOGY="perl:io-multiplex" 113.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 113.18 +HOST_ARCH="any" 113.19 +REPOLOGY="${PACKAGE/-/:}" 113.20 113.21 -TARBALL="IO-Multiplex-$VERSION.tar.gz" 113.22 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BB/BBB/$TARBALL" 113.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 113.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 113.25 113.26 -BUILD_DEPENDS="perl" 113.27 +DEPENDS_std="perl" 113.28 +BUILD_DEPENDS="$DEPENDS_std" 113.29 113.30 compile_rules() { 113.31 - perl Makefile.PL && 113.32 - make && 113.33 - make DESTDIR=$install install && 113.34 - 113.35 - chmod -R u+w $install 113.36 + cook_perl 113.37 } 113.38 - 113.39 -genpkg_rules() { 113.40 - copy @std 113.41 - DEPENDS="perl" 113.42 -}
114.1 --- a/perl-io-sessiondata/receipt Thu Dec 06 20:27:31 2018 +0200 114.2 +++ b/perl-io-sessiondata/receipt Tue Dec 11 23:38:35 2018 +0200 114.3 @@ -1,28 +1,23 @@ 114.4 # SliTaz package receipt v2. 114.5 114.6 +ORIGIN="IO-SessionData" 114.7 PACKAGE="perl-io-sessiondata" 114.8 VERSION="1.03" 114.9 +AUTHOR="PHRED" 114.10 CATEGORY="perl" 114.11 SHORT_DESC="IO::SessionData - supporting module for SOAP::Lite" 114.12 MAINTAINER="al.bobylev@gmail.com" 114.13 LICENSE="GPL" 114.14 -WEB_SITE="https://metacpan.org/release/IO-SessionData" 114.15 -REPOLOGY="perl:io-sessiondata" 114.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 114.17 +HOST_ARCH="any" 114.18 +REPOLOGY="${PACKAGE/-/:}" 114.19 114.20 -TARBALL="IO-SessionData-$VERSION.tar.gz" 114.21 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PH/PHRED/$TARBALL" 114.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 114.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 114.24 114.25 -BUILD_DEPENDS="perl" 114.26 +DEPENDS_std="perl" 114.27 +BUILD_DEPENDS="$DEPENDS_std" 114.28 114.29 compile_rules() { 114.30 - perl Makefile.PL && 114.31 - make && 114.32 - make DESTDIR=$install install && 114.33 - 114.34 - chmod -R u+w $install 114.35 + cook_perl 114.36 } 114.37 - 114.38 -genpkg_rules() { 114.39 - copy @std 114.40 - DEPENDS="perl" 114.41 -}
115.1 --- a/perl-io-socket-inet6/receipt Thu Dec 06 20:27:31 2018 +0200 115.2 +++ b/perl-io-socket-inet6/receipt Tue Dec 11 23:38:35 2018 +0200 115.3 @@ -1,29 +1,24 @@ 115.4 # SliTaz package receipt v2. 115.5 115.6 +ORIGIN="IO-Socket-INET6" 115.7 PACKAGE="perl-io-socket-inet6" 115.8 VERSION="2.72" 115.9 +AUTHOR="SHLOMIF" 115.10 CATEGORY="perl" 115.11 SHORT_DESC="IO::Socket::INET6 - Object interface for AF_INET/AF_INET6 domain \ 115.12 sockets" 115.13 MAINTAINER="devel@slitaz.org" 115.14 LICENSE="GPL" 115.15 -WEB_SITE="https://metacpan.org/release/IO-Socket-INET6" 115.16 -REPOLOGY="perl:io-socket-inet6" 115.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 115.18 +HOST_ARCH="any" 115.19 +REPOLOGY="${PACKAGE/-/:}" 115.20 115.21 -TARBALL="IO-Socket-INET6-$VERSION.tar.gz" 115.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/$TARBALL" 115.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 115.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 115.25 115.26 -BUILD_DEPENDS="perl-socket6" 115.27 +DEPENDS_std="perl-socket6" 115.28 +BUILD_DEPENDS="$DEPENDS_std" 115.29 115.30 compile_rules() { 115.31 - perl Makefile.PL && 115.32 - make && 115.33 - make DESTDIR=$install install && 115.34 - 115.35 - chmod -R u+w $install 115.36 + cook_perl 115.37 } 115.38 - 115.39 -genpkg_rules() { 115.40 - copy @std 115.41 - DEPENDS="perl-socket6" 115.42 -}
116.1 --- a/perl-io-socket-ssl/receipt Thu Dec 06 20:27:31 2018 +0200 116.2 +++ b/perl-io-socket-ssl/receipt Tue Dec 11 23:38:35 2018 +0200 116.3 @@ -1,31 +1,23 @@ 116.4 # SliTaz package receipt v2. 116.5 116.6 +ORIGIN="IO-Socket-SSL" 116.7 PACKAGE="perl-io-socket-ssl" 116.8 VERSION="2.060" 116.9 +AUTHOR="SULLR" 116.10 CATEGORY="perl" 116.11 SHORT_DESC="IO::Socket::SSL - SSL sockets with IO::Socket interface" 116.12 MAINTAINER="pascal.bellard@slitaz.org" 116.13 LICENSE="GPL" 116.14 -WEB_SITE="https://metacpan.org/release/IO-Socket-SSL" 116.15 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 116.16 HOST_ARCH="any" 116.17 -REPOLOGY="perl:io-socket-ssl" 116.18 +REPOLOGY="${PACKAGE/-/:}" 116.19 116.20 -TARBALL="IO-Socket-SSL-$VERSION.tar.gz" 116.21 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SU/SULLR/$TARBALL" 116.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 116.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 116.24 116.25 -BUILD_DEPENDS="perl-net-ssleay perl-uri" 116.26 +DEPENDS_std="perl-net-ssleay perl-mozilla-ca" 116.27 +BUILD_DEPENDS="$DEPENDS_std perl-uri" 116.28 116.29 compile_rules() { 116.30 - # avoid interactive questions 116.31 - PERL_MM_USE_DEFAULT=1 \ 116.32 - perl Makefile.PL && 116.33 - make && 116.34 - make DESTDIR=$install install && 116.35 - 116.36 - chmod -R u+w $install 116.37 + cook_perl 116.38 } 116.39 - 116.40 -genpkg_rules() { 116.41 - copy @std 116.42 - DEPENDS="perl-net-ssleay" 116.43 -}
117.1 --- a/perl-io-stringy/receipt Thu Dec 06 20:27:31 2018 +0200 117.2 +++ b/perl-io-stringy/receipt Tue Dec 11 23:38:35 2018 +0200 117.3 @@ -1,28 +1,23 @@ 117.4 -# SliTaz package receipt. 117.5 +# SliTaz package receipt v2. 117.6 117.7 +ORIGIN="IO-stringy" 117.8 PACKAGE="perl-io-stringy" 117.9 VERSION="2.111" 117.10 +AUTHOR="DSKOLL" 117.11 CATEGORY="perl" 117.12 SHORT_DESC="IO::Stringy - I/O on in-core objects like strings and arrays" 117.13 MAINTAINER="al.bobylev@gmail.com" 117.14 LICENSE="GPL" 117.15 -WEB_SITE="https://metacpan.org/release/IO-stringy" 117.16 -REPOLOGY="perl:io-stringy" 117.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 117.18 +HOST_ARCH="any" 117.19 +REPOLOGY="${PACKAGE/-/:}" 117.20 117.21 -TARBALL="IO-stringy-$VERSION.tar.gz" 117.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DS/DSKOLL/$TARBALL" 117.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 117.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 117.25 117.26 -BUILD_DEPENDS="perl" 117.27 +DEPENDS_std="perl" 117.28 +BUILD_DEPENDS="$DEPENDS_std" 117.29 117.30 compile_rules() { 117.31 - perl Makefile.PL && 117.32 - make && 117.33 - make DESTDIR=$install install && 117.34 - 117.35 - chmod -R u+w $install 117.36 + cook_perl 117.37 } 117.38 - 117.39 -genpkg_rules() { 117.40 - copy @std 117.41 - DEPENDS="perl" 117.42 -}
118.1 --- a/perl-io-stty/receipt Thu Dec 06 20:27:31 2018 +0200 118.2 +++ b/perl-io-stty/receipt Tue Dec 11 23:38:35 2018 +0200 118.3 @@ -1,18 +1,22 @@ 118.4 -# SliTaz package receipt. 118.5 +# SliTaz package receipt v2. 118.6 118.7 +ORIGIN="IO-Stty" 118.8 PACKAGE="perl-io-stty" 118.9 VERSION="0.03" 118.10 +AUTHOR="TODDR" 118.11 CATEGORY="perl" 118.12 SHORT_DESC="IO::Stty - Change and print terminal line settings" 118.13 MAINTAINER="pascal.bellard@slitaz.org" 118.14 LICENSE="GPL" 118.15 -WEB_SITE="https://metacpan.org/release/IO-Stty" 118.16 -REPOLOGY="perl:io-stty" 118.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 118.18 +HOST_ARCH="any" 118.19 +REPOLOGY="${PACKAGE/-/:}" 118.20 118.21 -TARBALL="IO-Stty-$VERSION.tar.gz" 118.22 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TODDR/$TARBALL" 118.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 118.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 118.25 118.26 -BUILD_DEPENDS="perl-module-build" 118.27 +DEPENDS_std="perl" 118.28 +BUILD_DEPENDS="$DEPENDS_std perl-module-build" 118.29 118.30 compile_rules() { 118.31 perl Build.PL && 118.32 @@ -20,8 +24,3 @@ 118.33 118.34 chmod -R u+w $install 118.35 } 118.36 - 118.37 -genpkg_rules() { 118.38 - copy @std 118.39 - DEPENDS="perl" 118.40 -}
119.1 --- a/perl-io-tty/receipt Thu Dec 06 20:27:31 2018 +0200 119.2 +++ b/perl-io-tty/receipt Tue Dec 11 23:38:35 2018 +0200 119.3 @@ -1,28 +1,22 @@ 119.4 -# SliTaz package receipt. 119.5 +# SliTaz package receipt v2. 119.6 119.7 +ORIGIN="IO-Tty" 119.8 PACKAGE="perl-io-tty" 119.9 VERSION="1.12" 119.10 +AUTHOR="TODDR" 119.11 CATEGORY="perl" 119.12 SHORT_DESC="IO::Tty - Low-level allocate a pseudo-Tty, import constants" 119.13 MAINTAINER="pascal.bellard@slitaz.org" 119.14 LICENSE="GPL" 119.15 -WEB_SITE="https://metacpan.org/release/IO-Tty" 119.16 -REPOLOGY="perl:io-tty" 119.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 119.18 +REPOLOGY="${PACKAGE/-/:}" 119.19 119.20 -TARBALL="IO-Tty-$VERSION.tar.gz" 119.21 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TODDR/$TARBALL" 119.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 119.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 119.24 119.25 -BUILD_DEPENDS="perl-dev" 119.26 +DEPENDS_std="perl" 119.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 119.28 119.29 compile_rules() { 119.30 - perl Makefile.PL && 119.31 - make && 119.32 - make DESTDIR=$install install && 119.33 - 119.34 - chmod -R u+w $install 119.35 + cook_perl 119.36 } 119.37 - 119.38 -genpkg_rules() { 119.39 - copy @std 119.40 - DEPENDS="perl" 119.41 -}
120.1 --- a/perl-ipc-run/receipt Thu Dec 06 20:27:31 2018 +0200 120.2 +++ b/perl-ipc-run/receipt Tue Dec 11 23:38:35 2018 +0200 120.3 @@ -1,29 +1,24 @@ 120.4 -# SliTaz package receipt. 120.5 +# SliTaz package receipt v2. 120.6 120.7 +ORIGIN="IPC-Run" 120.8 PACKAGE="perl-ipc-run" 120.9 VERSION="20180523.0" 120.10 +AUTHOR="TODDR" 120.11 CATEGORY="perl" 120.12 SHORT_DESC="IPC::Run - system() and background procs w/ piping, redirs, ptys \ 120.13 (Unix, Win32)" 120.14 MAINTAINER="pascal.bellard@slitaz.org" 120.15 LICENSE="GPL" 120.16 -WEB_SITE="https://metacpan.org/release/IPC-Run" 120.17 -REPOLOGY="perl:ipc-run" 120.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 120.19 +HOST_ARCH="any" 120.20 +REPOLOGY="${PACKAGE/-/:}" 120.21 120.22 -TARBALL="IPC-Run-$VERSION.tar.gz" 120.23 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TODDR/$TARBALL" 120.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 120.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 120.26 120.27 -BUILD_DEPENDS="perl" 120.28 +DEPENDS_std="perl" 120.29 +BUILD_DEPENDS="$DEPENDS_std" 120.30 120.31 compile_rules() { 120.32 - perl Makefile.PL && 120.33 - make && 120.34 - make DESTDIR=$install install && 120.35 - 120.36 - chmod -R u+w $install 120.37 + cook_perl 120.38 } 120.39 - 120.40 -genpkg_rules() { 120.41 - copy @std 120.42 - DEPENDS="perl" 120.43 -}
121.1 --- a/perl-ipc-run3/receipt Thu Dec 06 20:27:31 2018 +0200 121.2 +++ b/perl-ipc-run3/receipt Tue Dec 11 23:38:35 2018 +0200 121.3 @@ -1,28 +1,23 @@ 121.4 # SliTaz package receipt v2. 121.5 121.6 +ORIGIN="IPC-Run3" 121.7 PACKAGE="perl-ipc-run3" 121.8 VERSION="0.048" 121.9 +AUTHOR="RJBS" 121.10 CATEGORY="perl" 121.11 SHORT_DESC="IPC::Run3 - run a subprocess with input/ouput redirection" 121.12 MAINTAINER="al.bobylev@gmail.com" 121.13 LICENSE="GPL" 121.14 -WEB_SITE="https://metacpan.org/release/IPC-Run3" 121.15 -REPOLOGY="perl:ipc-run3" 121.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 121.17 +HOST_ARCH="any" 121.18 +REPOLOGY="${PACKAGE/-/:}" 121.19 121.20 -TARBALL="IPC-Run3-$VERSION.tar.gz" 121.21 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RJ/RJBS/$TARBALL" 121.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 121.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 121.24 121.25 -BUILD_DEPENDS="perl" 121.26 +DEPENDS_std="perl" 121.27 +BUILD_DEPENDS="$DEPENDS_std" 121.28 121.29 compile_rules() { 121.30 - perl Makefile.PL && 121.31 - make && 121.32 - make DESTDIR=$install install && 121.33 - 121.34 - chmod -R u+w $install 121.35 + cook_perl 121.36 } 121.37 - 121.38 -genpkg_rules() { 121.39 - copy @std 121.40 - DEPENDS="perl" 121.41 -}
122.1 --- a/perl-ipc-system-simple/receipt Thu Dec 06 20:27:31 2018 +0200 122.2 +++ b/perl-ipc-system-simple/receipt Tue Dec 11 23:38:35 2018 +0200 122.3 @@ -1,29 +1,24 @@ 122.4 # SliTaz package receipt v2. 122.5 122.6 +ORIGIN="IPC-System-Simple" 122.7 PACKAGE="perl-ipc-system-simple" 122.8 VERSION="1.25" 122.9 +AUTHOR="PJF" 122.10 CATEGORY="perl" 122.11 SHORT_DESC="IPC::System::Simple - Run commands simply, with detailed \ 122.12 diagnostics" 122.13 MAINTAINER="al.bobylev@gmail.com" 122.14 LICENSE="GPL" 122.15 -WEB_SITE="https://metacpan.org/release/IPC-System-Simple" 122.16 -REPOLOGY="perl:ipc-system-simple" 122.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 122.18 +HOST_ARCH="any" 122.19 +REPOLOGY="${PACKAGE/-/:}" 122.20 122.21 -TARBALL="IPC-System-Simple-$VERSION.tar.gz" 122.22 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PJ/PJF/$TARBALL" 122.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 122.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 122.25 122.26 -BUILD_DEPENDS="perl" 122.27 +DEPENDS_std="perl" 122.28 +BUILD_DEPENDS="$DEPENDS_std" 122.29 122.30 compile_rules() { 122.31 - perl Makefile.PL && 122.32 - make && 122.33 - make DESTDIR=$install install && 122.34 - 122.35 - chmod -R u+w $install 122.36 + cook_perl 122.37 } 122.38 - 122.39 -genpkg_rules() { 122.40 - copy @std 122.41 - DEPENDS="perl" 122.42 -}
123.1 --- a/perl-jcode/receipt Thu Dec 06 20:27:31 2018 +0200 123.2 +++ b/perl-jcode/receipt Tue Dec 11 23:38:35 2018 +0200 123.3 @@ -1,28 +1,23 @@ 123.4 # SliTaz package receipt. 123.5 123.6 +ORIGIN="Jcode" 123.7 PACKAGE="perl-jcode" 123.8 VERSION="2.07" 123.9 +AUTHOR="DANKOGAI" 123.10 CATEGORY="perl" 123.11 SHORT_DESC="Jcode - Japanese Charset Handler" 123.12 MAINTAINER="pascal.bellard@slitaz.org" 123.13 LICENSE="GPL" 123.14 -WEB_SITE="https://metacpan.org/release/Jcode" 123.15 -REPOLOGY="perl:jcode" 123.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 123.17 +HOST_ARCH="any" 123.18 +REPOLOGY="${PACKAGE/-/:}" 123.19 123.20 -TARBALL="Jcode-$VERSION.tar.gz" 123.21 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/$TARBALL" 123.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 123.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 123.24 123.25 -BUILD_DEPENDS="perl" 123.26 +DEPENDS_std="perl" 123.27 +BUILD_DEPENDS="$DEPENDS_std" 123.28 123.29 compile_rules() { 123.30 - perl Makefile.PL && 123.31 - make && 123.32 - make DESTDIR=$install install && 123.33 - 123.34 - chmod -R u+w $install 123.35 + cook_perl 123.36 } 123.37 - 123.38 -genpkg_rules() { 123.39 - copy @std 123.40 - DEPENDS="perl" 123.41 -}
124.1 --- a/perl-json/receipt Thu Dec 06 20:27:31 2018 +0200 124.2 +++ b/perl-json/receipt Tue Dec 11 23:38:35 2018 +0200 124.3 @@ -1,28 +1,23 @@ 124.4 -# SliTaz package receipt. 124.5 +# SliTaz package receipt v2. 124.6 124.7 +ORIGIN="JSON" 124.8 PACKAGE="perl-json" 124.9 -VERSION="2.97001" 124.10 +VERSION="4.00" 124.11 +AUTHOR="ISHIGAKI" 124.12 CATEGORY="perl" 124.13 SHORT_DESC="JSON - JSON (JavaScript Object Notation) encoder/decoder" 124.14 MAINTAINER="devel@slitaz.org" 124.15 LICENSE="GPL" 124.16 -WEB_SITE="https://metacpan.org/release/JSON" 124.17 -REPOLOGY="perl:json" 124.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 124.19 +HOST_ARCH="any" 124.20 +REPOLOGY="${PACKAGE/-/:}" 124.21 124.22 -TARBALL="JSON-$VERSION.tar.gz" 124.23 -WGET_URL="https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/$TARBALL" 124.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 124.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 124.26 124.27 -BUILD_DEPENDS="perl" 124.28 +DEPENDS_std="perl" 124.29 +BUILD_DEPENDS="$DEPENDS_std" 124.30 124.31 compile_rules() { 124.32 - perl Makefile.PL && 124.33 - make && 124.34 - make DESTDIR=$install install && 124.35 - 124.36 - chmod -R u+w $install 124.37 + cook_perl 124.38 } 124.39 - 124.40 -genpkg_rules() { 124.41 - copy @std 124.42 - DEPENDS="perl" 124.43 -}
125.1 --- a/perl-lchown/receipt Thu Dec 06 20:27:31 2018 +0200 125.2 +++ b/perl-lchown/receipt Tue Dec 11 23:38:35 2018 +0200 125.3 @@ -1,28 +1,22 @@ 125.4 -# SliTaz package receipt. 125.5 +# SliTaz package receipt v2. 125.6 125.7 +ORIGIN="Lchown" 125.8 PACKAGE="perl-lchown" 125.9 VERSION="1.01" 125.10 +AUTHOR="NCLEATON" 125.11 CATEGORY="perl" 125.12 SHORT_DESC="Lchown - use the lchown(2) system call from Perl" 125.13 MAINTAINER="pascal.bellard@slitaz.org" 125.14 LICENSE="GPL" 125.15 -WEB_SITE="https://metacpan.org/release/Lchown" 125.16 -REPOLOGY="perl:lchown" 125.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 125.18 +REPOLOGY="${PACKAGE/-/:}" 125.19 125.20 -TARBALL="Lchown-$VERSION.tar.gz" 125.21 -WGET_URL="https://cpan.metacpan.org/authors/id/N/NC/NCLEATON/$TARBALL" 125.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 125.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 125.24 125.25 -BUILD_DEPENDS="perl-dev perl-module-build" 125.26 +DEPENDS_std="perl" 125.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev perl-module-build" 125.28 125.29 compile_rules() { 125.30 - perl Makefile.PL && 125.31 - make && 125.32 - make DESTDIR=$install install && 125.33 - 125.34 - chmod -R u+w $install 125.35 + cook_perl 125.36 } 125.37 - 125.38 -genpkg_rules() { 125.39 - copy @std 125.40 - DEPENDS="perl" 125.41 -}
126.1 --- a/perl-libnet/receipt Thu Dec 06 20:27:31 2018 +0200 126.2 +++ b/perl-libnet/receipt Tue Dec 11 23:38:35 2018 +0200 126.3 @@ -1,30 +1,23 @@ 126.4 -# SliTaz package receipt. 126.5 +# SliTaz package receipt v2. 126.6 126.7 +ORIGIN="libnet" 126.8 PACKAGE="perl-libnet" 126.9 VERSION="3.11" 126.10 +AUTHOR="SHAY" 126.11 CATEGORY="perl" 126.12 SHORT_DESC="Collection of network protocol modules" 126.13 MAINTAINER="al.bobylev@gmail.com" 126.14 LICENSE="GPL" 126.15 -WEB_SITE="https://metacpan.org/release/libnet" 126.16 -REPOLOGY="perl:libnet" 126.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 126.18 +HOST_ARCH="any" 126.19 +REPOLOGY="${PACKAGE/-/:}" 126.20 126.21 -TARBALL="libnet-$VERSION.tar.gz" 126.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SH/SHAY/$TARBALL" 126.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 126.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 126.25 126.26 -BUILD_DEPENDS="perl" 126.27 +DEPENDS_std="perl" 126.28 +BUILD_DEPENDS="$DEPENDS_std" 126.29 126.30 compile_rules() { 126.31 - # avoid interactive questions 126.32 - PERL_MM_USE_DEFAULT=1 \ 126.33 - perl Makefile.PL && 126.34 - make && 126.35 - make DESTDIR=$install install && 126.36 - 126.37 - chmod -R u+w $install 126.38 + cook_perl 126.39 } 126.40 - 126.41 -genpkg_rules() { 126.42 - copy @std 126.43 - DEPENDS="perl" 126.44 -}
127.1 --- a/perl-libwww-perl/receipt Thu Dec 06 20:27:31 2018 +0200 127.2 +++ b/perl-libwww-perl/receipt Tue Dec 11 23:38:35 2018 +0200 127.3 @@ -1,31 +1,26 @@ 127.4 # SliTaz package receipt v2. 127.5 127.6 +ORIGIN="libwww-perl" 127.7 PACKAGE="perl-libwww-perl" 127.8 VERSION="6.36" 127.9 +AUTHOR="ETHER" 127.10 CATEGORY="perl" 127.11 SHORT_DESC="The World-Wide Web library for Perl" 127.12 MAINTAINER="al.bobylev@gmail.com" 127.13 LICENSE="GPL" 127.14 -WEB_SITE="https://metacpan.org/release/libwww-perl" 127.15 -REPOLOGY="perl:libwww-perl" 127.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 127.17 +HOST_ARCH="any" 127.18 +REPOLOGY="${PACKAGE/-/:}" 127.19 127.20 -TARBALL="libwww-perl-$VERSION.tar.gz" 127.21 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 127.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 127.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 127.24 127.25 -BUILD_DEPENDS="perl-encode-locale perl-file-listing perl-html-parser \ 127.26 +DEPENDS_std="perl-encode-locale perl-file-listing perl-html-parser \ 127.27 perl-http-cookies perl-http-daemon perl-http-date perl-http-negotiate \ 127.28 perl-http-message perl-lwp-mediatypes perl-net-http perl-try-tiny perl-uri \ 127.29 perl-www-robotrules perl-test-fatal perl-test-requiresinternet" 127.30 +BUILD_DEPENDS="$DEPENDS_std" 127.31 127.32 compile_rules() { 127.33 - perl Makefile.PL && 127.34 - make && 127.35 - make DESTDIR=$install install && 127.36 - 127.37 - chmod -R u+w $install 127.38 + cook_perl 127.39 } 127.40 - 127.41 -genpkg_rules() { 127.42 - copy @std 127.43 - DEPENDS="$BUILD_DEPENDS" 127.44 -}
128.1 --- a/perl-linux-inotify2/receipt Thu Dec 06 20:27:31 2018 +0200 128.2 +++ b/perl-linux-inotify2/receipt Tue Dec 11 23:38:35 2018 +0200 128.3 @@ -1,28 +1,22 @@ 128.4 # SliTaz package receipt v2. 128.5 128.6 +ORIGIN="Linux-Inotify2" 128.7 PACKAGE="perl-linux-inotify2" 128.8 -VERSION="1.22" 128.9 +VERSION="2.1" 128.10 +AUTHOR="MLEHMANN" 128.11 CATEGORY="perl" 128.12 SHORT_DESC="Linux::Inotify2 - scalable directory/file change notification" 128.13 MAINTAINER="pascal.bellard@slitaz.org" 128.14 LICENSE="GPL" 128.15 -WEB_SITE="https://metacpan.org/release/Linux-Inotify2" 128.16 -REPOLOGY="perl:linux-inotify2" 128.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 128.18 +REPOLOGY="${PACKAGE/-/:}" 128.19 128.20 -TARBALL="Linux-Inotify2-$VERSION.tar.gz" 128.21 -WGET_URL="https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/$TARBALL" 128.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 128.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 128.24 128.25 -BUILD_DEPENDS="perl-common-sense perl-dev" 128.26 +DEPENDS_std="perl-common-sense" 128.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 128.28 128.29 compile_rules() { 128.30 - perl Makefile.PL && 128.31 - make && 128.32 - make DESTDIR=$install install && 128.33 - 128.34 - chmod -R u+w $install 128.35 + cook_perl 128.36 } 128.37 - 128.38 -genpkg_rules() { 128.39 - copy @std 128.40 - DEPENDS="perl-common-sense" 128.41 -}
129.1 --- a/perl-list-moreutils-xs/receipt Thu Dec 06 20:27:31 2018 +0200 129.2 +++ b/perl-list-moreutils-xs/receipt Tue Dec 11 23:38:35 2018 +0200 129.3 @@ -1,28 +1,22 @@ 129.4 # SliTaz package receipt v2. 129.5 129.6 +ORIGIN="List-MoreUtils-XS" 129.7 PACKAGE="perl-list-moreutils-xs" 129.8 VERSION="0.428" 129.9 +AUTHOR="REHSACK" 129.10 CATEGORY="perl" 129.11 SHORT_DESC="List::MoreUtils::XS - Provide compiled List::MoreUtils functions" 129.12 MAINTAINER="al.bobylev@gmail.com" 129.13 LICENSE="GPL" 129.14 -WEB_SITE="https://metacpan.org/release/List-MoreUtils-XS" 129.15 -REPOLOGY="perl:list-moreutils-xs" 129.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 129.17 +REPOLOGY="${PACKAGE/-/:}" 129.18 129.19 -TARBALL="List-MoreUtils-XS-$VERSION.tar.gz" 129.20 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RE/REHSACK/$TARBALL" 129.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 129.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 129.23 129.24 -BUILD_DEPENDS="perl-dev" 129.25 +DEPENDS_std="perl" 129.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 129.27 129.28 compile_rules() { 129.29 - perl Makefile.PL && 129.30 - make && 129.31 - make DESTDIR=$install install && 129.32 - 129.33 - chmod -R u+w $install 129.34 + cook_perl 129.35 } 129.36 - 129.37 -genpkg_rules() { 129.38 - copy @std 129.39 - DEPENDS="perl" 129.40 -}
130.1 --- a/perl-list-moreutils/receipt Thu Dec 06 20:27:31 2018 +0200 130.2 +++ b/perl-list-moreutils/receipt Tue Dec 11 23:38:35 2018 +0200 130.3 @@ -1,28 +1,23 @@ 130.4 # SliTaz package receipt v2. 130.5 130.6 +ORIGIN="List-MoreUtils" 130.7 PACKAGE="perl-list-moreutils" 130.8 VERSION="0.428" 130.9 +AUTHOR="REHSACK" 130.10 CATEGORY="perl" 130.11 SHORT_DESC="List::MoreUtils - Provide the stuff missing in List::Util" 130.12 MAINTAINER="devel@slitaz.org" 130.13 LICENSE="GPL" 130.14 -WEB_SITE="https://metacpan.org/release/List-MoreUtils" 130.15 -REPOLOGY="perl:list-moreutils" 130.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 130.17 +HOST_ARCH="any" 130.18 +REPOLOGY="${PACKAGE/-/:}" 130.19 130.20 -TARBALL="List-MoreUtils-$VERSION.tar.gz" 130.21 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RE/REHSACK/$TARBALL" 130.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 130.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 130.24 130.25 -BUILD_DEPENDS="perl-dev perl-exporter-tiny perl-list-moreutils-xs" 130.26 +DEPENDS_std="perl-exporter-tiny perl-list-moreutils-xs" 130.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 130.28 130.29 compile_rules() { 130.30 - perl Makefile.PL && 130.31 - make && 130.32 - make DESTDIR=$install install && 130.33 - 130.34 - chmod -R u+w $install 130.35 + cook_perl 130.36 } 130.37 - 130.38 -genpkg_rules() { 130.39 - copy @std 130.40 - DEPENDS="perl-exporter-tiny perl-list-moreutils-xs" 130.41 -}
131.1 --- a/perl-locale-gettext/receipt Thu Dec 06 20:27:31 2018 +0200 131.2 +++ b/perl-locale-gettext/receipt Tue Dec 11 23:38:35 2018 +0200 131.3 @@ -1,28 +1,22 @@ 131.4 # SliTaz package receipt v2. 131.5 131.6 +ORIGIN="gettext" 131.7 PACKAGE="perl-locale-gettext" 131.8 VERSION="1.07" 131.9 +AUTHOR="PVANDRY" 131.10 CATEGORY="perl" 131.11 SHORT_DESC="Locale::gettext - message handling functions" 131.12 MAINTAINER="devel@slitaz.org" 131.13 LICENSE="GPL" 131.14 -WEB_SITE="https://metacpan.org/release/gettext" 131.15 -REPOLOGY="perl:locale-gettext" 131.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 131.17 +REPOLOGY="${PACKAGE/-/:}" 131.18 131.19 -TARBALL="gettext-$VERSION.tar.gz" 131.20 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PV/PVANDRY/$TARBALL" 131.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 131.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 131.23 131.24 -BUILD_DEPENDS="perl-dev gettext-base" 131.25 +DEPENDS_std="perl gettext-base" 131.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 131.27 131.28 compile_rules() { 131.29 - perl Makefile.PL && 131.30 - make && 131.31 - make DESTDIR=$install install && 131.32 - 131.33 - chmod -R u+w $install 131.34 + cook_perl 131.35 } 131.36 - 131.37 -genpkg_rules() { 131.38 - copy @std 131.39 - DEPENDS="perl gettext-base" 131.40 -}
132.1 --- a/perl-locale-maketext-gettext/receipt Thu Dec 06 20:27:31 2018 +0200 132.2 +++ b/perl-locale-maketext-gettext/receipt Tue Dec 11 23:38:35 2018 +0200 132.3 @@ -1,29 +1,24 @@ 132.4 # SliTaz package receipt v2. 132.5 132.6 +ORIGIN="Locale-Maketext-Gettext" 132.7 PACKAGE="perl-locale-maketext-gettext" 132.8 VERSION="1.28" 132.9 +AUTHOR="IMACAT" 132.10 CATEGORY="perl" 132.11 SHORT_DESC="Locale::Maketext::Gettext - Joins the gettext and Maketext \ 132.12 frameworks" 132.13 MAINTAINER="devel@slitaz.org" 132.14 LICENSE="GPL3" 132.15 -WEB_SITE="https://metacpan.org/release/Locale-Maketext-Gettext" 132.16 -REPOLOGY="perl:locale-maketext-gettext" 132.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 132.18 +HOST_ARCH="any" 132.19 +REPOLOGY="${PACKAGE/-/:}" 132.20 132.21 -TARBALL="Locale-Maketext-Gettext-$VERSION.tar.gz" 132.22 -WGET_URL="https://cpan.metacpan.org/authors/id/I/IM/IMACAT/$TARBALL" 132.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 132.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 132.25 132.26 -BUILD_DEPENDS="perl" 132.27 +DEPENDS_std="perl" 132.28 +BUILD_DEPENDS="$DEPENDS_std" 132.29 132.30 compile_rules() { 132.31 - perl Makefile.PL && 132.32 - make && 132.33 - make DESTDIR=$install install && 132.34 - 132.35 - chmod -R u+w $install 132.36 + cook_perl 132.37 } 132.38 - 132.39 -genpkg_rules() { 132.40 - copy @std 132.41 - DEPENDS="perl" 132.42 -}
133.1 --- a/perl-locale-maketext-lexicon/receipt Thu Dec 06 20:27:31 2018 +0200 133.2 +++ b/perl-locale-maketext-lexicon/receipt Tue Dec 11 23:38:35 2018 +0200 133.3 @@ -1,28 +1,23 @@ 133.4 -# SliTaz package receipt. 133.5 +# SliTaz package receipt v2. 133.6 133.7 +ORIGIN="Locale-Maketext-Lexicon" 133.8 PACKAGE="perl-locale-maketext-lexicon" 133.9 VERSION="1.00" 133.10 +AUTHOR="DRTECH" 133.11 CATEGORY="perl" 133.12 SHORT_DESC="Locale::Maketext::Lexicon - Use other catalog formats in Maketext" 133.13 MAINTAINER="pascal.bellard@slitaz.org" 133.14 LICENSE="GPL" 133.15 -WEB_SITE="https://metacpan.org/release/Locale-Maketext-Lexicon" 133.16 -REPOLOGY="perl:locale-maketext-lexicon" 133.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 133.18 +HOST_ARCH="any" 133.19 +REPOLOGY="${PACKAGE/-/:}" 133.20 133.21 -TARBALL="Locale-Maketext-Lexicon-$VERSION.tar.gz" 133.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DRTECH/$TARBALL" 133.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 133.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 133.25 133.26 -BUILD_DEPENDS="perl" 133.27 +DEPENDS_std="perl" 133.28 +BUILD_DEPENDS="$DEPENDS_std" 133.29 133.30 compile_rules() { 133.31 - perl Makefile.PL && 133.32 - make && 133.33 - make DESTDIR=$install install && 133.34 - 133.35 - chmod -R u+w $install 133.36 + cook_perl 133.37 } 133.38 - 133.39 -genpkg_rules() { 133.40 - copy @std 133.41 - DEPENDS="perl" 133.42 -}
134.1 --- a/perl-log-agent/receipt Thu Dec 06 20:27:31 2018 +0200 134.2 +++ b/perl-log-agent/receipt Tue Dec 11 23:38:35 2018 +0200 134.3 @@ -1,28 +1,23 @@ 134.4 # SliTaz package receipt v2. 134.5 134.6 +ORIGIN="Log-Agent" 134.7 PACKAGE="perl-log-agent" 134.8 VERSION="1.003" 134.9 +AUTHOR="MROGASKI" 134.10 CATEGORY="perl" 134.11 SHORT_DESC="Log::Agent - logging agent" 134.12 MAINTAINER="pascal.bellard@slitaz.org" 134.13 LICENSE="GPL" 134.14 -WEB_SITE="https://metacpan.org/release/Log-Agent" 134.15 -REPOLOGY="perl:log-agent" 134.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 134.17 +HOST_ARCH="any" 134.18 +REPOLOGY="${PACKAGE/-/:}" 134.19 134.20 -TARBALL="Log-Agent-$VERSION.tar.gz" 134.21 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MR/MROGASKI/$TARBALL" 134.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 134.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 134.24 134.25 -BUILD_DEPENDS="perl" 134.26 +DEPENDS_std="perl" 134.27 +BUILD_DEPENDS="$DEPENDS_std" 134.28 134.29 compile_rules() { 134.30 - perl Makefile.PL && 134.31 - make && 134.32 - make DESTDIR=$install install && 134.33 - 134.34 - chmod -R u+w $install 134.35 + cook_perl 134.36 } 134.37 - 134.38 -genpkg_rules() { 134.39 - copy @std 134.40 - DEPENDS="perl" 134.41 -}
135.1 --- a/perl-lwp-mediatypes/receipt Thu Dec 06 20:27:31 2018 +0200 135.2 +++ b/perl-lwp-mediatypes/receipt Tue Dec 11 23:38:35 2018 +0200 135.3 @@ -1,28 +1,23 @@ 135.4 # SliTaz package receipt v2. 135.5 135.6 +ORIGIN="LWP-MediaTypes" 135.7 PACKAGE="perl-lwp-mediatypes" 135.8 VERSION="6.02" 135.9 +AUTHOR="GAAS" 135.10 CATEGORY="perl" 135.11 SHORT_DESC="LWP::MediaTypes - guess media type for a file or a URL" 135.12 MAINTAINER="devel@slitaz.org" 135.13 LICENSE="GPL" 135.14 -WEB_SITE="https://metacpan.org/release/LWP-MediaTypes" 135.15 -REPOLOGY="perl:lwp-mediatypes" 135.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 135.17 +HOST_ARCH="any" 135.18 +REPOLOGY="${PACKAGE/-/:}" 135.19 135.20 -TARBALL="LWP-MediaTypes-$VERSION.tar.gz" 135.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 135.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 135.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 135.24 135.25 -BUILD_DEPENDS="perl" 135.26 +DEPENDS_std="perl" 135.27 +BUILD_DEPENDS="$DEPENDS_std" 135.28 135.29 compile_rules() { 135.30 - perl Makefile.PL && 135.31 - make && 135.32 - make DESTDIR=$install install && 135.33 - 135.34 - chmod -R u+w $install 135.35 + cook_perl 135.36 } 135.37 - 135.38 -genpkg_rules() { 135.39 - copy @std 135.40 - DEPENDS="perl" 135.41 -}
136.1 --- a/perl-lwp-protocol-https/receipt Thu Dec 06 20:27:31 2018 +0200 136.2 +++ b/perl-lwp-protocol-https/receipt Tue Dec 11 23:38:35 2018 +0200 136.3 @@ -1,28 +1,23 @@ 136.4 # SliTaz package receipt v2. 136.5 136.6 +ORIGIN="LWP-Protocol-https" 136.7 PACKAGE="perl-lwp-protocol-https" 136.8 VERSION="6.07" 136.9 +AUTHOR="OALDERS" 136.10 CATEGORY="perl" 136.11 SHORT_DESC="LWP::Protocol::https - Provide https support for LWP::UserAgent" 136.12 MAINTAINER="al.bobylev@gmail.com" 136.13 LICENSE="GPL" 136.14 -WEB_SITE="https://metacpan.org/release/LWP-Protocol-https" 136.15 -REPOLOGY="perl:lwp-protocol-https" 136.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 136.17 +HOST_ARCH="any" 136.18 +REPOLOGY="${PACKAGE/-/:}" 136.19 136.20 -TARBALL="LWP-Protocol-https-$VERSION.tar.gz" 136.21 -WGET_URL="https://cpan.metacpan.org/authors/id/O/OA/OALDERS/$TARBALL" 136.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 136.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 136.24 136.25 -BUILD_DEPENDS="perl-io-socket-ssl perl-libwww-perl perl-mozilla-ca perl-net-http" 136.26 +DEPENDS_std="perl-io-socket-ssl perl-libwww-perl perl-mozilla-ca perl-net-http" 136.27 +BUILD_DEPENDS="$DEPENDS_std" 136.28 136.29 compile_rules() { 136.30 - perl Makefile.PL && 136.31 - make && 136.32 - make DESTDIR=$install install && 136.33 - 136.34 - chmod -R u+w $install 136.35 + cook_perl 136.36 } 136.37 - 136.38 -genpkg_rules() { 136.39 - copy @std 136.40 - DEPENDS="perl-io-socket-ssl perl-libwww-perl perl-mozilla-ca perl-net-http" 136.41 -}
137.1 --- a/perl-mail-sendmail/receipt Thu Dec 06 20:27:31 2018 +0200 137.2 +++ b/perl-mail-sendmail/receipt Tue Dec 11 23:38:35 2018 +0200 137.3 @@ -1,28 +1,23 @@ 137.4 -# SliTaz package receipt. 137.5 +# SliTaz package receipt v2. 137.6 137.7 +ORIGIN="Mail-Sendmail" 137.8 PACKAGE="perl-mail-sendmail" 137.9 VERSION="0.80" 137.10 +AUTHOR="NEILB" 137.11 CATEGORY="perl" 137.12 SHORT_DESC="Mail::Sendmail - Simple platform independent mailer" 137.13 MAINTAINER="pascal.bellard@slitaz.org" 137.14 LICENSE="GPL" 137.15 -WEB_SITE="https://metacpan.org/release/Mail-Sendmail" 137.16 -REPOLOGY="perl:mail-sendmail" 137.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 137.18 +HOST_ARCH="any" 137.19 +REPOLOGY="${PACKAGE/-/:}" 137.20 137.21 -TARBALL="Mail-Sendmail-$VERSION.tar.gz" 137.22 -WGET_URL="https://cpan.metacpan.org/authors/id/N/NE/NEILB/$TARBALL" 137.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 137.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 137.25 137.26 -BUILD_DEPENDS="perl" 137.27 +DEPENDS_std="perl" 137.28 +BUILD_DEPENDS="$DEPENDS_std" 137.29 137.30 compile_rules() { 137.31 - perl Makefile.PL && 137.32 - make && 137.33 - make DESTDIR=$install install && 137.34 - 137.35 - chmod -R u+w $install 137.36 + cook_perl 137.37 } 137.38 - 137.39 -genpkg_rules() { 137.40 - copy @std 137.41 - DEPENDS="perl" 137.42 -}
138.1 --- a/perl-mailtools/receipt Thu Dec 06 20:27:31 2018 +0200 138.2 +++ b/perl-mailtools/receipt Tue Dec 11 23:38:35 2018 +0200 138.3 @@ -1,28 +1,23 @@ 138.4 -# SliTaz package receipt. 138.5 +# SliTaz package receipt v2. 138.6 138.7 +ORIGIN="MailTools" 138.8 PACKAGE="perl-mailtools" 138.9 VERSION="2.20" 138.10 +AUTHOR="MARKOV" 138.11 CATEGORY="perl" 138.12 SHORT_DESC="Various e-mail related modules" 138.13 MAINTAINER="pascal.bellard@slitaz.org" 138.14 LICENSE="GPL" 138.15 -WEB_SITE="https://metacpan.org/release/MailTools" 138.16 -REPOLOGY="perl:mailtools" 138.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 138.18 +HOST_ARCH="any" 138.19 +REPOLOGY="${PACKAGE/-/:}" 138.20 138.21 -TARBALL="MailTools-$VERSION.tar.gz" 138.22 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MA/MARKOV/$TARBALL" 138.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 138.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 138.25 138.26 -BUILD_DEPENDS="perl-timedate" 138.27 +DEPENDS_std="perl-timedate" 138.28 +BUILD_DEPENDS="$DEPENDS_std" 138.29 138.30 compile_rules() { 138.31 - perl Makefile.PL && 138.32 - make && 138.33 - make DESTDIR=$install install && 138.34 - 138.35 - chmod -R u+w $install 138.36 + cook_perl 138.37 } 138.38 - 138.39 -genpkg_rules() { 138.40 - copy @std 138.41 - DEPENDS="perl-timedate" 138.42 -}
139.1 --- a/perl-math-round/receipt Thu Dec 06 20:27:31 2018 +0200 139.2 +++ b/perl-math-round/receipt Tue Dec 11 23:38:35 2018 +0200 139.3 @@ -1,29 +1,24 @@ 139.4 -# SliTaz package receipt. 139.5 +# SliTaz package receipt v2. 139.6 139.7 +ORIGIN="Math-Round" 139.8 PACKAGE="perl-math-round" 139.9 VERSION="0.07" 139.10 +AUTHOR="GROMMEL" 139.11 CATEGORY="perl" 139.12 SHORT_DESC="Math::Round - Perl extension for rounding numbers" 139.13 MAINTAINER="devel@slitaz.org" 139.14 LICENSE="GPL" 139.15 -WEB_SITE="https://metacpan.org/release/Math-Round" 139.16 -REPOLOGY="perl:math-round" 139.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 139.18 +HOST_ARCH="any" 139.19 +REPOLOGY="${PACKAGE/-/:}" 139.20 139.21 -TARBALL="Math-Round-$VERSION.tar.gz" 139.22 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GR/GROMMEL/$TARBALL" 139.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 139.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 139.25 139.26 -BUILD_DEPENDS="perl" 139.27 +DEPENDS_std="perl" 139.28 +BUILD_DEPENDS="$DEPENDS_std" 139.29 139.30 compile_rules() { 139.31 - perl Makefile.PL && 139.32 - make && 139.33 - make DESTDIR=$install install && 139.34 - 139.35 - chmod -R u+w $install && 139.36 + cook_perl && 139.37 find $install -type f -exec dos2unix '{}' \; 139.38 } 139.39 - 139.40 -genpkg_rules() { 139.41 - copy @std 139.42 - DEPENDS="perl" 139.43 -}
140.1 --- a/perl-mime-lite/receipt Thu Dec 06 20:27:31 2018 +0200 140.2 +++ b/perl-mime-lite/receipt Tue Dec 11 23:38:35 2018 +0200 140.3 @@ -1,28 +1,23 @@ 140.4 -# SliTaz package receipt. 140.5 +# SliTaz package receipt v2. 140.6 140.7 +ORIGIN="MIME-Lite" 140.8 PACKAGE="perl-mime-lite" 140.9 VERSION="3.030" 140.10 +AUTHOR="RJBS" 140.11 CATEGORY="perl" 140.12 SHORT_DESC="MIME::Lite - low-calorie MIME generator" 140.13 MAINTAINER="pascal.bellard@slitaz.org" 140.14 LICENSE="GPL" 140.15 -WEB_SITE="https://metacpan.org/release/MIME-Lite" 140.16 -REPOLOGY="perl:mime-lite" 140.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 140.18 +HOST_ARCH="any" 140.19 +REPOLOGY="${PACKAGE/-/:}" 140.20 140.21 -TARBALL="MIME-Lite-$VERSION.tar.gz" 140.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RJ/RJBS/$TARBALL" 140.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 140.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 140.25 140.26 -BUILD_DEPENDS="perl-email-date-format perl-mime-types perl-mailtools" 140.27 +DEPENDS_std="perl-email-date-format perl-mime-types perl-mailtools" 140.28 +BUILD_DEPENDS="$DEPENDS_std" 140.29 140.30 compile_rules() { 140.31 - perl Makefile.PL && 140.32 - make && 140.33 - make DESTDIR=$install install && 140.34 - 140.35 - chmod -R u+w $install 140.36 + cook_perl 140.37 } 140.38 - 140.39 -genpkg_rules() { 140.40 - copy @std 140.41 - DEPENDS="perl-email-date-format perl-mime-types perl-mailtools" 140.42 -}
141.1 --- a/perl-mime-types/receipt Thu Dec 06 20:27:31 2018 +0200 141.2 +++ b/perl-mime-types/receipt Tue Dec 11 23:38:35 2018 +0200 141.3 @@ -1,28 +1,23 @@ 141.4 # SliTaz package receipt v2. 141.5 141.6 +ORIGIN="MIME-Types" 141.7 PACKAGE="perl-mime-types" 141.8 VERSION="2.17" 141.9 +AUTHOR="MARKOV" 141.10 CATEGORY="perl" 141.11 SHORT_DESC="MIME::Types - Definition of MIME types" 141.12 MAINTAINER="pascal.bellard@slitaz.org" 141.13 LICENSE="GPL" 141.14 -WEB_SITE="https://metacpan.org/release/MIME-Types" 141.15 -REPOLOGY="perl:mime-types" 141.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 141.17 +HOST_ARCH="any" 141.18 +REPOLOGY="${PACKAGE/-/:}" 141.19 141.20 -TARBALL="MIME-Types-$VERSION.tar.gz" 141.21 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MA/MARKOV/$TARBALL" 141.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 141.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 141.24 141.25 -BUILD_DEPENDS="perl" 141.26 +DEPENDS_std="perl" 141.27 +BUILD_DEPENDS="$DEPENDS_std" 141.28 141.29 compile_rules() { 141.30 - perl Makefile.PL && 141.31 - make && 141.32 - make DESTDIR=$install install && 141.33 - 141.34 - chmod -R u+w $install 141.35 + cook_perl 141.36 } 141.37 - 141.38 -genpkg_rules() { 141.39 - copy @std 141.40 - DEPENDS="perl" 141.41 -}
142.1 --- a/perl-mock-config/receipt Thu Dec 06 20:27:31 2018 +0200 142.2 +++ b/perl-mock-config/receipt Tue Dec 11 23:38:35 2018 +0200 142.3 @@ -1,28 +1,23 @@ 142.4 # SliTaz package receipt v2. 142.5 142.6 +ORIGIN="Mock-Config" 142.7 PACKAGE="perl-mock-config" 142.8 VERSION="0.03" 142.9 +AUTHOR="RURBAN" 142.10 CATEGORY="perl" 142.11 SHORT_DESC="Mock::Config - temporarily set Config or XSConfig values" 142.12 MAINTAINER="al.bobylev@gmail.com" 142.13 LICENSE="GPL" 142.14 -WEB_SITE="https://metacpan.org/release/Mock-Config" 142.15 -REPOLOGY="perl:mock-config" 142.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 142.17 +HOST_ARCH="any" 142.18 +REPOLOGY="${PACKAGE/-/:}" 142.19 142.20 -TARBALL="Mock-Config-$VERSION.tar.gz" 142.21 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RU/RURBAN/$TARBALL" 142.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 142.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 142.24 142.25 -BUILD_DEPENDS="perl" 142.26 +DEPENDS_std="perl" 142.27 +BUILD_DEPENDS="$DEPENDS_std" 142.28 142.29 compile_rules() { 142.30 - perl Makefile.PL && 142.31 - make && 142.32 - make DESTDIR=$install install && 142.33 - 142.34 - chmod -R u+w $install 142.35 + cook_perl 142.36 } 142.37 - 142.38 -genpkg_rules() { 142.39 - copy @std 142.40 - DEPENDS="perl" 142.41 -}
143.1 --- a/perl-module-build-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 143.2 +++ b/perl-module-build-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 143.3 @@ -1,19 +1,23 @@ 143.4 -# SliTaz package receipt. 143.5 +# SliTaz package receipt v2. 143.6 143.7 +ORIGIN="Module-Build-Tiny" 143.8 PACKAGE="perl-module-build-tiny" 143.9 VERSION="0.039" 143.10 +AUTHOR="LEONT" 143.11 CATEGORY="perl" 143.12 SHORT_DESC="Module::Build::Tiny - A tiny replacement for Module::Build" 143.13 MAINTAINER="al.bobylev@gmail.com" 143.14 LICENSE="GPL" 143.15 -WEB_SITE="https://metacpan.org/release/Module-Build-Tiny" 143.16 -REPOLOGY="perl:module-build-tiny" 143.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 143.18 +HOST_ARCH="any" 143.19 +REPOLOGY="${PACKAGE/-/:}" 143.20 143.21 -TARBALL="Module-Build-Tiny-$VERSION.tar.gz" 143.22 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LE/LEONT/$TARBALL" 143.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 143.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 143.25 143.26 -BUILD_DEPENDS="perl-extutils-config perl-extutils-helpers \ 143.27 +DEPENDS_std="perl-extutils-config perl-extutils-helpers \ 143.28 perl-extutils-installpaths" 143.29 +BUILD_DEPENDS="$DEPENDS_std" 143.30 143.31 compile_rules() { 143.32 perl Build.PL && 143.33 @@ -22,9 +26,3 @@ 143.34 143.35 chmod -R u+w $install 143.36 } 143.37 - 143.38 -genpkg_rules() { 143.39 - copy @std 143.40 - DEPENDS="perl-extutils-config perl-extutils-helpers \ 143.41 - perl-extutils-installpaths" 143.42 -}
144.1 --- a/perl-module-build/receipt Thu Dec 06 20:27:31 2018 +0200 144.2 +++ b/perl-module-build/receipt Tue Dec 11 23:38:35 2018 +0200 144.3 @@ -1,28 +1,23 @@ 144.4 -# SliTaz package receipt. 144.5 +# SliTaz package receipt v2. 144.6 144.7 +ORIGIN="Module-Build" 144.8 PACKAGE="perl-module-build" 144.9 VERSION="0.4224" 144.10 +AUTHOR="LEONT" 144.11 CATEGORY="perl" 144.12 SHORT_DESC="Module::Build - Build and install Perl modules" 144.13 MAINTAINER="al.bobylev@gmail.com" 144.14 LICENSE="GPL" 144.15 -WEB_SITE="https://metacpan.org/release/Module-Build" 144.16 -REPOLOGY="perl:module-build" 144.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 144.18 +HOST_ARCH="any" 144.19 +REPOLOGY="${PACKAGE/-/:}" 144.20 144.21 -TARBALL="Module-Build-$VERSION.tar.gz" 144.22 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LE/LEONT/$TARBALL" 144.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 144.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 144.25 144.26 -BUILD_DEPENDS="perl-inc-latest" 144.27 +DEPENDS_std="perl" 144.28 +BUILD_DEPENDS="$DEPENDS_std perl-inc-latest" 144.29 144.30 compile_rules() { 144.31 - perl Makefile.PL && 144.32 - make && 144.33 - make DESTDIR=$install install && 144.34 - 144.35 - chmod -R u+w $install 144.36 + cook_perl 144.37 } 144.38 - 144.39 -genpkg_rules() { 144.40 - copy @std 144.41 - DEPENDS="perl" 144.42 -}
145.1 --- a/perl-module-implementation/receipt Thu Dec 06 20:27:31 2018 +0200 145.2 +++ b/perl-module-implementation/receipt Tue Dec 11 23:38:35 2018 +0200 145.3 @@ -1,30 +1,24 @@ 145.4 # SliTaz package receipt v2. 145.5 145.6 +ORIGIN="Module-Implementation" 145.7 PACKAGE="perl-module-implementation" 145.8 VERSION="0.09" 145.9 +AUTHOR="DROLSKY" 145.10 CATEGORY="perl" 145.11 SHORT_DESC="Module::Implementation - Loads one of several alternate underlying \ 145.12 implementations for a module" 145.13 MAINTAINER="devel@slitaz.org" 145.14 LICENSE="GPL" 145.15 -WEB_SITE="https://metacpan.org/release/Module-Implementation" 145.16 -REPOLOGY="perl:module-implementation" 145.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 145.18 +HOST_ARCH="any" 145.19 +REPOLOGY="${PACKAGE/-/:}" 145.20 145.21 -TARBALL="Module-Implementation-$VERSION.tar.gz" 145.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 145.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 145.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 145.25 145.26 -BUILD_DEPENDS="perl-module-runtime perl-try-tiny perl-test-fatal \ 145.27 -perl-test-requires" 145.28 +DEPENDS_std="perl-module-runtime perl-try-tiny" 145.29 +BUILD_DEPENDS="$DEPENDS_std perl-test-fatal perl-test-requires" 145.30 145.31 compile_rules() { 145.32 - perl Makefile.PL && 145.33 - make && 145.34 - make DESTDIR=$install install && 145.35 - 145.36 - chmod -R u+w $install 145.37 + cook_perl 145.38 } 145.39 - 145.40 -genpkg_rules() { 145.41 - copy @std 145.42 - DEPENDS="perl-module-runtime perl-try-tiny" 145.43 -}
146.1 --- a/perl-module-install/receipt Thu Dec 06 20:27:31 2018 +0200 146.2 +++ b/perl-module-install/receipt Tue Dec 11 23:38:35 2018 +0200 146.3 @@ -1,29 +1,23 @@ 146.4 # SliTaz package receipt v2. 146.5 146.6 +ORIGIN="Module-Install" 146.7 PACKAGE="perl-module-install" 146.8 VERSION="1.19" 146.9 +AUTHOR="ETHER" 146.10 CATEGORY="perl" 146.11 SHORT_DESC="Module::Install - Standalone, extensible Perl module installer" 146.12 MAINTAINER="al.bobylev@gmail.com" 146.13 LICENSE="GPL" 146.14 -WEB_SITE="https://metacpan.org/release/Module-Install" 146.15 -REPOLOGY="perl:module-install" 146.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 146.17 +HOST_ARCH="any" 146.18 +REPOLOGY="${PACKAGE/-/:}" 146.19 146.20 -TARBALL="Module-Install-$VERSION.tar.gz" 146.21 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 146.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 146.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 146.24 146.25 -BUILD_DEPENDS="perl-file-remove perl-yaml-tiny perl-module-build \ 146.26 -perl-module-scandeps" 146.27 +DEPENDS_std="perl-file-remove perl-yaml-tiny perl-module-scandeps" 146.28 +BUILD_DEPENDS="$DEPENDS_std perl-module-build" 146.29 146.30 compile_rules() { 146.31 - perl Makefile.PL && 146.32 - make && 146.33 - make DESTDIR=$install install && 146.34 - 146.35 - chmod -R u+w $install 146.36 + cook_perl 146.37 } 146.38 - 146.39 -genpkg_rules() { 146.40 - copy @std 146.41 - DEPENDS="perl-file-remove perl-yaml-tiny perl-module-scandeps" 146.42 -}
147.1 --- a/perl-module-runtime/receipt Thu Dec 06 20:27:31 2018 +0200 147.2 +++ b/perl-module-runtime/receipt Tue Dec 11 23:38:35 2018 +0200 147.3 @@ -1,28 +1,23 @@ 147.4 -# SliTaz package receipt. 147.5 +# SliTaz package receipt v2. 147.6 147.7 +ORIGIN="Module-Runtime" 147.8 PACKAGE="perl-module-runtime" 147.9 VERSION="0.016" 147.10 +AUTHOR="ZEFRAM" 147.11 CATEGORY="perl" 147.12 SHORT_DESC="Module::Runtime - runtime module handling" 147.13 MAINTAINER="devel@slitaz.org" 147.14 LICENSE="GPL" 147.15 -WEB_SITE="https://metacpan.org/release/Module-Runtime" 147.16 -REPOLOGY="perl:module-runtime" 147.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 147.18 +HOST_ARCH="any" 147.19 +REPOLOGY="${PACKAGE/-/:}" 147.20 147.21 -TARBALL="Module-Runtime-$VERSION.tar.gz" 147.22 -WGET_URL="https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/$TARBALL" 147.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 147.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 147.25 147.26 -BUILD_DEPENDS="perl-module-build" 147.27 +DEPENDS_std="perl" 147.28 +BUILD_DEPENDS="$DEPENDS_std perl-module-build" 147.29 147.30 compile_rules() { 147.31 - perl Makefile.PL && 147.32 - make && 147.33 - make DESTDIR=$install install && 147.34 - 147.35 - chmod -R u+w $install 147.36 + cook_perl 147.37 } 147.38 - 147.39 -genpkg_rules() { 147.40 - copy @std 147.41 - DEPENDS="perl" 147.42 -}
148.1 --- a/perl-module-scandeps/receipt Thu Dec 06 20:27:31 2018 +0200 148.2 +++ b/perl-module-scandeps/receipt Tue Dec 11 23:38:35 2018 +0200 148.3 @@ -1,28 +1,23 @@ 148.4 # SliTaz package receipt v2. 148.5 148.6 +ORIGIN="Module-ScanDeps" 148.7 PACKAGE="perl-module-scandeps" 148.8 VERSION="1.25" 148.9 +AUTHOR="RSCHUPP" 148.10 CATEGORY="perl" 148.11 SHORT_DESC="Module::ScanDeps - Recursively scan Perl code for dependencies" 148.12 MAINTAINER="al.bobylev@gmail.com" 148.13 LICENSE="GPL" 148.14 -WEB_SITE="https://metacpan.org/release/Module-ScanDeps" 148.15 -REPOLOGY="perl:module-scandeps" 148.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 148.17 +HOST_ARCH="any" 148.18 +REPOLOGY="${PACKAGE/-/:}" 148.19 148.20 -TARBALL="Module-ScanDeps-$VERSION.tar.gz" 148.21 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/$TARBALL" 148.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 148.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 148.24 148.25 -BUILD_DEPENDS="perl-test-requires" 148.26 +DEPENDS_std="perl" 148.27 +BUILD_DEPENDS="$DEPENDS_std perl-test-requires" 148.28 148.29 compile_rules() { 148.30 - perl Makefile.PL && 148.31 - make && 148.32 - make DESTDIR=$install install && 148.33 - 148.34 - chmod -R u+w $install 148.35 + cook_perl 148.36 } 148.37 - 148.38 -genpkg_rules() { 148.39 - copy @std 148.40 - DEPENDS="perl" 148.41 -}
149.1 --- a/perl-mozilla-ca/receipt Thu Dec 06 20:27:31 2018 +0200 149.2 +++ b/perl-mozilla-ca/receipt Tue Dec 11 23:38:35 2018 +0200 149.3 @@ -1,28 +1,23 @@ 149.4 -# SliTaz package receipt. 149.5 +# SliTaz package receipt v2. 149.6 149.7 +ORIGIN="Mozilla-CA" 149.8 PACKAGE="perl-mozilla-ca" 149.9 VERSION="20180117" 149.10 +AUTHOR="ABH" 149.11 CATEGORY="perl" 149.12 SHORT_DESC="Mozilla::CA - Mozilla's CA cert bundle in PEM format" 149.13 MAINTAINER="al.bobylev@gmail.com" 149.14 LICENSE="GPL" 149.15 -WEB_SITE="https://metacpan.org/release/Mozilla-CA" 149.16 -REPOLOGY="perl:mozilla-ca" 149.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 149.18 +HOST_ARCH="any" 149.19 +REPOLOGY="${PACKAGE/-/:}" 149.20 149.21 -TARBALL="Mozilla-CA-$VERSION.tar.gz" 149.22 -WGET_URL="https://cpan.metacpan.org/authors/id/A/AB/ABH/$TARBALL" 149.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 149.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 149.25 149.26 -BUILD_DEPENDS="perl" 149.27 +DEPENDS_std="perl" 149.28 +BUILD_DEPENDS="$DEPENDS_std" 149.29 149.30 compile_rules() { 149.31 - perl Makefile.PL && 149.32 - make && 149.33 - make DESTDIR=$install install && 149.34 - 149.35 - chmod -R u+w $install 149.36 + cook_perl 149.37 } 149.38 - 149.39 -genpkg_rules() { 149.40 - copy @std 149.41 - DEPENDS="perl" 149.42 -}
150.1 --- a/perl-mro-compat/receipt Thu Dec 06 20:27:31 2018 +0200 150.2 +++ b/perl-mro-compat/receipt Tue Dec 11 23:38:35 2018 +0200 150.3 @@ -1,28 +1,23 @@ 150.4 # SliTaz package receipt v2. 150.5 150.6 +ORIGIN="MRO-Compat" 150.7 PACKAGE="perl-mro-compat" 150.8 VERSION="0.13" 150.9 +AUTHOR="HAARG" 150.10 CATEGORY="perl" 150.11 SHORT_DESC="MRO::Compat - mro::* interface compatibility for Perls < 5.9.5" 150.12 MAINTAINER="al.bobylev@gmail.com" 150.13 LICENSE="GPL" 150.14 -WEB_SITE="https://metacpan.org/release/MRO-Compat" 150.15 -REPOLOGY="perl:mro-compat" 150.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 150.17 +HOST_ARCH="any" 150.18 +REPOLOGY="${PACKAGE/-/:}" 150.19 150.20 -TARBALL="MRO-Compat-$VERSION.tar.gz" 150.21 -WGET_URL="https://cpan.metacpan.org/authors/id/H/HA/HAARG/$TARBALL" 150.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 150.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 150.24 150.25 -BUILD_DEPENDS="perl" 150.26 +DEPENDS_std="perl" 150.27 +BUILD_DEPENDS="$DEPENDS_std" 150.28 150.29 compile_rules() { 150.30 - perl Makefile.PL && 150.31 - make && 150.32 - make DESTDIR=$install install && 150.33 - 150.34 - chmod -R u+w $install 150.35 + cook_perl 150.36 } 150.37 - 150.38 -genpkg_rules() { 150.39 - copy @std 150.40 - DEPENDS="perl" 150.41 -}
151.1 --- a/perl-namespace-autoclean/receipt Thu Dec 06 20:27:31 2018 +0200 151.2 +++ b/perl-namespace-autoclean/receipt Tue Dec 11 23:38:35 2018 +0200 151.3 @@ -1,29 +1,23 @@ 151.4 -# SliTaz package receipt. 151.5 +# SliTaz package receipt v2. 151.6 151.7 +ORIGIN="namespace-autoclean" 151.8 PACKAGE="perl-namespace-autoclean" 151.9 VERSION="0.28" 151.10 +AUTHOR="ETHER" 151.11 CATEGORY="perl" 151.12 SHORT_DESC="namespace::autoclean - Keep imports out of your namespace" 151.13 MAINTAINER="al.bobylev@gmail.com" 151.14 LICENSE="GPL" 151.15 -WEB_SITE="https://metacpan.org/release/namespace-autoclean" 151.16 -REPOLOGY="perl:namespace-autoclean" 151.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 151.18 +HOST_ARCH="any" 151.19 +REPOLOGY="${PACKAGE/-/:}" 151.20 151.21 -TARBALL="namespace-autoclean-$VERSION.tar.gz" 151.22 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 151.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 151.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 151.25 151.26 -BUILD_DEPENDS="perl-b-hooks-endofscope perl-namespace-clean perl-sub-identify \ 151.27 -perl-test-requires" 151.28 +DEPENDS_std="perl-b-hooks-endofscope perl-namespace-clean perl-sub-identify" 151.29 +BUILD_DEPENDS="$DEPENDS_std perl-test-requires" 151.30 151.31 compile_rules() { 151.32 - perl Makefile.PL && 151.33 - make && 151.34 - make DESTDIR=$install install && 151.35 - 151.36 - chmod -R u+w $install 151.37 + cook_perl 151.38 } 151.39 - 151.40 -genpkg_rules() { 151.41 - copy @std 151.42 - DEPENDS="perl-b-hooks-endofscope perl-namespace-clean perl-sub-identify" 151.43 -}
152.1 --- a/perl-namespace-clean/receipt Thu Dec 06 20:27:31 2018 +0200 152.2 +++ b/perl-namespace-clean/receipt Tue Dec 11 23:38:35 2018 +0200 152.3 @@ -1,28 +1,23 @@ 152.4 # SliTaz package receipt v2. 152.5 152.6 +ORIGIN="namespace-clean" 152.7 PACKAGE="perl-namespace-clean" 152.8 VERSION="0.27" 152.9 +AUTHOR="RIBASUSHI" 152.10 CATEGORY="perl" 152.11 SHORT_DESC="namespace::clean - Keep imports and functions out of your namespace" 152.12 MAINTAINER="al.bobylev@gmail.com" 152.13 LICENSE="GPL" 152.14 -WEB_SITE="https://metacpan.org/release/namespace-clean" 152.15 -REPOLOGY="perl:namespace-clean" 152.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 152.17 +HOST_ARCH="any" 152.18 +REPOLOGY="${PACKAGE/-/:}" 152.19 152.20 -TARBALL="namespace-clean-$VERSION.tar.gz" 152.21 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RI/RIBASUSHI/$TARBALL" 152.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 152.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 152.24 152.25 -BUILD_DEPENDS="perl-b-hooks-endofscope perl-package-stash" 152.26 +DEPENDS_std="perl-b-hooks-endofscope perl-package-stash" 152.27 +BUILD_DEPENDS="$DEPENDS_std" 152.28 152.29 compile_rules() { 152.30 - perl Makefile.PL && 152.31 - make && 152.32 - make DESTDIR=$install install && 152.33 - 152.34 - chmod -R u+w $install 152.35 + cook_perl 152.36 } 152.37 - 152.38 -genpkg_rules() { 152.39 - copy @std 152.40 - DEPENDS="perl-b-hooks-endofscope perl-package-stash" 152.41 -}
153.1 --- a/perl-net-dns/receipt Thu Dec 06 20:27:31 2018 +0200 153.2 +++ b/perl-net-dns/receipt Tue Dec 11 23:38:35 2018 +0200 153.3 @@ -1,29 +1,23 @@ 153.4 # SliTaz package receipt v2. 153.5 153.6 +ORIGIN="Net-DNS" 153.7 PACKAGE="perl-net-dns" 153.8 -VERSION="1.18" 153.9 +VERSION="1.19" 153.10 +AUTHOR="NLNETLABS" 153.11 CATEGORY="perl" 153.12 SHORT_DESC="Net::DNS - Perl Interface to the Domain Name System" 153.13 MAINTAINER="devel@slitaz.org" 153.14 LICENSE="GPL" 153.15 -WEB_SITE="https://metacpan.org/release/Net-DNS" 153.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 153.17 HOST_ARCH="any" 153.18 -REPOLOGY="perl:net-dns" 153.19 +REPOLOGY="${PACKAGE/-/:}" 153.20 153.21 -TARBALL="Net-DNS-$VERSION.tar.gz" 153.22 -WGET_URL="https://cpan.metacpan.org/authors/id/N/NL/NLNETLABS/$TARBALL" 153.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 153.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 153.25 153.26 -BUILD_DEPENDS="perl-digest-hmac" 153.27 +DEPENDS_std="perl-digest-hmac" 153.28 +BUILD_DEPENDS="$DEPENDS_std" 153.29 153.30 compile_rules() { 153.31 - perl Makefile.PL && 153.32 - make && 153.33 - make DESTDIR=$install install && 153.34 - 153.35 - chmod -R u+w $install 153.36 + cook_perl 153.37 } 153.38 - 153.39 -genpkg_rules() { 153.40 - copy @std 153.41 - DEPENDS="perl-digest-hmac" 153.42 -}
154.1 --- a/perl-net-ftp-autoreconnect/receipt Thu Dec 06 20:27:31 2018 +0200 154.2 +++ b/perl-net-ftp-autoreconnect/receipt Tue Dec 11 23:38:35 2018 +0200 154.3 @@ -1,29 +1,24 @@ 154.4 # SliTaz package receipt v2. 154.5 154.6 +ORIGIN="Net-FTP-AutoReconnect" 154.7 PACKAGE="perl-net-ftp-autoreconnect" 154.8 VERSION="0.3" 154.9 +AUTHOR="GIFF" 154.10 CATEGORY="perl" 154.11 SHORT_DESC="Net::FTP::AutoReconnect - FTP client class with automatic \ 154.12 reconnect on failure" 154.13 MAINTAINER="pascal.bellard@slitaz.org" 154.14 LICENSE="GPL" 154.15 -WEB_SITE="https://metacpan.org/release/Net-FTP-AutoReconnect" 154.16 -REPOLOGY="perl:net-ftp-autoreconnect" 154.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 154.18 +HOST_ARCH="any" 154.19 +REPOLOGY="${PACKAGE/-/:}" 154.20 154.21 -TARBALL="Net-FTP-AutoReconnect-$VERSION.tar.gz" 154.22 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GI/GIFF/$TARBALL" 154.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 154.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 154.25 154.26 -BUILD_DEPENDS="perl" 154.27 +DEPENDS_std="perl" 154.28 +BUILD_DEPENDS="$DEPENDS_std" 154.29 154.30 compile_rules() { 154.31 - perl Makefile.PL && 154.32 - make && 154.33 - make DESTDIR=$install install && 154.34 - 154.35 - chmod -R u+w $install 154.36 + cook_perl 154.37 } 154.38 - 154.39 -genpkg_rules() { 154.40 - copy @std 154.41 - DEPENDS="perl" 154.42 -}
155.1 --- a/perl-net-ftp-retrhandle/receipt Thu Dec 06 20:27:31 2018 +0200 155.2 +++ b/perl-net-ftp-retrhandle/receipt Tue Dec 11 23:38:35 2018 +0200 155.3 @@ -1,29 +1,24 @@ 155.4 -# SliTaz package receipt. 155.5 +# SliTaz package receipt v2. 155.6 155.7 +ORIGIN="Net-FTP-RetrHandle" 155.8 PACKAGE="perl-net-ftp-retrhandle" 155.9 VERSION="0.2" 155.10 +AUTHOR="GIFF" 155.11 CATEGORY="perl" 155.12 SHORT_DESC="Net::FTP::RetrHandle - Tied or IO::Handle-compatible interface to \ 155.13 a file retrieved by FTP" 155.14 MAINTAINER="pascal.bellard@slitaz.org" 155.15 LICENSE="GPL" 155.16 -WEB_SITE="https://metacpan.org/release/Net-FTP-RetrHandle" 155.17 -REPOLOGY="perl:net-ftp-retrhandle" 155.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 155.19 +HOST_ARCH="any" 155.20 +REPOLOGY="${PACKAGE/-/:}" 155.21 155.22 -TARBALL="Net-FTP-RetrHandle-$VERSION.tar.gz" 155.23 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GI/GIFF/$TARBALL" 155.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 155.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 155.26 155.27 -BUILD_DEPENDS="perl" 155.28 +DEPENDS_std="perl" 155.29 +BUILD_DEPENDS="$DEPENDS_std" 155.30 155.31 compile_rules() { 155.32 - perl Makefile.PL && 155.33 - make && 155.34 - make DESTDIR=$install install && 155.35 - 155.36 - chmod -R u+w $install 155.37 + cook_perl 155.38 } 155.39 - 155.40 -genpkg_rules() { 155.41 - copy @std 155.42 - DEPENDS="perl" 155.43 -}
156.1 --- a/perl-net-http/receipt Thu Dec 06 20:27:31 2018 +0200 156.2 +++ b/perl-net-http/receipt Tue Dec 11 23:38:35 2018 +0200 156.3 @@ -1,28 +1,23 @@ 156.4 # SliTaz package receipt v2. 156.5 156.6 +ORIGIN="Net-HTTP" 156.7 PACKAGE="perl-net-http" 156.8 VERSION="6.18" 156.9 +AUTHOR="OALDERS" 156.10 CATEGORY="perl" 156.11 SHORT_DESC="Net::HTTP - Low-level HTTP connection (client)" 156.12 MAINTAINER="devel@slitaz.org" 156.13 LICENSE="GPL" 156.14 -WEB_SITE="https://metacpan.org/release/Net-HTTP" 156.15 -REPOLOGY="perl:net-http" 156.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 156.17 +HOST_ARCH="any" 156.18 +REPOLOGY="${PACKAGE/-/:}" 156.19 156.20 -TARBALL="Net-HTTP-$VERSION.tar.gz" 156.21 -WGET_URL="https://cpan.metacpan.org/authors/id/O/OA/OALDERS/$TARBALL" 156.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 156.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 156.24 156.25 -BUILD_DEPENDS="perl-uri" 156.26 +DEPENDS_std="perl-uri" 156.27 +BUILD_DEPENDS="$DEPENDS_std" 156.28 156.29 compile_rules() { 156.30 - perl Makefile.PL && 156.31 - make && 156.32 - make DESTDIR=$install install && 156.33 - 156.34 - chmod -R u+w $install 156.35 + cook_perl 156.36 } 156.37 - 156.38 -genpkg_rules() { 156.39 - copy @std 156.40 - DEPENDS="perl-uri" 156.41 -}
157.1 --- a/perl-net-ip/receipt Thu Dec 06 20:27:31 2018 +0200 157.2 +++ b/perl-net-ip/receipt Tue Dec 11 23:38:35 2018 +0200 157.3 @@ -1,28 +1,23 @@ 157.4 -# SliTaz package receipt. 157.5 +# SliTaz package receipt v2. 157.6 157.7 +ORIGIN="Net-IP" 157.8 PACKAGE="perl-net-ip" 157.9 VERSION="1.26" 157.10 +AUTHOR="MANU" 157.11 CATEGORY="perl" 157.12 SHORT_DESC="Net::IP - Perl extension for manipulating IPv4/IPv6 addresses" 157.13 MAINTAINER="pascal.bellard@slitaz.org" 157.14 LICENSE="GPL" 157.15 -WEB_SITE="https://metacpan.org/release/Net-IP" 157.16 -REPOLOGY="perl:net-ip" 157.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 157.18 +HOST_ARCH="any" 157.19 +REPOLOGY="${PACKAGE/-/:}" 157.20 157.21 -TARBALL="Net-IP-$VERSION.tar.gz" 157.22 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MA/MANU/$TARBALL" 157.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 157.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 157.25 157.26 -BUILD_DEPENDS="perl" 157.27 +DEPENDS_std="perl" 157.28 +BUILD_DEPENDS="$DEPENDS_std" 157.29 157.30 compile_rules() { 157.31 - perl Makefile.PL && 157.32 - make && 157.33 - make DESTDIR=$install install && 157.34 - 157.35 - chmod -R u+w $install 157.36 + cook_perl 157.37 } 157.38 - 157.39 -genpkg_rules() { 157.40 - copy @std 157.41 - DEPENDS="perl" 157.42 -}
158.1 --- a/perl-net-mysql/receipt Thu Dec 06 20:27:31 2018 +0200 158.2 +++ b/perl-net-mysql/receipt Tue Dec 11 23:38:35 2018 +0200 158.3 @@ -1,28 +1,23 @@ 158.4 -# SliTaz package receipt. 158.5 +# SliTaz package receipt v2. 158.6 158.7 +ORIGIN="Net-MySQL" 158.8 PACKAGE="perl-net-mysql" 158.9 VERSION="0.11" 158.10 +AUTHOR="TSUCCHI" 158.11 CATEGORY="perl" 158.12 SHORT_DESC="Net::MySQL - Pure Perl MySQL network protocol interface" 158.13 MAINTAINER="pascal.bellard@slitaz.org" 158.14 LICENSE="GPL" 158.15 -WEB_SITE="https://metacpan.org/release/Net-MySQL" 158.16 -REPOLOGY="perl:net-mysql" 158.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 158.18 +HOST_ARCH="any" 158.19 +REPOLOGY="${PACKAGE/-/:}" 158.20 158.21 -TARBALL="Net-MySQL-$VERSION.tar.gz" 158.22 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TS/TSUCCHI/$TARBALL" 158.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 158.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 158.25 158.26 -BUILD_DEPENDS="perl-digest-sha1 libmysqlclient" 158.27 +DEPENDS_std="perl-digest-sha1 libmysqlclient" 158.28 +BUILD_DEPENDS="$DEPENDS_std" 158.29 158.30 compile_rules() { 158.31 - perl Makefile.PL && 158.32 - make && 158.33 - make DESTDIR=$install install && 158.34 - 158.35 - chmod -R u+w $install 158.36 + cook_perl 158.37 } 158.38 - 158.39 -genpkg_rules() { 158.40 - copy @std 158.41 - DEPENDS="perl-digest-sha1 libmysqlclient" 158.42 -}
159.1 --- a/perl-net-pcap/receipt Thu Dec 06 20:27:31 2018 +0200 159.2 +++ b/perl-net-pcap/receipt Tue Dec 11 23:38:35 2018 +0200 159.3 @@ -1,28 +1,22 @@ 159.4 # SliTaz package receipt v2. 159.5 159.6 +ORIGIN="Net-Pcap" 159.7 PACKAGE="perl-net-pcap" 159.8 VERSION="0.18" 159.9 +AUTHOR="SAPER" 159.10 CATEGORY="perl" 159.11 SHORT_DESC="Net::Pcap - Interface to the pcap(3) LBL packet capture library" 159.12 MAINTAINER="pascal.bellard@slitaz.org" 159.13 LICENSE="GPL" 159.14 -WEB_SITE="https://metacpan.org/release/Net-Pcap" 159.15 -REPOLOGY="perl:net-pcap" 159.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 159.17 +REPOLOGY="${PACKAGE/-/:}" 159.18 159.19 -TARBALL="Net-Pcap-$VERSION.tar.gz" 159.20 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SA/SAPER/$TARBALL" 159.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 159.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 159.23 159.24 -BUILD_DEPENDS="perl-dev libpcap-dev" 159.25 +DEPENDS_std="perl libpcap" 159.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev libpcap-dev" 159.27 159.28 compile_rules() { 159.29 - perl Makefile.PL && 159.30 - make && 159.31 - make DESTDIR=$install install && 159.32 - 159.33 - chmod -R u+w $install 159.34 + cook_perl 159.35 } 159.36 - 159.37 -genpkg_rules() { 159.38 - copy @std 159.39 - DEPENDS="perl libpcap" 159.40 -}
160.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 160.2 +++ b/perl-net-pcap/stuff/patches/fix-build.patch Tue Dec 11 23:38:35 2018 +0200 160.3 @@ -0,0 +1,44 @@ 160.4 +diff -up ./Makefile.PL.tv ./Makefile.PL 160.5 +--- ./Makefile.PL.tv 2018-09-21 10:32:09.165570705 +0200 160.6 ++++ ./Makefile.PL 2018-09-21 10:45:39.096591301 +0200 160.7 +@@ -106,7 +106,7 @@ REASON 160.8 + # We also store the list of available functions in a file for skipping the 160.9 + # corresponding tests. 160.10 + my @funcs = have_functions(find_functions()); 160.11 +-$options{DEFINE} .= cpp_defines(@funcs); 160.12 ++$options{DEFINE} .= cpp_defines(@funcs). "-DHAVE_PCAP_SETSAMPLING"; 160.13 + open(FUNCS, '>funcs.txt') or warn "warning: can't write 'funcs.txt': $!\n"; 160.14 + print FUNCS join("\n", @funcs), "\n"; 160.15 + close(FUNCS); 160.16 +diff -up ./Pcap.xs.tv ./Pcap.xs 160.17 +diff -up ./stubs.inc.tv ./stubs.inc 160.18 +--- ./stubs.inc.tv 2018-09-21 10:30:08.653034412 +0200 160.19 ++++ ./stubs.inc 2018-09-21 10:46:41.339897943 +0200 160.20 +@@ -354,11 +354,6 @@ int pcap_parsesrcstr(const char *source, 160.21 + #ifdef _MSC_VER 160.22 + #pragma message( "Warning: the function pcap_open() is not available" ) 160.23 + #endif 160.24 +-struct pcap_rmtauth { 160.25 +- int type; 160.26 +- char *username; 160.27 +- char *password; 160.28 +-}; 160.29 + 160.30 + pcap_t * pcap_open(const char *source, int snaplen, int flags, int read_timeout, struct pcap_rmtauth *auth, char *err); 160.31 + pcap_t * pcap_open(const char *source, int snaplen, int flags, int read_timeout, struct pcap_rmtauth *auth, char *err) { 160.32 +@@ -511,6 +511,7 @@ HANDLE pcap_getevent(pcap_t *p) { 160.33 + #ifdef _MSC_VER 160.34 + #pragma message( "Warning: the function pcap_setsampling() is not available" ) 160.35 + #endif 160.36 ++#if 0 160.37 + struct pcap_samp { 160.38 + int method; 160.39 + int value; 160.40 +@@ -522,6 +523,7 @@ struct pcap_samp *pcap_setsampling(pcap_ 160.41 + return NULL; 160.42 + } 160.43 + #endif 160.44 ++#endif 160.45 + 160.46 + 160.47 + /*
161.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 161.2 +++ b/perl-net-pcap/stuff/patches/series Tue Dec 11 23:38:35 2018 +0200 161.3 @@ -0,0 +1,2 @@ 161.4 +# From https://bugzilla.redhat.com/show_bug.cgi?id=1612860 161.5 +fix-build.patch
162.1 --- a/perl-net-server/receipt Thu Dec 06 20:27:31 2018 +0200 162.2 +++ b/perl-net-server/receipt Tue Dec 11 23:38:35 2018 +0200 162.3 @@ -1,28 +1,23 @@ 162.4 -# SliTaz package receipt. 162.5 +# SliTaz package receipt v2. 162.6 162.7 +ORIGIN="Net-Server" 162.8 PACKAGE="perl-net-server" 162.9 VERSION="2.009" 162.10 +AUTHOR="RHANDOM" 162.11 CATEGORY="perl" 162.12 SHORT_DESC="Net::Server - Extensible, general Perl server engine" 162.13 MAINTAINER="pascal.bellard@slitaz.org" 162.14 LICENSE="GPL" 162.15 -WEB_SITE="https://metacpan.org/release/Net-Server" 162.16 -REPOLOGY="perl:net-server" 162.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 162.18 +HOST_ARCH="any" 162.19 +REPOLOGY="${PACKAGE/-/:}" 162.20 162.21 -TARBALL="Net-Server-$VERSION.tar.gz" 162.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RH/RHANDOM/$TARBALL" 162.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 162.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 162.25 162.26 -BUILD_DEPENDS="perl" 162.27 +DEPENDS_std="perl" 162.28 +BUILD_DEPENDS="$DEPENDS_std" 162.29 162.30 compile_rules() { 162.31 - perl Makefile.PL && 162.32 - make && 162.33 - make DESTDIR=$install install && 162.34 - 162.35 - chmod -R u+w $install 162.36 + cook_perl 162.37 } 162.38 - 162.39 -genpkg_rules() { 162.40 - copy @std 162.41 - DEPENDS="perl" 162.42 -}
163.1 --- a/perl-net-smtp-ssl/receipt Thu Dec 06 20:27:31 2018 +0200 163.2 +++ b/perl-net-smtp-ssl/receipt Tue Dec 11 23:38:35 2018 +0200 163.3 @@ -1,28 +1,23 @@ 163.4 -# SliTaz package receipt. 163.5 +# SliTaz package receipt v2. 163.6 163.7 +ORIGIN="Net-SMTP-SSL" 163.8 PACKAGE="perl-net-smtp-ssl" 163.9 VERSION="1.04" 163.10 +AUTHOR="RJBS" 163.11 CATEGORY="perl" 163.12 SHORT_DESC="Net::SMTP::SSL - SSL support for Net::SMTP" 163.13 MAINTAINER="devel@slitaz.org" 163.14 LICENSE="GPL" 163.15 -WEB_SITE="https://metacpan.org/release/Net-SMTP-SSL" 163.16 -REPOLOGY="perl:net-smtp-ssl" 163.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 163.18 +HOST_ARCH="any" 163.19 +REPOLOGY="${PACKAGE/-/:}" 163.20 163.21 -TARBALL="Net-SMTP-SSL-$VERSION.tar.gz" 163.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RJ/RJBS/$TARBALL" 163.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 163.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 163.25 163.26 -BUILD_DEPENDS="perl-io-socket-ssl" 163.27 +DEPENDS_std="perl-io-socket-ssl" 163.28 +BUILD_DEPENDS="$DEPENDS_std" 163.29 163.30 compile_rules() { 163.31 - perl Makefile.PL && 163.32 - make && 163.33 - make DESTDIR=$install install && 163.34 - 163.35 - chmod -R u+w $install 163.36 + cook_perl 163.37 } 163.38 - 163.39 -genpkg_rules() { 163.40 - copy @std 163.41 - DEPENDS="perl-io-socket-ssl" 163.42 -}
164.1 --- a/perl-net-snmp/receipt Thu Dec 06 20:27:31 2018 +0200 164.2 +++ b/perl-net-snmp/receipt Tue Dec 11 23:38:35 2018 +0200 164.3 @@ -1,28 +1,23 @@ 164.4 -# SliTaz package receipt. 164.5 +# SliTaz package receipt v2. 164.6 164.7 +ORIGIN="Net-SNMP" 164.8 PACKAGE="perl-net-snmp" 164.9 VERSION="6.0.1" 164.10 +AUTHOR="DTOWN" 164.11 CATEGORY="perl" 164.12 SHORT_DESC="Net::SNMP - Object oriented interface to SNMP" 164.13 MAINTAINER="pascal.bellard@slitaz.org" 164.14 LICENSE="GPL" 164.15 -WEB_SITE="https://metacpan.org/release/Net-SNMP" 164.16 -REPOLOGY="perl:net-snmp" 164.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 164.18 +HOST_ARCH="any" 164.19 +REPOLOGY="${PACKAGE/-/:}" 164.20 164.21 -TARBALL="Net-SNMP-v$VERSION.tar.gz" 164.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DT/DTOWN/$TARBALL" 164.23 +TARBALL="$ORIGIN-v$VERSION.tar.gz" # !!! 164.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 164.25 164.26 -BUILD_DEPENDS="perl-crypt-des perl-digest-hmac perl-digest-sha1" 164.27 +DEPENDS_std="perl-crypt-des perl-digest-hmac perl-digest-sha1" 164.28 +BUILD_DEPENDS="$DEPENDS_std" 164.29 164.30 compile_rules() { 164.31 - perl Makefile.PL && 164.32 - make && 164.33 - make DESTDIR=$install install && 164.34 - 164.35 - chmod -R u+w $install 164.36 + cook_perl 164.37 } 164.38 - 164.39 -genpkg_rules() { 164.40 - copy @std 164.41 - DEPENDS="perl-crypt-des perl-digest-hmac perl-digest-sha1" 164.42 -}
165.1 --- a/perl-net-ssleay/receipt Thu Dec 06 20:27:31 2018 +0200 165.2 +++ b/perl-net-ssleay/receipt Tue Dec 11 23:38:35 2018 +0200 165.3 @@ -1,30 +1,22 @@ 165.4 -# SliTaz package receipt. 165.5 +# SliTaz package receipt v2. 165.6 165.7 +ORIGIN="Net-SSLeay" 165.8 PACKAGE="perl-net-ssleay" 165.9 VERSION="1.85" 165.10 +AUTHOR="MIKEM" 165.11 CATEGORY="perl" 165.12 SHORT_DESC="Net::SSLeay - Perl extension for using OpenSSL" 165.13 MAINTAINER="pascal.bellard@slitaz.org" 165.14 LICENSE="GPL" 165.15 -WEB_SITE="https://metacpan.org/release/Net-SSLeay" 165.16 -REPOLOGY="perl:net-ssleay" 165.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 165.18 +REPOLOGY="${PACKAGE/-/:}" 165.19 165.20 -TARBALL="Net-SSLeay-$VERSION.tar.gz" 165.21 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MI/MIKEM/$TARBALL" 165.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 165.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 165.24 165.25 -BUILD_DEPENDS="perl-dev openssl-dev" 165.26 +DEPENDS_std="perl openssl zlib" 165.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev openssl-dev" 165.28 165.29 compile_rules() { 165.30 - # avoid interactive questions 165.31 - PERL_MM_USE_DEFAULT=1 \ 165.32 - perl Makefile.PL && 165.33 - make && 165.34 - make DESTDIR=$install install && 165.35 - 165.36 - chmod -R u+w $install 165.37 + cook_perl 165.38 } 165.39 - 165.40 -genpkg_rules() { 165.41 - copy @std 165.42 - DEPENDS="perl openssl zlib" 165.43 -}
166.1 --- a/perl-net-telnet/receipt Thu Dec 06 20:27:31 2018 +0200 166.2 +++ b/perl-net-telnet/receipt Tue Dec 11 23:38:35 2018 +0200 166.3 @@ -1,28 +1,23 @@ 166.4 # SliTaz package receipt v2. 166.5 166.6 +ORIGIN="Net-Telnet" 166.7 PACKAGE="perl-net-telnet" 166.8 VERSION="3.04" 166.9 +AUTHOR="JROGERS" 166.10 CATEGORY="perl" 166.11 SHORT_DESC="Net::Telnet - interact with TELNET port or other TCP ports" 166.12 MAINTAINER="pascal.bellard@slitaz.org" 166.13 LICENSE="GPL" 166.14 -WEB_SITE="https://metacpan.org/release/Net-Telnet" 166.15 -REPOLOGY="perl:net-telnet" 166.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 166.17 +HOST_ARCH="any" 166.18 +REPOLOGY="${PACKAGE/-/:}" 166.19 166.20 -TARBALL="Net-Telnet-$VERSION.tar.gz" 166.21 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JR/JROGERS/$TARBALL" 166.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 166.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 166.24 166.25 -BUILD_DEPENDS="perl" 166.26 +DEPENDS_std="perl" 166.27 +BUILD_DEPENDS="$DEPENDS_std" 166.28 166.29 compile_rules() { 166.30 - perl Makefile.PL && 166.31 - make && 166.32 - make DESTDIR=$install install && 166.33 - 166.34 - chmod -R u+w $install 166.35 + cook_perl 166.36 } 166.37 - 166.38 -genpkg_rules() { 166.39 - copy @std 166.40 - DEPENDS="perl" 166.41 -}
167.1 --- a/perl-net-xwhois/receipt Thu Dec 06 20:27:31 2018 +0200 167.2 +++ b/perl-net-xwhois/receipt Tue Dec 11 23:38:35 2018 +0200 167.3 @@ -1,28 +1,23 @@ 167.4 -# SliTaz package receipt. 167.5 +# SliTaz package receipt v2. 167.6 167.7 +ORIGIN="Net-XWhois" 167.8 PACKAGE="perl-net-xwhois" 167.9 VERSION="0.90" 167.10 +AUTHOR="VIPUL" 167.11 CATEGORY="perl" 167.12 SHORT_DESC="Net::XWhois - Whois Client Interface for Perl5" 167.13 MAINTAINER="pascal.bellard@slitaz.org" 167.14 LICENSE="unknown" 167.15 -WEB_SITE="https://metacpan.org/release/Net-XWhois" 167.16 -REPOLOGY="perl:net-xwhois" 167.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 167.18 +HOST_ARCH="any" 167.19 +REPOLOGY="${PACKAGE/-/:}" 167.20 167.21 -TARBALL="Net-XWhois-$VERSION.tar.gz" 167.22 -WGET_URL="https://cpan.metacpan.org/authors/id/V/VI/VIPUL/$TARBALL" 167.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 167.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 167.25 167.26 -BUILD_DEPENDS="perl" 167.27 +DEPENDS_std="perl" 167.28 +BUILD_DEPENDS="$DEPENDS_std" 167.29 167.30 compile_rules() { 167.31 - perl Makefile.PL && 167.32 - make && 167.33 - make DESTDIR=$install install && 167.34 - 167.35 - chmod -R u+w $install 167.36 + cook_perl 167.37 } 167.38 - 167.39 -genpkg_rules() { 167.40 - copy @std 167.41 - DEPENDS="perl" 167.42 -}
168.1 --- a/perl-number-compare/receipt Thu Dec 06 20:27:31 2018 +0200 168.2 +++ b/perl-number-compare/receipt Tue Dec 11 23:38:35 2018 +0200 168.3 @@ -1,28 +1,23 @@ 168.4 -# SliTaz package receipt. 168.5 +# SliTaz package receipt v2. 168.6 168.7 +ORIGIN="Number-Compare" 168.8 PACKAGE="perl-number-compare" 168.9 VERSION="0.03" 168.10 +AUTHOR="RCLAMP" 168.11 CATEGORY="perl" 168.12 SHORT_DESC="Number::Compare - numeric comparisons" 168.13 MAINTAINER="devel@slitaz.org" 168.14 LICENSE="unknown" 168.15 -WEB_SITE="https://metacpan.org/release/Number-Compare" 168.16 -REPOLOGY="perl:number-compare" 168.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 168.18 +HOST_ARCH="any" 168.19 +REPOLOGY="${PACKAGE/-/:}" 168.20 168.21 -TARBALL="Number-Compare-$VERSION.tar.gz" 168.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/$TARBALL" 168.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 168.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 168.25 168.26 -BUILD_DEPENDS="perl" 168.27 +DEPENDS_std="perl" 168.28 +BUILD_DEPENDS="$DEPENDS_std" 168.29 168.30 compile_rules() { 168.31 - perl Makefile.PL && 168.32 - make && 168.33 - make DESTDIR=$install install && 168.34 - 168.35 - chmod -R u+w $install 168.36 + cook_perl 168.37 } 168.38 - 168.39 -genpkg_rules() { 168.40 - copy @std 168.41 - DEPENDS="perl" 168.42 -}
169.1 --- a/perl-number-range/receipt Thu Dec 06 20:27:31 2018 +0200 169.2 +++ b/perl-number-range/receipt Tue Dec 11 23:38:35 2018 +0200 169.3 @@ -1,29 +1,24 @@ 169.4 -# SliTaz package receipt. 169.5 +# SliTaz package receipt v2. 169.6 169.7 +ORIGIN="Number-Range" 169.8 PACKAGE="perl-number-range" 169.9 VERSION="0.12" 169.10 +AUTHOR="LARRYSH" 169.11 CATEGORY="perl" 169.12 SHORT_DESC="Number::Range - Perl extension defining ranges of numbers and \ 169.13 testing if a number is found in the range" 169.14 MAINTAINER="pascal.bellard@slitaz.org" 169.15 LICENSE="GPL" 169.16 -WEB_SITE="https://metacpan.org/release/Number-Range" 169.17 -REPOLOGY="perl:number-range" 169.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 169.19 +HOST_ARCH="any" 169.20 +REPOLOGY="${PACKAGE/-/:}" 169.21 169.22 -TARBALL="Number-Range-$VERSION.tar.gz" 169.23 -WGET_URL="https://cpan.metacpan.org/authors/id/L/LA/LARRYSH/$TARBALL" 169.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 169.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 169.26 169.27 -BUILD_DEPENDS="perl" 169.28 +DEPENDS_std="perl" 169.29 +BUILD_DEPENDS="$DEPENDS_std" 169.30 169.31 compile_rules() { 169.32 - perl Makefile.PL && 169.33 - make && 169.34 - make DESTDIR=$install install && 169.35 - 169.36 - chmod -R u+w $install 169.37 + cook_perl 169.38 } 169.39 - 169.40 -genpkg_rules() { 169.41 - copy @std 169.42 - DEPENDS="perl" 169.43 -}
170.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 170.2 +++ b/perl-ole-storage-lite/receipt Tue Dec 11 23:38:35 2018 +0200 170.3 @@ -0,0 +1,23 @@ 170.4 +# SliTaz package receipt v2. 170.5 + 170.6 +ORIGIN="OLE-Storage_Lite" 170.7 +PACKAGE="perl-ole-storage-lite" 170.8 +VERSION="0.19" 170.9 +AUTHOR="JMCNAMARA" 170.10 +CATEGORY="perl" 170.11 +SHORT_DESC="OLE::Storage_Lite - Simple Class for OLE document interface" 170.12 +MAINTAINER="pascal.bellard@slitaz.org" 170.13 +LICENSE="GPL" 170.14 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 170.15 +HOST_ARCH="any" 170.16 +REPOLOGY="${PACKAGE/-/:}" 170.17 + 170.18 +TARBALL="$ORIGIN-$VERSION.tar.gz" 170.19 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 170.20 + 170.21 +DEPENDS_std="perl" 170.22 +BUILD_DEPENDS="$DEPENDS_std" 170.23 + 170.24 +compile_rules() { 170.25 + cook_perl 170.26 +}
171.1 --- a/perl-ole-storage_lite/receipt Thu Dec 06 20:27:31 2018 +0200 171.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 171.3 @@ -1,28 +0,0 @@ 171.4 -# SliTaz package receipt v2. 171.5 - 171.6 -PACKAGE="perl-ole-storage_lite" 171.7 -VERSION="0.19" 171.8 -CATEGORY="perl" 171.9 -SHORT_DESC="OLE::Storage_Lite - Simple Class for OLE document interface" 171.10 -MAINTAINER="pascal.bellard@slitaz.org" 171.11 -LICENSE="GPL" 171.12 -WEB_SITE="https://metacpan.org/release/OLE-Storage_Lite" 171.13 -REPOLOGY="perl:ole-storage-lite" 171.14 - 171.15 -TARBALL="OLE-Storage_Lite-$VERSION.tar.gz" 171.16 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JM/JMCNAMARA/$TARBALL" 171.17 - 171.18 -BUILD_DEPENDS="perl" 171.19 - 171.20 -compile_rules() { 171.21 - perl Makefile.PL && 171.22 - make && 171.23 - make DESTDIR=$install install && 171.24 - 171.25 - chmod -R u+w $install 171.26 -} 171.27 - 171.28 -genpkg_rules() { 171.29 - copy @std 171.30 - DEPENDS="perl" 171.31 -}
172.1 --- a/perl-package-deprecationmanager/receipt Thu Dec 06 20:27:31 2018 +0200 172.2 +++ b/perl-package-deprecationmanager/receipt Tue Dec 11 23:38:35 2018 +0200 172.3 @@ -1,30 +1,24 @@ 172.4 -# SliTaz package receipt. 172.5 +# SliTaz package receipt v2. 172.6 172.7 +ORIGIN="Package-DeprecationManager" 172.8 PACKAGE="perl-package-deprecationmanager" 172.9 VERSION="0.17" 172.10 +AUTHOR="DROLSKY" 172.11 CATEGORY="perl" 172.12 SHORT_DESC="Package::DeprecationManager - Manage deprecation warnings for your \ 172.13 distribution" 172.14 MAINTAINER="al.bobylev@gmail.com" 172.15 LICENSE="GPL" 172.16 -WEB_SITE="https://metacpan.org/release/Package-DeprecationManager" 172.17 -REPOLOGY="perl:package-deprecationmanager" 172.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 172.19 +HOST_ARCH="any" 172.20 +REPOLOGY="${PACKAGE/-/:}" 172.21 172.22 -TARBALL="Package-DeprecationManager-$VERSION.tar.gz" 172.23 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 172.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 172.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 172.26 172.27 -BUILD_DEPENDS="perl-package-stash perl-params-util perl-sub-install \ 172.28 -perl-sub-name perl-test-fatal perl-test-warnings" 172.29 +DEPENDS_std="perl-package-stash perl-params-util perl-sub-install perl-sub-name" 172.30 +BUILD_DEPENDS="$DEPENDS_std perl-test-fatal perl-test-warnings" 172.31 172.32 compile_rules() { 172.33 - perl Makefile.PL && 172.34 - make && 172.35 - make DESTDIR=$install install && 172.36 - 172.37 - chmod -R u+w $install 172.38 + cook_perl 172.39 } 172.40 - 172.41 -genpkg_rules() { 172.42 - copy @std 172.43 - DEPENDS="perl-package-stash perl-params-util perl-sub-install perl-sub-name" 172.44 -}
173.1 --- a/perl-package-stash-xs/receipt Thu Dec 06 20:27:31 2018 +0200 173.2 +++ b/perl-package-stash-xs/receipt Tue Dec 11 23:38:35 2018 +0200 173.3 @@ -1,29 +1,23 @@ 173.4 -# SliTaz package receipt. 173.5 +# SliTaz package receipt v2. 173.6 173.7 +ORIGIN="Package-Stash-XS" 173.8 PACKAGE="perl-package-stash-xs" 173.9 VERSION="0.28" 173.10 +AUTHOR="DOY" 173.11 CATEGORY="perl" 173.12 SHORT_DESC="Package::Stash::XS - faster and more correct implementation of the \ 173.13 Package::Stash API" 173.14 MAINTAINER="al.bobylev@gmail.com" 173.15 LICENSE="GPL" 173.16 -WEB_SITE="https://metacpan.org/release/Package-Stash-XS" 173.17 -REPOLOGY="perl:package-stash-xs" 173.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 173.19 +REPOLOGY="${PACKAGE/-/:}" 173.20 173.21 -TARBALL="Package-Stash-XS-$VERSION.tar.gz" 173.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DO/DOY/$TARBALL" 173.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 173.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 173.25 173.26 -BUILD_DEPENDS="perl-dev" 173.27 +DEPENDS_std="perl" 173.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 173.29 173.30 compile_rules() { 173.31 - perl Makefile.PL && 173.32 - make && 173.33 - make DESTDIR=$install install && 173.34 - 173.35 - chmod -R u+w $install 173.36 + cook_perl 173.37 } 173.38 - 173.39 -genpkg_rules() { 173.40 - copy @std 173.41 - DEPENDS="perl" 173.42 -}
174.1 --- a/perl-package-stash/receipt Thu Dec 06 20:27:31 2018 +0200 174.2 +++ b/perl-package-stash/receipt Tue Dec 11 23:38:35 2018 +0200 174.3 @@ -1,29 +1,24 @@ 174.4 # SliTaz package receipt v2. 174.5 174.6 +ORIGIN="Package-Stash" 174.7 PACKAGE="perl-package-stash" 174.8 VERSION="0.37" 174.9 +AUTHOR="DOY" 174.10 CATEGORY="perl" 174.11 SHORT_DESC="Package::Stash - routines for manipulating stashes" 174.12 MAINTAINER="al.bobylev@gmail.com" 174.13 LICENSE="GPL" 174.14 -WEB_SITE="https://metacpan.org/release/Package-Stash" 174.15 -REPOLOGY="perl:package-stash" 174.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 174.17 +HOST_ARCH="any" 174.18 +REPOLOGY="${PACKAGE/-/:}" 174.19 174.20 -TARBALL="Package-Stash-$VERSION.tar.gz" 174.21 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DO/DOY/$TARBALL" 174.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 174.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 174.24 174.25 -BUILD_DEPENDS="perl-dist-checkconflicts perl-module-implementation \ 174.26 -perl-package-stash-xs perl-test-fatal perl-test-requires" 174.27 +DEPENDS_std="perl-dist-checkconflicts perl-module-implementation" 174.28 +BUILD_DEPENDS="$DEPENDS_std perl-package-stash-xs perl-test-fatal \ 174.29 +perl-test-requires" 174.30 174.31 compile_rules() { 174.32 - perl Makefile.PL && 174.33 - make && 174.34 - make DESTDIR=$install install && 174.35 - 174.36 - chmod -R u+w $install 174.37 + cook_perl 174.38 } 174.39 - 174.40 -genpkg_rules() { 174.41 - copy @std 174.42 - DEPENDS="perl-dist-checkconflicts perl-module-implementation" 174.43 -}
175.1 --- a/perl-pango/receipt Thu Dec 06 20:27:31 2018 +0200 175.2 +++ b/perl-pango/receipt Tue Dec 11 23:38:35 2018 +0200 175.3 @@ -1,29 +1,25 @@ 175.4 # SliTaz package receipt v2. 175.5 175.6 +ORIGIN="Pango" 175.7 PACKAGE="perl-pango" 175.8 VERSION="1.227" 175.9 +AUTHOR="XAOC" 175.10 CATEGORY="perl" 175.11 SHORT_DESC="Pango - Layout and render international text" 175.12 -MAINTAINER="claudinei@slitaz.org" 175.13 +MAINTAINER="devel@slitaz.org" 175.14 LICENSE="LGPL2.1" 175.15 -WEB_SITE="https://metacpan.org/release/Pango" 175.16 -REPOLOGY="perl:pango" 175.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 175.18 +REPOLOGY="${PACKAGE/-/:}" 175.19 175.20 -TARBALL="Pango-$VERSION.tar.gz" 175.21 -WGET_URL="https://cpan.metacpan.org/authors/id/X/XA/XAOC/$TARBALL" 175.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 175.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 175.24 175.25 -BUILD_DEPENDS="perl-cairo perl-glib cairo freetype glib pango perl-dev \ 175.26 -perl-extutils-depends perl-extutils-pkgconfig pango-dev" 175.27 +DEPENDS_std="perl-cairo perl-glib cairo freetype glib pango" 175.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev perl-extutils-depends \ 175.29 +perl-extutils-pkgconfig pango-dev" 175.30 + 175.31 +COPY_std="@std @dev" 175.32 175.33 compile_rules() { 175.34 - perl Makefile.PL && 175.35 - make && 175.36 - make DESTDIR=$install install && 175.37 - 175.38 - chmod -R u+w $install 175.39 + cook_perl 175.40 } 175.41 - 175.42 -genpkg_rules() { 175.43 - copy @std @dev 175.44 - DEPENDS="perl-cairo perl-glib cairo freetype glib pango" 175.45 -}
176.1 --- a/perl-params-util/receipt Thu Dec 06 20:27:31 2018 +0200 176.2 +++ b/perl-params-util/receipt Tue Dec 11 23:38:35 2018 +0200 176.3 @@ -1,28 +1,22 @@ 176.4 # SliTaz package receipt v2. 176.5 176.6 +ORIGIN="Params-Util" 176.7 PACKAGE="perl-params-util" 176.8 VERSION="1.07" 176.9 +AUTHOR="ADAMK" 176.10 CATEGORY="perl" 176.11 SHORT_DESC="Params::Util - Simple, compact and correct param-checking functions" 176.12 MAINTAINER="al.bobylev@gmail.com" 176.13 LICENSE="GPL" 176.14 -WEB_SITE="https://metacpan.org/release/Params-Util" 176.15 -REPOLOGY="perl:params-util" 176.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 176.17 +REPOLOGY="${PACKAGE/-/:}" 176.18 176.19 -TARBALL="Params-Util-$VERSION.tar.gz" 176.20 -WGET_URL="https://cpan.metacpan.org/authors/id/A/AD/ADAMK/$TARBALL" 176.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 176.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 176.23 176.24 -BUILD_DEPENDS="perl-dev" 176.25 +DEPENDS_std="perl" 176.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 176.27 176.28 compile_rules() { 176.29 - perl Makefile.PL && 176.30 - make && 176.31 - make DESTDIR=$install install && 176.32 - 176.33 - chmod -R u+w $install 176.34 + cook_perl 176.35 } 176.36 - 176.37 -genpkg_rules() { 176.38 - copy @std 176.39 - DEPENDS="perl" 176.40 -}
177.1 --- a/perl-params-validate/receipt Thu Dec 06 20:27:31 2018 +0200 177.2 +++ b/perl-params-validate/receipt Tue Dec 11 23:38:35 2018 +0200 177.3 @@ -1,19 +1,22 @@ 177.4 # SliTaz package receipt v2. 177.5 177.6 +ORIGIN="Params-Validate" 177.7 PACKAGE="perl-params-validate" 177.8 VERSION="1.29" 177.9 +AUTHOR="DROLSKY" 177.10 CATEGORY="perl" 177.11 SHORT_DESC="Params::Validate - Validate method/function parameters" 177.12 MAINTAINER="pascal.bellard@slitaz.org" 177.13 LICENSE="GPL" 177.14 -WEB_SITE="https://metacpan.org/release/Params-Validate" 177.15 -REPOLOGY="perl:params-validate" 177.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 177.17 +REPOLOGY="${PACKAGE/-/:}" 177.18 177.19 -TARBALL="Params-Validate-$VERSION.tar.gz" 177.20 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 177.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 177.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 177.23 177.24 -BUILD_DEPENDS="perl-module-implementation perl-dev perl-module-build \ 177.25 -perl-test-fatal perl-test-requires" 177.26 +DEPENDS_std="perl-module-implementation" 177.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev perl-module-build perl-test-fatal \ 177.28 +perl-test-requires" 177.29 177.30 compile_rules() { 177.31 perl Build.PL && 177.32 @@ -21,8 +24,3 @@ 177.33 177.34 chmod -R u+w $install 177.35 } 177.36 - 177.37 -genpkg_rules() { 177.38 - copy @std 177.39 - DEPENDS="perl-module-implementation" 177.40 -}
178.1 --- a/perl-params-validationcompiler/receipt Thu Dec 06 20:27:31 2018 +0200 178.2 +++ b/perl-params-validationcompiler/receipt Tue Dec 11 23:38:35 2018 +0200 178.3 @@ -1,30 +1,25 @@ 178.4 # SliTaz package receipt v2. 178.5 178.6 +ORIGIN="Params-ValidationCompiler" 178.7 PACKAGE="perl-params-validationcompiler" 178.8 VERSION="0.30" 178.9 +AUTHOR="DROLSKY" 178.10 CATEGORY="perl" 178.11 SHORT_DESC="Params::ValidationCompiler - Build an optimized subroutine \ 178.12 parameter validator once, use it forever" 178.13 MAINTAINER="al.bobylev@gmail.com" 178.14 LICENSE="GPL" 178.15 -WEB_SITE="https://metacpan.org/release/Params-ValidationCompiler" 178.16 -REPOLOGY="perl:params-validationcompiler" 178.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 178.18 +HOST_ARCH="any" 178.19 +REPOLOGY="${PACKAGE/-/:}" 178.20 178.21 -TARBALL="Params-ValidationCompiler-$VERSION.tar.gz" 178.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 178.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 178.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 178.25 178.26 -BUILD_DEPENDS="perl-eval-closure perl-exception-class perl-specio \ 178.27 -perl-test2-suite perl-test2-plugin-nowarnings perl-test-without-module" 178.28 +DEPENDS_std="perl-eval-closure perl-exception-class" 178.29 +BUILD_DEPENDS="$DEPENDS_std perl-specio perl-test2-suite \ 178.30 +perl-test2-plugin-nowarnings perl-test-without-module" 178.31 178.32 compile_rules() { 178.33 - perl Makefile.PL && 178.34 - make && 178.35 - make DESTDIR=$install install && 178.36 - 178.37 - chmod -R u+w $install 178.38 + cook_perl 178.39 } 178.40 - 178.41 -genpkg_rules() { 178.42 - copy @std 178.43 - DEPENDS="perl-eval-closure perl-exception-class" 178.44 -}
179.1 --- a/perl-parse-recdescent/receipt Thu Dec 06 20:27:31 2018 +0200 179.2 +++ b/perl-parse-recdescent/receipt Tue Dec 11 23:38:35 2018 +0200 179.3 @@ -1,28 +1,23 @@ 179.4 -# SliTaz package receipt. 179.5 +# SliTaz package receipt v2. 179.6 179.7 +ORIGIN="Parse-RecDescent" 179.8 PACKAGE="perl-parse-recdescent" 179.9 VERSION="1.967015" 179.10 +AUTHOR="JTBRAUN" 179.11 CATEGORY="perl" 179.12 SHORT_DESC="Parse::RecDescent - Generate Recursive-Descent Parsers" 179.13 MAINTAINER="pascal.bellard@slitaz.org" 179.14 LICENSE="GPL" 179.15 -WEB_SITE="https://metacpan.org/release/Parse-RecDescent" 179.16 -REPOLOGY="perl:parse-recdescent" 179.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 179.18 +HOST_ARCH="any" 179.19 +REPOLOGY="${PACKAGE/-/:}" 179.20 179.21 -TARBALL="Parse-RecDescent-$VERSION.tar.gz" 179.22 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JT/JTBRAUN/$TARBALL" 179.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 179.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 179.25 179.26 -BUILD_DEPENDS="perl" 179.27 +DEPENDS_std="perl" 179.28 +BUILD_DEPENDS="$DEPENDS_std" 179.29 179.30 compile_rules() { 179.31 - perl Makefile.PL && 179.32 - make && 179.33 - make DESTDIR=$install install && 179.34 - 179.35 - chmod -R u+w $install 179.36 + cook_perl 179.37 } 179.38 - 179.39 -genpkg_rules() { 179.40 - copy @std 179.41 - DEPENDS="perl" 179.42 -}
180.1 --- a/perl-path-class/receipt Thu Dec 06 20:27:31 2018 +0200 180.2 +++ b/perl-path-class/receipt Tue Dec 11 23:38:35 2018 +0200 180.3 @@ -1,28 +1,23 @@ 180.4 -# SliTaz package receipt. 180.5 +# SliTaz package receipt v2. 180.6 180.7 +ORIGIN="Path-Class" 180.8 PACKAGE="perl-path-class" 180.9 VERSION="0.37" 180.10 +AUTHOR="KWILLIAMS" 180.11 CATEGORY="perl" 180.12 SHORT_DESC="Path::Class - Cross-platform path specification manipulation" 180.13 MAINTAINER="al.bobylev@gmail.com" 180.14 LICENSE="GPL" 180.15 -WEB_SITE="https://metacpan.org/release/Path-Class" 180.16 -REPOLOGY="perl:path-class" 180.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 180.18 +HOST_ARCH="any" 180.19 +REPOLOGY="${PACKAGE/-/:}" 180.20 180.21 -TARBALL="Path-Class-$VERSION.tar.gz" 180.22 -WGET_URL="https://cpan.metacpan.org/authors/id/K/KW/KWILLIAMS/$TARBALL" 180.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 180.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 180.25 180.26 -BUILD_DEPENDS="perl-module-build" 180.27 +DEPENDS_std="perl-module-build" 180.28 +BUILD_DEPENDS="$DEPENDS_std" 180.29 180.30 compile_rules() { 180.31 - perl Makefile.PL && 180.32 - make && 180.33 - make DESTDIR=$install install && 180.34 - 180.35 - chmod -R u+w $install 180.36 + cook_perl 180.37 } 180.38 - 180.39 -genpkg_rules() { 180.40 - copy @std 180.41 - DEPENDS="perl-module-build" 180.42 -}
181.1 --- a/perl-path-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 181.2 +++ b/perl-path-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 181.3 @@ -1,28 +1,23 @@ 181.4 # SliTaz package receipt v2. 181.5 181.6 +ORIGIN="Path-Tiny" 181.7 PACKAGE="perl-path-tiny" 181.8 VERSION="0.108" 181.9 +AUTHOR="DAGOLDEN" 181.10 CATEGORY="perl" 181.11 SHORT_DESC="Path::Tiny - File path utility" 181.12 MAINTAINER="al.bobylev@gmail.com" 181.13 LICENSE="GPL" 181.14 -WEB_SITE="https://metacpan.org/release/Path-Tiny" 181.15 -REPOLOGY="perl:path-tiny" 181.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 181.17 +HOST_ARCH="any" 181.18 +REPOLOGY="${PACKAGE/-/:}" 181.19 181.20 -TARBALL="Path-Tiny-$VERSION.tar.gz" 181.21 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/$TARBALL" 181.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 181.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 181.24 181.25 -BUILD_DEPENDS="perl" 181.26 +DEPENDS_std="perl" 181.27 +BUILD_DEPENDS="$DEPENDS_std" 181.28 181.29 compile_rules() { 181.30 - perl Makefile.PL && 181.31 - make && 181.32 - make DESTDIR=$install install && 181.33 - 181.34 - chmod -R u+w $install 181.35 + cook_perl 181.36 } 181.37 - 181.38 -genpkg_rules() { 181.39 - copy @std 181.40 - DEPENDS="perl" 181.41 -}
182.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 182.2 +++ b/perl-pcsc-perl/receipt Tue Dec 11 23:38:35 2018 +0200 182.3 @@ -0,0 +1,22 @@ 182.4 +# SliTaz package receipt v2. 182.5 + 182.6 +ORIGIN="pcsc-perl" 182.7 +PACKAGE="perl-pcsc-perl" 182.8 +VERSION="1.4.14" 182.9 +AUTHOR="WHOM" 182.10 +CATEGORY="perl" 182.11 +SHORT_DESC="Chipcard::PCSC - Smart card reader interface library" 182.12 +MAINTAINER="devel@slitaz.org" 182.13 +LICENSE="GPL" 182.14 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 182.15 +REPOLOGY="${PACKAGE/-/:}" 182.16 + 182.17 +TARBALL="$ORIGIN-$VERSION.tar.bz2" # !!! 182.18 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 182.19 + 182.20 +DEPENDS_std="perl pcsc-lite" 182.21 +BUILD_DEPENDS="$DEPENDS_std perl-dev pcsc-lite-dev" 182.22 + 182.23 +compile_rules() { 182.24 + cook_perl 182.25 +}
183.1 --- a/perl-pcsc/receipt Thu Dec 06 20:27:31 2018 +0200 183.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 183.3 @@ -1,28 +0,0 @@ 183.4 -# SliTaz package receipt. 183.5 - 183.6 -PACKAGE="perl-pcsc" 183.7 -VERSION="1.4.14" 183.8 -CATEGORY="perl" 183.9 -SHORT_DESC="Chipcard::PCSC - Smart card reader interface library" 183.10 -MAINTAINER="devel@slitaz.org" 183.11 -LICENSE="GPL" 183.12 -WEB_SITE="https://metacpan.org/release/pcsc-perl" 183.13 -REPOLOGY="perl:pcsc-perl" 183.14 - 183.15 -TARBALL="pcsc-perl-$VERSION.tar.bz2" 183.16 -WGET_URL="https://cpan.metacpan.org/authors/id/W/WH/WHOM/$TARBALL" 183.17 - 183.18 -BUILD_DEPENDS="perl-dev pcsc-lite-dev" 183.19 - 183.20 -compile_rules() { 183.21 - perl Makefile.PL && 183.22 - make && 183.23 - make DESTDIR=$install install && 183.24 - 183.25 - chmod -R u+w $install 183.26 -} 183.27 - 183.28 -genpkg_rules() { 183.29 - copy @std 183.30 - DEPENDS="perl pcsc-lite" 183.31 -}
184.1 --- a/perl-perl-ldap/receipt Thu Dec 06 20:27:31 2018 +0200 184.2 +++ b/perl-perl-ldap/receipt Tue Dec 11 23:38:35 2018 +0200 184.3 @@ -1,36 +1,26 @@ 184.4 # SliTaz package receipt v2. 184.5 184.6 +ORIGIN="perl-ldap" 184.7 PACKAGE="perl-perl-ldap" 184.8 VERSION="0.65" 184.9 +AUTHOR="MARSCHAP" 184.10 CATEGORY="perl" 184.11 SHORT_DESC="LDAP client library" 184.12 MAINTAINER="pascal.bellard@slitaz.org" 184.13 LICENSE="GPL" 184.14 -WEB_SITE="https://metacpan.org/release/perl-ldap" 184.15 -REPOLOGY="perl:perl-ldap" 184.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 184.17 +HOST_ARCH="any" 184.18 +REPOLOGY="${PACKAGE/-/:}" 184.19 184.20 -TARBALL="perl-ldap-$VERSION.tar.gz" 184.21 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MA/MARSCHAP/$TARBALL" 184.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 184.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 184.24 184.25 -BUILD_DEPENDS="perl-convert-asn1 perl-text-soundex perl-io-socket-inet6 \ 184.26 +DEPENDS_std="perl-convert-asn1 perl-text-soundex perl-io-socket-inet6 \ 184.27 perl-io-socket-ssl perl-authen-sasl perl-digest-hmac perl-gssapi perl-uri \ 184.28 perl-xml-sax-writer perl-xml-sax-base perl-libwww-perl perl-lwp-mediatypes \ 184.29 -perl-http-negotiate perl-http-message perl-json perl-module-install" 184.30 +perl-http-negotiate perl-http-message perl-json" 184.31 +BUILD_DEPENDS="$DEPENDS_std perl-module-install" 184.32 184.33 compile_rules() { 184.34 - # avoid interactive questions 184.35 - PERL_MM_USE_DEFAULT=1 \ 184.36 - perl Makefile.PL && 184.37 - make && 184.38 - make DESTDIR=$install install && 184.39 - 184.40 - chmod -R u+w $install 184.41 + cook_perl 184.42 } 184.43 - 184.44 -genpkg_rules() { 184.45 - copy @std 184.46 - DEPENDS="perl-convert-asn1 perl-text-soundex perl-io-socket-inet6 \ 184.47 - perl-io-socket-ssl perl-authen-sasl perl-digest-hmac perl-gssapi perl-uri \ 184.48 - perl-xml-sax-writer perl-xml-sax-base perl-libwww-perl perl-lwp-mediatypes \ 184.49 - perl-http-negotiate perl-http-message perl-json" 184.50 -}
185.1 --- a/perl-perl-tidy/receipt Thu Dec 06 20:27:31 2018 +0200 185.2 +++ b/perl-perl-tidy/receipt Tue Dec 11 23:38:35 2018 +0200 185.3 @@ -1,29 +1,23 @@ 185.4 # SliTaz package receipt v2. 185.5 185.6 +ORIGIN="Perl-Tidy" 185.7 PACKAGE="perl-perl-tidy" 185.8 -VERSION="20180220" 185.9 +VERSION="20181120" 185.10 +AUTHOR="SHANCOCK" 185.11 CATEGORY="perl" 185.12 SHORT_DESC="Perl::Tidy - Parses and beautifies perl source" 185.13 MAINTAINER="al.bobylev@gmail.com" 185.14 LICENSE="GPL" 185.15 -WEB_SITE="https://metacpan.org/release/Perl-Tidy" 185.16 -REPOLOGY="perl:perl-tidy" 185.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 185.18 +HOST_ARCH="any" 185.19 +REPOLOGY="${PACKAGE/-/:}" 185.20 185.21 -TARBALL="Perl-Tidy-$VERSION.tar.gz" 185.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SH/SHANCOCK/$TARBALL" 185.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 185.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 185.25 185.26 -BUILD_DEPENDS="perl" 185.27 +DEPENDS_std="perl" 185.28 +BUILD_DEPENDS="$DEPENDS_std" 185.29 185.30 compile_rules() { 185.31 - perl Makefile.PL && 185.32 - make && 185.33 - make DESTDIR=$install install && 185.34 - 185.35 - chmod -R u+w $install 185.36 + cook_perl 185.37 } 185.38 - 185.39 -genpkg_rules() { 185.40 - copy @std 185.41 - DEPENDS="perl" 185.42 - PROVIDE="perltidy" # substitute old name 185.43 -}
186.1 --- a/perl-pod-coverage/receipt Thu Dec 06 20:27:31 2018 +0200 186.2 +++ b/perl-pod-coverage/receipt Tue Dec 11 23:38:35 2018 +0200 186.3 @@ -1,29 +1,24 @@ 186.4 # SliTaz package receipt v2. 186.5 186.6 +ORIGIN="Pod-Coverage" 186.7 PACKAGE="perl-pod-coverage" 186.8 VERSION="0.23" 186.9 +AUTHOR="RCLAMP" 186.10 CATEGORY="perl" 186.11 SHORT_DESC="Pod::Coverage - Checks if the documentation of a module is \ 186.12 comprehensive" 186.13 MAINTAINER="al.bobylev@gmail.com" 186.14 LICENSE="GPL" 186.15 -WEB_SITE="https://metacpan.org/release/Pod-Coverage" 186.16 -REPOLOGY="perl:pod-coverage" 186.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 186.18 +HOST_ARCH="any" 186.19 +REPOLOGY="${PACKAGE/-/:}" 186.20 186.21 -TARBALL="Pod-Coverage-$VERSION.tar.gz" 186.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/$TARBALL" 186.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 186.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 186.25 186.26 -BUILD_DEPENDS="perl-devel-symdump" 186.27 +DEPENDS_std="perl-devel-symdump" 186.28 +BUILD_DEPENDS="$DEPENDS_std" 186.29 186.30 compile_rules() { 186.31 - perl Makefile.PL && 186.32 - make && 186.33 - make DESTDIR=$install install && 186.34 - 186.35 - chmod -R u+w $install 186.36 + cook_perl 186.37 } 186.38 - 186.39 -genpkg_rules() { 186.40 - copy @std 186.41 - DEPENDS="perl-devel-symdump" 186.42 -}
187.1 --- a/perl-proc-processtable/receipt Thu Dec 06 20:27:31 2018 +0200 187.2 +++ b/perl-proc-processtable/receipt Tue Dec 11 23:38:35 2018 +0200 187.3 @@ -1,29 +1,23 @@ 187.4 -# SliTaz package receipt. 187.5 +# SliTaz package receipt v2. 187.6 187.7 +ORIGIN="Proc-ProcessTable" 187.8 PACKAGE="perl-proc-processtable" 187.9 VERSION="0.55" 187.10 +AUTHOR="JWB" 187.11 CATEGORY="perl" 187.12 SHORT_DESC="Proc::ProcessTable - Perl extension to access the unix process \ 187.13 table" 187.14 MAINTAINER="pascal.bellard@slitaz.org" 187.15 LICENSE="GPL" 187.16 -WEB_SITE="https://metacpan.org/release/Proc-ProcessTable" 187.17 -REPOLOGY="perl:proc-processtable" 187.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 187.19 +REPOLOGY="${PACKAGE/-/:}" 187.20 187.21 -TARBALL="Proc-ProcessTable-$VERSION.tar.gz" 187.22 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JW/JWB/$TARBALL" 187.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 187.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 187.25 187.26 -BUILD_DEPENDS="perl-dev" 187.27 +DEPENDS_std="perl" 187.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 187.29 187.30 compile_rules() { 187.31 - perl Makefile.PL && 187.32 - make && 187.33 - make DESTDIR=$install install && 187.34 - 187.35 - chmod -R u+w $install 187.36 + cook_perl 187.37 } 187.38 - 187.39 -genpkg_rules() { 187.40 - copy @std 187.41 - DEPENDS="perl" 187.42 -}
188.1 --- a/perl-rfc-rfc822-address/receipt Thu Dec 06 20:27:31 2018 +0200 188.2 +++ b/perl-rfc-rfc822-address/receipt Tue Dec 11 23:38:35 2018 +0200 188.3 @@ -1,28 +1,23 @@ 188.4 -# SliTaz package receipt. 188.5 +# SliTaz package receipt v2. 188.6 188.7 +ORIGIN="RFC-RFC822-Address" 188.8 PACKAGE="perl-rfc-rfc822-address" 188.9 VERSION="2009110702" 188.10 +AUTHOR="ABIGAIL" 188.11 CATEGORY="perl" 188.12 SHORT_DESC="RFC::RFC822::Address - RFC 822 style address validation" 188.13 MAINTAINER="pascal.bellard@slitaz.org" 188.14 LICENSE="GPL" 188.15 -WEB_SITE="https://metacpan.org/release/RFC-RFC822-Address" 188.16 -REPOLOGY="perl:rfc-rfc822-address" 188.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 188.18 +HOST_ARCH="any" 188.19 +REPOLOGY="${PACKAGE/-/:}" 188.20 188.21 -TARBALL="RFC-RFC822-Address-$VERSION.tar.gz" 188.22 -WGET_URL="https://cpan.metacpan.org/authors/id/A/AB/ABIGAIL/$TARBALL" 188.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 188.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 188.25 188.26 -BUILD_DEPENDS="perl-parse-recdescent" 188.27 +DEPENDS_std="perl-parse-recdescent" 188.28 +BUILD_DEPENDS="$DEPENDS_std" 188.29 188.30 compile_rules() { 188.31 - perl Makefile.PL && 188.32 - make && 188.33 - make DESTDIR=$install install && 188.34 - 188.35 - chmod -R u+w $install 188.36 + cook_perl 188.37 } 188.38 - 188.39 -genpkg_rules() { 188.40 - copy @std 188.41 - DEPENDS="perl-parse-recdescent" 188.42 -}
189.1 --- a/perl-role-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 189.2 +++ b/perl-role-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 189.3 @@ -1,29 +1,24 @@ 189.4 -# SliTaz package receipt. 189.5 +# SliTaz package receipt v2. 189.6 189.7 +ORIGIN="Role-Tiny" 189.8 PACKAGE="perl-role-tiny" 189.9 VERSION="2.000006" 189.10 +AUTHOR="HAARG" 189.11 CATEGORY="perl" 189.12 SHORT_DESC="Role::Tiny - Roles. Like a nouvelle cuisine portion size slice of \ 189.13 Moose" 189.14 MAINTAINER="al.bobylev@gmail.com" 189.15 LICENSE="GPL" 189.16 -WEB_SITE="https://metacpan.org/release/Role-Tiny" 189.17 -REPOLOGY="perl:role-tiny" 189.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 189.19 +HOST_ARCH="any" 189.20 +REPOLOGY="${PACKAGE/-/:}" 189.21 189.22 -TARBALL="Role-Tiny-$VERSION.tar.gz" 189.23 -WGET_URL="https://cpan.metacpan.org/authors/id/H/HA/HAARG/$TARBALL" 189.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 189.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 189.26 189.27 -BUILD_DEPENDS="perl" 189.28 +DEPENDS_std="perl" 189.29 +BUILD_DEPENDS="$DEPENDS_std" 189.30 189.31 compile_rules() { 189.32 - perl Makefile.PL && 189.33 - make && 189.34 - make DESTDIR=$install install && 189.35 - 189.36 - chmod -R u+w $install 189.37 + cook_perl 189.38 } 189.39 - 189.40 -genpkg_rules() { 189.41 - copy @std 189.42 - DEPENDS="perl" 189.43 -}
190.1 --- a/perl-rrd-simple/receipt Thu Dec 06 20:27:31 2018 +0200 190.2 +++ b/perl-rrd-simple/receipt Tue Dec 11 23:38:35 2018 +0200 190.3 @@ -1,30 +1,25 @@ 190.4 -# SliTaz package receipt. 190.5 +# SliTaz package receipt v2. 190.6 190.7 +ORIGIN="RRD-Simple" 190.8 PACKAGE="perl-rrd-simple" 190.9 VERSION="1.44" 190.10 +AUTHOR="NICOLAW" 190.11 CATEGORY="perl" 190.12 SHORT_DESC="RRD::Simple - Simple interface to create and store data in RRD \ 190.13 files" 190.14 MAINTAINER="pascal.bellard@slitaz.org" 190.15 LICENSE="GPL" 190.16 -WEB_SITE="https://metacpan.org/release/RRD-Simple" 190.17 -REPOLOGY="perl:rrd-simple" 190.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 190.19 +HOST_ARCH="any" 190.20 +REPOLOGY="${PACKAGE/-/:}" 190.21 190.22 -TARBALL="RRD-Simple-$VERSION.tar.gz" 190.23 -WGET_URL="https://cpan.metacpan.org/authors/id/N/NI/NICOLAW/$TARBALL" 190.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 190.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 190.26 190.27 -BUILD_DEPENDS="perl rrdtool-perl perl-test-pod perl-test-deep \ 190.28 +DEPENDS_std="perl rrdtool-perl" 190.29 +BUILD_DEPENDS="$DEPENDS_std perl-test-pod perl-test-deep \ 190.30 perl-test-pod-coverage perl-module-build" 190.31 190.32 compile_rules() { 190.33 - perl Makefile.PL && 190.34 - make && 190.35 - make DESTDIR=$install install && 190.36 - 190.37 - chmod -R u+w $install 190.38 + cook_perl 190.39 } 190.40 - 190.41 -genpkg_rules() { 190.42 - copy @std 190.43 - DEPENDS="perl rrdtool-perl" 190.44 -}
191.1 --- a/perl-scalar-list-utils/receipt Thu Dec 06 20:27:31 2018 +0200 191.2 +++ b/perl-scalar-list-utils/receipt Tue Dec 11 23:38:35 2018 +0200 191.3 @@ -1,28 +1,22 @@ 191.4 -# SliTaz package receipt. 191.5 +# SliTaz package receipt v2. 191.6 191.7 +ORIGIN="Scalar-List-Utils" 191.8 PACKAGE="perl-scalar-list-utils" 191.9 VERSION="1.50" 191.10 +AUTHOR="PEVANS" 191.11 CATEGORY="perl" 191.12 SHORT_DESC="Common Scalar and List utility subroutines" 191.13 MAINTAINER="al.bobylev@gmail.com" 191.14 LICENSE="GPL" 191.15 -WEB_SITE="https://metacpan.org/release/Scalar-List-Utils" 191.16 -REPOLOGY="perl:scalar-list-utils" 191.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 191.18 +REPOLOGY="${PACKAGE/-/:}" 191.19 191.20 -TARBALL="Scalar-List-Utils-$VERSION.tar.gz" 191.21 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PE/PEVANS/$TARBALL" 191.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 191.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 191.24 191.25 -BUILD_DEPENDS="perl-dev" 191.26 +DEPENDS_std="perl" 191.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 191.28 191.29 compile_rules() { 191.30 - perl Makefile.PL && 191.31 - make && 191.32 - make DESTDIR=$install install && 191.33 - 191.34 - chmod -R u+w $install 191.35 + cook_perl 191.36 } 191.37 - 191.38 -genpkg_rules() { 191.39 - copy @std 191.40 - DEPENDS="perl" 191.41 -}
192.1 --- a/perl-scope-guard/receipt Thu Dec 06 20:27:31 2018 +0200 192.2 +++ b/perl-scope-guard/receipt Tue Dec 11 23:38:35 2018 +0200 192.3 @@ -1,28 +1,23 @@ 192.4 # SliTaz package receipt v2. 192.5 192.6 +ORIGIN="Scope-Guard" 192.7 PACKAGE="perl-scope-guard" 192.8 VERSION="0.21" 192.9 +AUTHOR="CHOCOLATE" 192.10 CATEGORY="perl" 192.11 SHORT_DESC="Scope::Guard - lexically-scoped resource management" 192.12 MAINTAINER="al.bobylev@gmail.com" 192.13 LICENSE="GPL" 192.14 -WEB_SITE="https://metacpan.org/release/Scope-Guard" 192.15 -REPOLOGY="perl:scope-guard" 192.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 192.17 +HOST_ARCH="any" 192.18 +REPOLOGY="${PACKAGE/-/:}" 192.19 192.20 -TARBALL="Scope-Guard-$VERSION.tar.gz" 192.21 -WGET_URL="https://cpan.metacpan.org/authors/id/C/CH/CHOCOLATE/$TARBALL" 192.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 192.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 192.24 192.25 -BUILD_DEPENDS="perl" 192.26 +DEPENDS_std="perl" 192.27 +BUILD_DEPENDS="$DEPENDS_std" 192.28 192.29 compile_rules() { 192.30 - perl Makefile.PL && 192.31 - make && 192.32 - make DESTDIR=$install install && 192.33 - 192.34 - chmod -R u+w $install 192.35 + cook_perl 192.36 } 192.37 - 192.38 -genpkg_rules() { 192.39 - copy @std 192.40 - DEPENDS="perl" 192.41 -}
193.1 --- a/perl-sgmlspm/receipt Thu Dec 06 20:27:31 2018 +0200 193.2 +++ b/perl-sgmlspm/receipt Tue Dec 11 23:38:35 2018 +0200 193.3 @@ -1,33 +1,29 @@ 193.4 # SliTaz package receipt v2. 193.5 193.6 +ORIGIN="SGMLSpm" 193.7 PACKAGE="perl-sgmlspm" 193.8 VERSION="1.1" 193.9 +#AUTHOR="" 193.10 CATEGORY="perl" 193.11 SHORT_DESC="SGMLSpm - parsing the output from James Clark's SGMLS and NSGMLS \ 193.12 parsers" 193.13 MAINTAINER="al.bobylev@gmail.com" 193.14 LICENSE="GPL" 193.15 -WEB_SITE="http://www.linuxfromscratch.org/blfs/view/svn/general/perl-modules.html#perl-sgmlspm" 193.16 +WEB_SITE="http://www.linuxfromscratch.org/blfs/view/svn/general/perl-modules.html#perl-sgmlspm" # !!! 193.17 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/perl-modules.html#perl-sgmlspm" 193.18 -REPOLOGY="perl:sgmlspm" 193.19 +HOST_ARCH="any" 193.20 +REPOLOGY="${PACKAGE/-/:}" 193.21 193.22 -TARBALL="SGMLSpm-$VERSION.tar.gz" 193.23 -WGET_URL="http://anduin.linuxfromscratch.org/BLFS/perl-modules/$TARBALL" 193.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 193.25 +WGET_URL="http://anduin.linuxfromscratch.org/BLFS/perl-modules/$TARBALL" # !!! 193.26 193.27 -BUILD_DEPENDS="perl" 193.28 +DEPENDS_std="perl" 193.29 +BUILD_DEPENDS="$DEPENDS_std" 193.30 193.31 compile_rules() { 193.32 chmod 644 MYMETA.yml 193.33 193.34 - perl Makefile.PL && 193.35 - make && 193.36 - make DESTDIR=$install install || return 1 193.37 + cook_perl || return 1 193.38 193.39 ln -sv sgmlspl.pl $install/usr/bin/sgmlspl 193.40 - chmod -R u+w $install 193.41 } 193.42 - 193.43 -genpkg_rules() { 193.44 - copy @std 193.45 - DEPENDS="perl" 193.46 -}
194.1 --- a/perl-soap-lite/receipt Thu Dec 06 20:27:31 2018 +0200 194.2 +++ b/perl-soap-lite/receipt Tue Dec 11 23:38:35 2018 +0200 194.3 @@ -1,32 +1,25 @@ 194.4 -# SliTaz package receipt. 194.5 +# SliTaz package receipt v2. 194.6 194.7 +ORIGIN="SOAP-Lite" 194.8 PACKAGE="perl-soap-lite" 194.9 VERSION="1.27" 194.10 +AUTHOR="PHRED" 194.11 CATEGORY="perl" 194.12 SHORT_DESC="SOAP::Lite - Perl's Web Services Toolkit" 194.13 MAINTAINER="pascal.bellard@slitaz.org" 194.14 LICENSE="GPL" 194.15 -WEB_SITE="https://metacpan.org/release/SOAP-Lite" 194.16 -REPOLOGY="perl:soap-lite" 194.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 194.18 +HOST_ARCH="any" 194.19 +REPOLOGY="${PACKAGE/-/:}" 194.20 194.21 -TARBALL="SOAP-Lite-$VERSION.tar.gz" 194.22 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PH/PHRED/$TARBALL" 194.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 194.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 194.25 194.26 -BUILD_DEPENDS="perl-class-inspector perl-io-sessiondata perl-io-socket-ssl \ 194.27 +DEPENDS_std="perl-class-inspector perl-io-sessiondata perl-io-socket-ssl \ 194.28 perl-lwp-protocol-https perl-libwww-perl perl-task-weaken perl-uri \ 194.29 perl-xml-parser" 194.30 +BUILD_DEPENDS="$DEPENDS_std" 194.31 194.32 compile_rules() { 194.33 - perl Makefile.PL && 194.34 - make && 194.35 - make DESTDIR=$install install && 194.36 - 194.37 - chmod -R u+w $install 194.38 + cook_perl 194.39 } 194.40 - 194.41 -genpkg_rules() { 194.42 - copy @std 194.43 - DEPENDS="perl-class-inspector perl-io-sessiondata perl-io-socket-ssl \ 194.44 - perl-lwp-protocol-https perl-libwww-perl perl-task-weaken perl-uri \ 194.45 - perl-xml-parser" 194.46 -}
195.1 --- a/perl-socket6/receipt Thu Dec 06 20:27:31 2018 +0200 195.2 +++ b/perl-socket6/receipt Tue Dec 11 23:38:35 2018 +0200 195.3 @@ -1,29 +1,23 @@ 195.4 # SliTaz package receipt v2. 195.5 195.6 +ORIGIN="Socket6" 195.7 PACKAGE="perl-socket6" 195.8 VERSION="0.29" 195.9 +AUTHOR="UMEMOTO" 195.10 CATEGORY="perl" 195.11 SHORT_DESC="Socket6 - IPv6 related part of the C socket.h defines and \ 195.12 structure manipulators" 195.13 MAINTAINER="devel@slitaz.org" 195.14 LICENSE="GPL" 195.15 -WEB_SITE="https://metacpan.org/release/Socket6" 195.16 -REPOLOGY="perl:socket6" 195.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 195.18 +REPOLOGY="${PACKAGE/-/:}" 195.19 195.20 -TARBALL="Socket6-$VERSION.tar.gz" 195.21 -WGET_URL="https://cpan.metacpan.org/authors/id/U/UM/UMEMOTO/$TARBALL" 195.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 195.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 195.24 195.25 -BUILD_DEPENDS="perl-dev" 195.26 +DEPENDS_std="perl" 195.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 195.28 195.29 compile_rules() { 195.30 - perl Makefile.PL && 195.31 - make && 195.32 - make DESTDIR=$install install && 195.33 - 195.34 - chmod -R u+w $install 195.35 + cook_perl 195.36 } 195.37 - 195.38 -genpkg_rules() { 195.39 - copy @std 195.40 - DEPENDS="perl" 195.41 -}
196.1 --- a/perl-specio/receipt Thu Dec 06 20:27:31 2018 +0200 196.2 +++ b/perl-specio/receipt Tue Dec 11 23:38:35 2018 +0200 196.3 @@ -1,30 +1,24 @@ 196.4 -# SliTaz package receipt. 196.5 +# SliTaz package receipt v2. 196.6 196.7 +ORIGIN="Specio" 196.8 PACKAGE="perl-specio" 196.9 -VERSION="0.42" 196.10 +VERSION="0.43" 196.11 +AUTHOR="DROLSKY" 196.12 CATEGORY="perl" 196.13 SHORT_DESC="Specio - Type constraints and coercions for Perl" 196.14 MAINTAINER="al.bobylev@gmail.com" 196.15 LICENSE="GPL" 196.16 -WEB_SITE="https://metacpan.org/release/Specio" 196.17 -REPOLOGY="perl:specio" 196.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 196.19 +HOST_ARCH="any" 196.20 +REPOLOGY="${PACKAGE/-/:}" 196.21 196.22 -TARBALL="Specio-$VERSION.tar.gz" 196.23 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 196.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 196.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 196.26 196.27 -BUILD_DEPENDS="perl-devel-stacktrace perl-eval-closure perl-module-runtime \ 196.28 -perl-mro-compat perl-role-tiny perl-test-fatal perl-test-needs" 196.29 +DEPENDS_std="perl-devel-stacktrace perl-eval-closure perl-module-runtime \ 196.30 +perl-mro-compat perl-role-tiny perl-test-fatal" 196.31 +BUILD_DEPENDS="$DEPENDS_std perl-test-needs" 196.32 196.33 compile_rules() { 196.34 - perl Makefile.PL && 196.35 - make && 196.36 - make DESTDIR=$install install && 196.37 - 196.38 - chmod -R u+w $install 196.39 + cook_perl 196.40 } 196.41 - 196.42 -genpkg_rules() { 196.43 - copy @std 196.44 - DEPENDS="perl-devel-stacktrace perl-eval-closure perl-module-runtime \ 196.45 - perl-mro-compat perl-role-tiny perl-test-fatal" 196.46 -}
197.1 --- a/perl-spreadsheet-parseexcel/receipt Thu Dec 06 20:27:31 2018 +0200 197.2 +++ b/perl-spreadsheet-parseexcel/receipt Tue Dec 11 23:38:35 2018 +0200 197.3 @@ -1,30 +1,24 @@ 197.4 -# SliTaz package receipt. 197.5 +# SliTaz package receipt v2. 197.6 197.7 +ORIGIN="Spreadsheet-ParseExcel" 197.8 PACKAGE="perl-spreadsheet-parseexcel" 197.9 VERSION="0.65" 197.10 +AUTHOR="DOUGW" 197.11 CATEGORY="perl" 197.12 SHORT_DESC="Spreadsheet::ParseExcel - Read information from an Excel file" 197.13 MAINTAINER="pascal.bellard@slitaz.org" 197.14 LICENSE="GPL" 197.15 -WEB_SITE="https://metacpan.org/release/Spreadsheet-ParseExcel" 197.16 -REPOLOGY="perl:spreadsheet-parseexcel" 197.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 197.18 +HOST_ARCH="any" 197.19 +REPOLOGY="${PACKAGE/-/:}" 197.20 197.21 -TARBALL="Spreadsheet-ParseExcel-$VERSION.tar.gz" 197.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DO/DOUGW/$TARBALL" 197.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 197.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 197.25 197.26 -BUILD_DEPENDS="perl-crypt-rc4 perl-digest-perl-md5 perl-io-stringy \ 197.27 +DEPENDS_std="perl-crypt-rc4 perl-digest-perl-md5 perl-io-stringy \ 197.28 perl-ole-storage_lite" 197.29 +BUILD_DEPENDS="$DEPENDS_std" 197.30 197.31 compile_rules() { 197.32 - perl Makefile.PL && 197.33 - make && 197.34 - make DESTDIR=$install install && 197.35 - 197.36 - chmod -R u+w $install 197.37 + cook_perl 197.38 } 197.39 - 197.40 -genpkg_rules() { 197.41 - copy @std 197.42 - DEPENDS="perl-crypt-rc4 perl-digest-perl-md5 perl-io-stringy \ 197.43 - perl-ole-storage_lite" 197.44 -}
198.1 --- a/perl-spreadsheet-writeexcel/receipt Thu Dec 06 20:27:31 2018 +0200 198.2 +++ b/perl-spreadsheet-writeexcel/receipt Tue Dec 11 23:38:35 2018 +0200 198.3 @@ -1,29 +1,24 @@ 198.4 # SliTaz package receipt v2. 198.5 198.6 +ORIGIN="Spreadsheet-WriteExcel" 198.7 PACKAGE="perl-spreadsheet-writeexcel" 198.8 VERSION="2.40" 198.9 +AUTHOR="JMCNAMARA" 198.10 CATEGORY="perl" 198.11 SHORT_DESC="Spreadsheet::WriteExcel - Write to a cross-platform Excel binary \ 198.12 file" 198.13 MAINTAINER="pascal.bellard@slitaz.org" 198.14 LICENSE="GPL" 198.15 -WEB_SITE="https://metacpan.org/release/Spreadsheet-WriteExcel" 198.16 -REPOLOGY="perl:spreadsheet-writeexcel" 198.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 198.18 +HOST_ARCH="any" 198.19 +REPOLOGY="${PACKAGE/-/:}" 198.20 198.21 -TARBALL="Spreadsheet-WriteExcel-$VERSION.tar.gz" 198.22 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JM/JMCNAMARA/$TARBALL" 198.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 198.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 198.25 198.26 -BUILD_DEPENDS="perl-ole-storage_lite perl-parse-recdescent" 198.27 +DEPENDS_std="perl-ole-storage_lite perl-parse-recdescent" 198.28 +BUILD_DEPENDS="$DEPENDS_std" 198.29 198.30 compile_rules() { 198.31 - perl Makefile.PL && 198.32 - make && 198.33 - make DESTDIR=$install install && 198.34 - 198.35 - chmod -R u+w $install 198.36 + cook_perl 198.37 } 198.38 - 198.39 -genpkg_rules() { 198.40 - copy @std 198.41 - DEPENDS="perl-ole-storage_lite perl-parse-recdescent" 198.42 -}
199.1 --- a/perl-sub-exporter-progressive/receipt Thu Dec 06 20:27:31 2018 +0200 199.2 +++ b/perl-sub-exporter-progressive/receipt Tue Dec 11 23:38:35 2018 +0200 199.3 @@ -1,28 +1,23 @@ 199.4 # SliTaz package receipt v2. 199.5 199.6 +ORIGIN="Sub-Exporter-Progressive" 199.7 PACKAGE="perl-sub-exporter-progressive" 199.8 VERSION="0.001013" 199.9 +AUTHOR="FREW" 199.10 CATEGORY="perl" 199.11 SHORT_DESC="Sub::Exporter::Progressive - Only use Sub::Exporter if you need it" 199.12 MAINTAINER="al.bobylev@gmail.com" 199.13 LICENSE="GPL" 199.14 -WEB_SITE="https://metacpan.org/release/Sub-Exporter-Progressive" 199.15 -REPOLOGY="perl:sub-exporter-progressive" 199.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 199.17 +HOST_ARCH="any" 199.18 +REPOLOGY="${PACKAGE/-/:}" 199.19 199.20 -TARBALL="Sub-Exporter-Progressive-$VERSION.tar.gz" 199.21 -WGET_URL="https://cpan.metacpan.org/authors/id/F/FR/FREW/$TARBALL" 199.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 199.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 199.24 199.25 -BUILD_DEPENDS="perl" 199.26 +DEPENDS_std="perl" 199.27 +BUILD_DEPENDS="$DEPENDS_std" 199.28 199.29 compile_rules() { 199.30 - perl Makefile.PL && 199.31 - make && 199.32 - make DESTDIR=$install install && 199.33 - 199.34 - chmod -R u+w $install 199.35 + cook_perl 199.36 } 199.37 - 199.38 -genpkg_rules() { 199.39 - copy @std 199.40 - DEPENDS="perl" 199.41 -}
200.1 --- a/perl-sub-identify/receipt Thu Dec 06 20:27:31 2018 +0200 200.2 +++ b/perl-sub-identify/receipt Tue Dec 11 23:38:35 2018 +0200 200.3 @@ -1,28 +1,22 @@ 200.4 -# SliTaz package receipt. 200.5 +# SliTaz package receipt v2. 200.6 200.7 +ORIGIN="Sub-Identify" 200.8 PACKAGE="perl-sub-identify" 200.9 VERSION="0.14" 200.10 +AUTHOR="RGARCIA" 200.11 CATEGORY="perl" 200.12 SHORT_DESC="Sub::Identify - Retrieve names of code references" 200.13 MAINTAINER="al.bobylev@gmail.com" 200.14 LICENSE="GPL" 200.15 -WEB_SITE="https://metacpan.org/release/Sub-Identify" 200.16 -REPOLOGY="perl:sub-identify" 200.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 200.18 +REPOLOGY="${PACKAGE/-/:}" 200.19 200.20 -TARBALL="Sub-Identify-$VERSION.tar.gz" 200.21 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RG/RGARCIA/$TARBALL" 200.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 200.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 200.24 200.25 -BUILD_DEPENDS="perl-dev" 200.26 +DEPENDS_std="perl" 200.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 200.28 200.29 compile_rules() { 200.30 - perl Makefile.PL && 200.31 - make && 200.32 - make DESTDIR=$install install && 200.33 - 200.34 - chmod -R u+w $install 200.35 + cook_perl 200.36 } 200.37 - 200.38 -genpkg_rules() { 200.39 - copy @std 200.40 - DEPENDS="perl" 200.41 -}
201.1 --- a/perl-sub-info/receipt Thu Dec 06 20:27:31 2018 +0200 201.2 +++ b/perl-sub-info/receipt Tue Dec 11 23:38:35 2018 +0200 201.3 @@ -1,28 +1,23 @@ 201.4 -# SliTaz package receipt. 201.5 +# SliTaz package receipt v2. 201.6 201.7 +ORIGIN="Sub-Info" 201.8 PACKAGE="perl-sub-info" 201.9 VERSION="0.002" 201.10 +AUTHOR="EXODIST" 201.11 CATEGORY="perl" 201.12 SHORT_DESC="Sub::Info - Tool for inspecting subroutines" 201.13 MAINTAINER="al.bobylev@gmail.com" 201.14 LICENSE="GPL" 201.15 -WEB_SITE="https://metacpan.org/release/Sub-Info" 201.16 -REPOLOGY="perl:sub-info" 201.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 201.18 +HOST_ARCH="any" 201.19 +REPOLOGY="${PACKAGE/-/:}" 201.20 201.21 -TARBALL="Sub-Info-$VERSION.tar.gz" 201.22 -WGET_URL="https://cpan.metacpan.org/authors/id/E/EX/EXODIST/$TARBALL" 201.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 201.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 201.25 201.26 -BUILD_DEPENDS="perl-importer" 201.27 +DEPENDS_std="perl-importer" 201.28 +BUILD_DEPENDS="$DEPENDS_std" 201.29 201.30 compile_rules() { 201.31 - perl Makefile.PL && 201.32 - make && 201.33 - make DESTDIR=$install install && 201.34 - 201.35 - chmod -R u+w $install 201.36 + cook_perl 201.37 } 201.38 - 201.39 -genpkg_rules() { 201.40 - copy @std 201.41 - DEPENDS="perl-importer" 201.42 -}
202.1 --- a/perl-sub-install/receipt Thu Dec 06 20:27:31 2018 +0200 202.2 +++ b/perl-sub-install/receipt Tue Dec 11 23:38:35 2018 +0200 202.3 @@ -1,28 +1,23 @@ 202.4 -# SliTaz package receipt. 202.5 +# SliTaz package receipt v2. 202.6 202.7 +ORIGIN="Sub-Install" 202.8 PACKAGE="perl-sub-install" 202.9 VERSION="0.928" 202.10 +AUTHOR="RJBS" 202.11 CATEGORY="perl" 202.12 SHORT_DESC="Sub::Install - install subroutines into packages easily" 202.13 MAINTAINER="al.bobylev@gmail.com" 202.14 LICENSE="GPL" 202.15 -WEB_SITE="https://metacpan.org/release/Sub-Install" 202.16 -REPOLOGY="perl:sub-install" 202.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 202.18 +HOST_ARCH="any" 202.19 +REPOLOGY="${PACKAGE/-/:}" 202.20 202.21 -TARBALL="Sub-Install-$VERSION.tar.gz" 202.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RJ/RJBS/$TARBALL" 202.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 202.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 202.25 202.26 -DEPENDS="perl" 202.27 -BUILD_DEPENDS="perl" 202.28 +DEPENDS_std="perl" 202.29 +BUILD_DEPENDS="$DEPENDS_std" 202.30 202.31 compile_rules() { 202.32 - perl Makefile.PL && 202.33 - make && 202.34 - make DESTDIR=$install install && 202.35 - 202.36 - chmod -R u+w $install 202.37 + cook_perl 202.38 } 202.39 - 202.40 -genpkg_rules() { 202.41 - copy @std 202.42 -}
203.1 --- a/perl-sub-name/receipt Thu Dec 06 20:27:31 2018 +0200 203.2 +++ b/perl-sub-name/receipt Tue Dec 11 23:38:35 2018 +0200 203.3 @@ -1,28 +1,22 @@ 203.4 # SliTaz package receipt v2. 203.5 203.6 +ORIGIN="Sub-Name" 203.7 PACKAGE="perl-sub-name" 203.8 VERSION="0.21" 203.9 +AUTHOR="ETHER" 203.10 CATEGORY="perl" 203.11 SHORT_DESC="Sub::Name - (Re)name a sub" 203.12 MAINTAINER="al.bobylev@gmail.com" 203.13 LICENSE="GPL" 203.14 -WEB_SITE="https://metacpan.org/release/Sub-Name" 203.15 -REPOLOGY="perl:sub-name" 203.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 203.17 +REPOLOGY="${PACKAGE/-/:}" 203.18 203.19 -TARBALL="Sub-Name-$VERSION.tar.gz" 203.20 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 203.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 203.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 203.23 203.24 -BUILD_DEPENDS="perl-dev" 203.25 +DEPENDS_std="perl" 203.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 203.27 203.28 compile_rules() { 203.29 - perl Makefile.PL && 203.30 - make && 203.31 - make DESTDIR=$install install && 203.32 - 203.33 - chmod -R u+w $install 203.34 + cook_perl 203.35 } 203.36 - 203.37 -genpkg_rules() { 203.38 - copy @std 203.39 - DEPENDS="perl" 203.40 -}
204.1 --- a/perl-sub-uplevel/receipt Thu Dec 06 20:27:31 2018 +0200 204.2 +++ b/perl-sub-uplevel/receipt Tue Dec 11 23:38:35 2018 +0200 204.3 @@ -1,28 +1,23 @@ 204.4 -# SliTaz package receipt. 204.5 +# SliTaz package receipt v2. 204.6 204.7 +ORIGIN="Sub-Uplevel" 204.8 PACKAGE="perl-sub-uplevel" 204.9 VERSION="0.2800" 204.10 +AUTHOR="DAGOLDEN" 204.11 CATEGORY="perl" 204.12 SHORT_DESC="Sub::Uplevel - apparently run a function in a higher stack frame" 204.13 MAINTAINER="al.bobylev@gmail.com" 204.14 LICENSE="GPL" 204.15 -WEB_SITE="https://metacpan.org/release/Sub-Uplevel" 204.16 -REPOLOGY="perl:sub-uplevel" 204.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 204.18 +HOST_ARCH="any" 204.19 +REPOLOGY="${PACKAGE/-/:}" 204.20 204.21 -TARBALL="Sub-Uplevel-$VERSION.tar.gz" 204.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/$TARBALL" 204.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 204.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 204.25 204.26 -BUILD_DEPENDS="perl" 204.27 +DEPENDS_std="perl" 204.28 +BUILD_DEPENDS="$DEPENDS_std" 204.29 204.30 compile_rules() { 204.31 - perl Makefile.PL && 204.32 - make && 204.33 - make DESTDIR=$install install && 204.34 - 204.35 - chmod -R u+w $install 204.36 + cook_perl 204.37 } 204.38 - 204.39 -genpkg_rules() { 204.40 - copy @std 204.41 - DEPENDS="perl" 204.42 -}
205.1 --- a/perl-task-weaken/receipt Thu Dec 06 20:27:31 2018 +0200 205.2 +++ b/perl-task-weaken/receipt Tue Dec 11 23:38:35 2018 +0200 205.3 @@ -1,28 +1,23 @@ 205.4 # SliTaz package receipt v2. 205.5 205.6 +ORIGIN="Task-Weaken" 205.7 PACKAGE="perl-task-weaken" 205.8 VERSION="1.06" 205.9 +AUTHOR="ETHER" 205.10 CATEGORY="perl" 205.11 SHORT_DESC="Task::Weaken - Ensure that a platform has weaken support" 205.12 MAINTAINER="al.bobylev@gmail.com" 205.13 LICENSE="GPL" 205.14 -WEB_SITE="https://metacpan.org/release/Task-Weaken" 205.15 -REPOLOGY="perl:task-weaken" 205.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 205.17 +HOST_ARCH="any" 205.18 +REPOLOGY="${PACKAGE/-/:}" 205.19 205.20 -TARBALL="Task-Weaken-$VERSION.tar.gz" 205.21 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 205.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 205.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 205.24 205.25 -BUILD_DEPENDS="perl-module-install" 205.26 +DEPENDS_std="perl" 205.27 +BUILD_DEPENDS="$DEPENDS_std perl-module-install" 205.28 205.29 compile_rules() { 205.30 - perl Makefile.PL && 205.31 - make && 205.32 - make DESTDIR=$install install && 205.33 - 205.34 - chmod -R u+w $install 205.35 + cook_perl 205.36 } 205.37 - 205.38 -genpkg_rules() { 205.39 - copy @std 205.40 - DEPENDS="perl" 205.41 -}
206.1 --- a/perl-template-toolkit/receipt Thu Dec 06 20:27:31 2018 +0200 206.2 +++ b/perl-template-toolkit/receipt Tue Dec 11 23:38:35 2018 +0200 206.3 @@ -1,28 +1,22 @@ 206.4 # SliTaz package receipt v2. 206.5 206.6 +ORIGIN="Template-Toolkit" 206.7 PACKAGE="perl-template-toolkit" 206.8 VERSION="2.28" 206.9 +AUTHOR="ATOOMIC" 206.10 CATEGORY="perl" 206.11 SHORT_DESC="Template::Toolkit - Template Processing System" 206.12 MAINTAINER="devel@slitaz.org" 206.13 LICENSE="Perl" 206.14 -WEB_SITE="https://metacpan.org/release/Template-Toolkit" 206.15 -REPOLOGY="perl:template-toolkit" 206.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 206.17 +REPOLOGY="${PACKAGE/-/:}" 206.18 206.19 -TARBALL="Template-Toolkit-$VERSION.tar.gz" 206.20 -WGET_URL="https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/$TARBALL" 206.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 206.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 206.23 206.24 -BUILD_DEPENDS="perl-dev perl-appconfig" 206.25 +DEPENDS_std="perl perl-appconfig" 206.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 206.27 206.28 compile_rules() { 206.29 - perl Makefile.PL TT_XS_ENABLE=y TT_XS_DEFAULT=y TT_ACCEPT=y TT_QUIET=n && 206.30 - make && 206.31 - make DESTDIR=$install install && 206.32 - 206.33 - chmod -R u+w $install 206.34 + cook_perl "TT_XS_ENABLE=y TT_XS_DEFAULT=y TT_ACCEPT=y TT_QUIET=n" 206.35 } 206.36 - 206.37 -genpkg_rules() { 206.38 - copy @std 206.39 - DEPENDS="perl perl-appconfig" 206.40 -}
207.1 --- a/perl-term-animation/receipt Thu Dec 06 20:27:31 2018 +0200 207.2 +++ b/perl-term-animation/receipt Tue Dec 11 23:38:35 2018 +0200 207.3 @@ -1,28 +1,23 @@ 207.4 -# SliTaz package receipt. 207.5 +# SliTaz package receipt v2. 207.6 207.7 +ORIGIN="Term-Animation" 207.8 PACKAGE="perl-term-animation" 207.9 VERSION="2.6" 207.10 +AUTHOR="KBAUCOM" 207.11 CATEGORY="perl" 207.12 SHORT_DESC="Term::Animation - ASCII sprite animation framework" 207.13 MAINTAINER="pascal.bellard@slitaz.org" 207.14 LICENSE="GPL" 207.15 -WEB_SITE="https://metacpan.org/release/Term-Animation" 207.16 -REPOLOGY="perl:term-animation" 207.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 207.18 +HOST_ARCH="any" 207.19 +REPOLOGY="${PACKAGE/-/:}" 207.20 207.21 -TARBALL="Term-Animation-$VERSION.tar.gz" 207.22 -WGET_URL="https://cpan.metacpan.org/authors/id/K/KB/KBAUCOM/$TARBALL" 207.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 207.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 207.25 207.26 -BUILD_DEPENDS="perl-curses" 207.27 +DEPENDS_std="perl-curses" 207.28 +BUILD_DEPENDS="$DEPENDS_std" 207.29 207.30 compile_rules() { 207.31 - perl Makefile.PL && 207.32 - make && 207.33 - make DESTDIR=$install install && 207.34 - 207.35 - chmod -R u+w $install 207.36 + cook_perl 207.37 } 207.38 - 207.39 -genpkg_rules() { 207.40 - copy @std 207.41 - DEPENDS="perl-curses" 207.42 -}
208.1 --- a/perl-term-readkey/receipt Thu Dec 06 20:27:31 2018 +0200 208.2 +++ b/perl-term-readkey/receipt Tue Dec 11 23:38:35 2018 +0200 208.3 @@ -1,28 +1,22 @@ 208.4 # SliTaz package receipt v2. 208.5 208.6 +ORIGIN="TermReadKey" 208.7 PACKAGE="perl-term-readkey" 208.8 VERSION="2.37" 208.9 +AUTHOR="JSTOWE" 208.10 CATEGORY="perl" 208.11 SHORT_DESC="Term::ReadKey - A perl module for simple terminal control" 208.12 MAINTAINER="devel@slitaz.org" 208.13 LICENSE="GPL" 208.14 -WEB_SITE="https://metacpan.org/release/TermReadKey" 208.15 -REPOLOGY="perl:term-readkey" 208.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 208.17 +REPOLOGY="${PACKAGE/-/:}" 208.18 208.19 -TARBALL="TermReadKey-$VERSION.tar.gz" 208.20 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JS/JSTOWE/$TARBALL" 208.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 208.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 208.23 208.24 -BUILD_DEPENDS="perl-dev" 208.25 +DEPENDS_std="perl" 208.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 208.27 208.28 compile_rules() { 208.29 - perl Makefile.PL && 208.30 - make && 208.31 - make DESTDIR=$install install && 208.32 - 208.33 - chmod -R u+w $install 208.34 + cook_perl 208.35 } 208.36 - 208.37 -genpkg_rules() { 208.38 - copy @std 208.39 - DEPENDS="perl" 208.40 -}
209.1 --- a/perl-term-table/receipt Thu Dec 06 20:27:31 2018 +0200 209.2 +++ b/perl-term-table/receipt Tue Dec 11 23:38:35 2018 +0200 209.3 @@ -1,28 +1,23 @@ 209.4 # SliTaz package receipt v2. 209.5 209.6 +ORIGIN="Term-Table" 209.7 PACKAGE="perl-term-table" 209.8 -VERSION="0.012" 209.9 +VERSION="0.013" 209.10 +AUTHOR="EXODIST" 209.11 CATEGORY="perl" 209.12 SHORT_DESC="Term::Table - Format a header and rows into a table" 209.13 MAINTAINER="al.bobylev@gmail.com" 209.14 LICENSE="GPL" 209.15 -WEB_SITE="https://metacpan.org/release/Term-Table" 209.16 -REPOLOGY="perl:term-table" 209.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 209.18 +HOST_ARCH="any" 209.19 +REPOLOGY="${PACKAGE/-/:}" 209.20 209.21 -TARBALL="Term-Table-$VERSION.tar.gz" 209.22 -WGET_URL="https://cpan.metacpan.org/authors/id/E/EX/EXODIST/$TARBALL" 209.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 209.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 209.25 209.26 -BUILD_DEPENDS="perl-importer" 209.27 +DEPENDS_std="perl-importer" 209.28 +BUILD_DEPENDS="$DEPENDS_std" 209.29 209.30 compile_rules() { 209.31 - perl Makefile.PL && 209.32 - make && 209.33 - make DESTDIR=$install install && 209.34 - 209.35 - chmod -R u+w $install 209.36 + cook_perl 209.37 } 209.38 - 209.39 -genpkg_rules() { 209.40 - copy @std 209.41 - DEPENDS="perl-importer" 209.42 -}
210.1 --- a/perl-test-deep/receipt Thu Dec 06 20:27:31 2018 +0200 210.2 +++ b/perl-test-deep/receipt Tue Dec 11 23:38:35 2018 +0200 210.3 @@ -1,28 +1,23 @@ 210.4 # SliTaz package receipt v2. 210.5 210.6 +ORIGIN="Test-Deep" 210.7 PACKAGE="perl-test-deep" 210.8 VERSION="1.128" 210.9 +AUTHOR="RJBS" 210.10 CATEGORY="perl" 210.11 SHORT_DESC="Test::Deep - Extremely flexible deep comparison" 210.12 MAINTAINER="devel@slitaz.org" 210.13 LICENSE="GPL" 210.14 -WEB_SITE="https://metacpan.org/release/Test-Deep" 210.15 -REPOLOGY="perl:test-deep" 210.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 210.17 +HOST_ARCH="any" 210.18 +REPOLOGY="${PACKAGE/-/:}" 210.19 210.20 -TARBALL="Test-Deep-$VERSION.tar.gz" 210.21 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RJ/RJBS/$TARBALL" 210.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 210.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 210.24 210.25 -BUILD_DEPENDS="perl" 210.26 +DEPENDS_std="perl" 210.27 +BUILD_DEPENDS="$DEPENDS_std" 210.28 210.29 compile_rules() { 210.30 - perl Makefile.PL && 210.31 - make && 210.32 - make DESTDIR=$install install && 210.33 - 210.34 - chmod -R u+w $install 210.35 + cook_perl 210.36 } 210.37 - 210.38 -genpkg_rules() { 210.39 - copy @std 210.40 - DEPENDS="perl" 210.41 -}
211.1 --- a/perl-test-exception/receipt Thu Dec 06 20:27:31 2018 +0200 211.2 +++ b/perl-test-exception/receipt Tue Dec 11 23:38:35 2018 +0200 211.3 @@ -1,28 +1,23 @@ 211.4 -# SliTaz package receipt. 211.5 +# SliTaz package receipt v2. 211.6 211.7 +ORIGIN="Test-Exception" 211.8 PACKAGE="perl-test-exception" 211.9 VERSION="0.43" 211.10 +AUTHOR="EXODIST" 211.11 CATEGORY="perl" 211.12 SHORT_DESC="Test::Exception - Test exception-based code" 211.13 MAINTAINER="pascal.bellard@slitaz.org" 211.14 LICENSE="GPL" 211.15 -WEB_SITE="https://metacpan.org/release/Test-Exception" 211.16 -REPOLOGY="perl:test-exception" 211.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 211.18 +HOST_ARCH="any" 211.19 +REPOLOGY="${PACKAGE/-/:}" 211.20 211.21 -TARBALL="Test-Exception-$VERSION.tar.gz" 211.22 -WGET_URL="https://cpan.metacpan.org/authors/id/E/EX/EXODIST/$TARBALL" 211.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 211.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 211.25 211.26 -BUILD_DEPENDS="perl-sub-uplevel" 211.27 +DEPENDS_std="perl-sub-uplevel" 211.28 +BUILD_DEPENDS="$DEPENDS_std" 211.29 211.30 compile_rules() { 211.31 - perl Makefile.PL && 211.32 - make && 211.33 - make DESTDIR=$install install && 211.34 - 211.35 - chmod -R u+w $install 211.36 + cook_perl 211.37 } 211.38 - 211.39 -genpkg_rules() { 211.40 - copy @std 211.41 - DEPENDS="perl-sub-uplevel" 211.42 -}
212.1 --- a/perl-test-fatal/receipt Thu Dec 06 20:27:31 2018 +0200 212.2 +++ b/perl-test-fatal/receipt Tue Dec 11 23:38:35 2018 +0200 212.3 @@ -1,29 +1,24 @@ 212.4 # SliTaz package receipt v2. 212.5 212.6 +ORIGIN="Test-Fatal" 212.7 PACKAGE="perl-test-fatal" 212.8 VERSION="0.014" 212.9 +AUTHOR="RJBS" 212.10 CATEGORY="perl" 212.11 SHORT_DESC="Test::Fatal - incredibly simple helpers for testing code with \ 212.12 exceptions" 212.13 MAINTAINER="devel@slitaz.org" 212.14 LICENSE="GPL" 212.15 -WEB_SITE="https://metacpan.org/release/Test-Fatal" 212.16 -REPOLOGY="perl:test-fatal" 212.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 212.18 +HOST_ARCH="any" 212.19 +REPOLOGY="${PACKAGE/-/:}" 212.20 212.21 -TARBALL="Test-Fatal-$VERSION.tar.gz" 212.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RJ/RJBS/$TARBALL" 212.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 212.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 212.25 212.26 -BUILD_DEPENDS="perl-try-tiny" 212.27 +DEPENDS_std="perl-try-tiny" 212.28 +BUILD_DEPENDS="$DEPENDS_std" 212.29 212.30 compile_rules() { 212.31 - perl Makefile.PL && 212.32 - make && 212.33 - make DESTDIR=$install install && 212.34 - 212.35 - chmod -R u+w $install 212.36 + cook_perl 212.37 } 212.38 - 212.39 -genpkg_rules() { 212.40 - copy @std 212.41 - DEPENDS="perl-try-tiny" 212.42 -}
213.1 --- a/perl-test-file-sharedir/receipt Thu Dec 06 20:27:31 2018 +0200 213.2 +++ b/perl-test-file-sharedir/receipt Tue Dec 11 23:38:35 2018 +0200 213.3 @@ -1,31 +1,25 @@ 213.4 -# SliTaz package receipt. 213.5 +# SliTaz package receipt v2. 213.6 213.7 +ORIGIN="Test-File-ShareDir" 213.8 PACKAGE="perl-test-file-sharedir" 213.9 VERSION="1.001002" 213.10 +AUTHOR="KENTNL" 213.11 CATEGORY="perl" 213.12 SHORT_DESC="Test::File::ShareDir - Create a Fake ShareDir for your modules for \ 213.13 testing" 213.14 MAINTAINER="al.bobylev@gmail.com" 213.15 LICENSE="GPL" 213.16 -WEB_SITE="https://metacpan.org/release/Test-File-ShareDir" 213.17 -REPOLOGY="perl:test-file-sharedir" 213.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 213.19 +HOST_ARCH="any" 213.20 +REPOLOGY="${PACKAGE/-/:}" 213.21 213.22 -TARBALL="Test-File-ShareDir-$VERSION.tar.gz" 213.23 -WGET_URL="https://cpan.metacpan.org/authors/id/K/KE/KENTNL/$TARBALL" 213.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 213.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 213.26 213.27 -BUILD_DEPENDS="perl-class-tiny perl-file-copy-recursive perl-file-sharedir \ 213.28 -perl-path-tiny perl-scope-guard perl-test-fatal" 213.29 +DEPENDS_std="perl-class-tiny perl-file-copy-recursive perl-file-sharedir \ 213.30 +perl-path-tiny perl-scope-guard" 213.31 +BUILD_DEPENDS="$DEPENDS_std perl-test-fatal" 213.32 213.33 compile_rules() { 213.34 - perl Makefile.PL && 213.35 - make && 213.36 - make DESTDIR=$install install && 213.37 - 213.38 - chmod -R u+w $install 213.39 + cook_perl 213.40 } 213.41 - 213.42 -genpkg_rules() { 213.43 - copy @std 213.44 - DEPENDS="perl-class-tiny perl-file-copy-recursive perl-file-sharedir \ 213.45 - perl-path-tiny perl-scope-guard" 213.46 -}
214.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 214.2 +++ b/perl-test-inter/receipt Tue Dec 11 23:38:35 2018 +0200 214.3 @@ -0,0 +1,23 @@ 214.4 +# SliTaz package receipt v2. 214.5 + 214.6 +ORIGIN="Test-Inter" 214.7 +PACKAGE="perl-test-inter" 214.8 +VERSION="1.07" 214.9 +AUTHOR="SBECK" 214.10 +CATEGORY="perl" 214.11 +SHORT_DESC="Test::Inter - framework for more readable interactive test scripts" 214.12 +MAINTAINER="al.bobylev@gmail.com" 214.13 +LICENSE="GPL" 214.14 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 214.15 +HOST_ARCH="any" 214.16 +REPOLOGY="${PACKAGE/-/:}" 214.17 + 214.18 +TARBALL="$ORIGIN-$VERSION.tar.gz" 214.19 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 214.20 + 214.21 +DEPENDS_std="perl" 214.22 +BUILD_DEPENDS="$DEPENDS_std" 214.23 + 214.24 +compile_rules() { 214.25 + cook_perl 214.26 +}
215.1 --- a/perl-test-manifest/receipt Thu Dec 06 20:27:31 2018 +0200 215.2 +++ b/perl-test-manifest/receipt Tue Dec 11 23:38:35 2018 +0200 215.3 @@ -1,28 +1,23 @@ 215.4 -# SliTaz package receipt. 215.5 +# SliTaz package receipt v2. 215.6 215.7 +ORIGIN="Test-Manifest" 215.8 PACKAGE="perl-test-manifest" 215.9 VERSION="2.021" 215.10 +AUTHOR="BDFOY" 215.11 CATEGORY="perl" 215.12 SHORT_DESC="Test::Manifest - interact with a t/test_manifest file" 215.13 MAINTAINER="al.bobylev@gmail.com" 215.14 LICENSE="GPL" 215.15 -WEB_SITE="https://metacpan.org/release/Test-Manifest" 215.16 -REPOLOGY="perl:test-manifest" 215.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 215.18 +HOST_ARCH="any" 215.19 +REPOLOGY="${PACKAGE/-/:}" 215.20 215.21 -TARBALL="Test-Manifest-$VERSION.tar.gz" 215.22 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BD/BDFOY/$TARBALL" 215.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 215.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 215.25 215.26 -BUILD_DEPENDS="perl" 215.27 +DEPENDS_std="perl" 215.28 +BUILD_DEPENDS="$DEPENDS_std" 215.29 215.30 compile_rules() { 215.31 - perl Makefile.PL && 215.32 - make && 215.33 - make DESTDIR=$install install && 215.34 - 215.35 - chmod -R u+w $install 215.36 + cook_perl 215.37 } 215.38 - 215.39 -genpkg_rules() { 215.40 - copy @std 215.41 - DEPENDS="perl" 215.42 -}
216.1 --- a/perl-test-needs/receipt Thu Dec 06 20:27:31 2018 +0200 216.2 +++ b/perl-test-needs/receipt Tue Dec 11 23:38:35 2018 +0200 216.3 @@ -1,28 +1,23 @@ 216.4 -# SliTaz package receipt. 216.5 +# SliTaz package receipt v2. 216.6 216.7 +ORIGIN="Test-Needs" 216.8 PACKAGE="perl-test-needs" 216.9 VERSION="0.002005" 216.10 +AUTHOR="HAARG" 216.11 CATEGORY="perl" 216.12 SHORT_DESC="Test::Needs - Skip tests when modules not available" 216.13 MAINTAINER="al.bobylev@gmail.com" 216.14 LICENSE="GPL" 216.15 -WEB_SITE="https://metacpan.org/release/Test-Needs" 216.16 -REPOLOGY="perl:test-needs" 216.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 216.18 +HOST_ARCH="any" 216.19 +REPOLOGY="${PACKAGE/-/:}" 216.20 216.21 -TARBALL="Test-Needs-$VERSION.tar.gz" 216.22 -WGET_URL="https://cpan.metacpan.org/authors/id/H/HA/HAARG/$TARBALL" 216.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 216.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 216.25 216.26 -BUILD_DEPENDS="perl" 216.27 +DEPENDS_std="perl" 216.28 +BUILD_DEPENDS="$DEPENDS_std" 216.29 216.30 compile_rules() { 216.31 - perl Makefile.PL && 216.32 - make && 216.33 - make DESTDIR=$install install && 216.34 - 216.35 - chmod -R u+w $install 216.36 + cook_perl 216.37 } 216.38 - 216.39 -genpkg_rules() { 216.40 - copy @std 216.41 - DEPENDS="perl" 216.42 -}
217.1 --- a/perl-test-nowarnings/receipt Thu Dec 06 20:27:31 2018 +0200 217.2 +++ b/perl-test-nowarnings/receipt Tue Dec 11 23:38:35 2018 +0200 217.3 @@ -1,29 +1,24 @@ 217.4 -# SliTaz package receipt. 217.5 +# SliTaz package receipt v2. 217.6 217.7 +ORIGIN="Test-NoWarnings" 217.8 PACKAGE="perl-test-nowarnings" 217.9 VERSION="1.04" 217.10 +AUTHOR="ADAMK" 217.11 CATEGORY="perl" 217.12 SHORT_DESC="Test::NoWarnings - Make sure you didn't emit any warnings while \ 217.13 testing" 217.14 MAINTAINER="devel@slitaz.org" 217.15 LICENSE="LGPL2.1" 217.16 -WEB_SITE="https://metacpan.org/release/Test-NoWarnings" 217.17 -REPOLOGY="perl:test-nowarnings" 217.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 217.19 +HOST_ARCH="any" 217.20 +REPOLOGY="${PACKAGE/-/:}" 217.21 217.22 -TARBALL="Test-NoWarnings-$VERSION.tar.gz" 217.23 -WGET_URL="https://cpan.metacpan.org/authors/id/A/AD/ADAMK/$TARBALL" 217.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 217.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 217.26 217.27 -BUILD_DEPENDS="perl" 217.28 +DEPENDS_std="perl" 217.29 +BUILD_DEPENDS="$DEPENDS_std" 217.30 217.31 compile_rules() { 217.32 - perl Makefile.PL && 217.33 - make && 217.34 - make DESTDIR=$install install && 217.35 - 217.36 - chmod -R u+w $install 217.37 + cook_perl 217.38 } 217.39 - 217.40 -genpkg_rules() { 217.41 - copy @std 217.42 - DEPENDS="perl" 217.43 -}
218.1 --- a/perl-test-number-delta/receipt Thu Dec 06 20:27:31 2018 +0200 218.2 +++ b/perl-test-number-delta/receipt Tue Dec 11 23:38:35 2018 +0200 218.3 @@ -1,29 +1,24 @@ 218.4 -# SliTaz package receipt. 218.5 +# SliTaz package receipt v2. 218.6 218.7 +ORIGIN="Test-Number-Delta" 218.8 PACKAGE="perl-test-number-delta" 218.9 VERSION="1.06" 218.10 +AUTHOR="DAGOLDEN" 218.11 CATEGORY="perl" 218.12 SHORT_DESC="Test::Number::Delta - Compare the difference between numbers \ 218.13 against a given tolerance" 218.14 MAINTAINER="claudinei@slitaz.org" 218.15 LICENSE="GPL" 218.16 -WEB_SITE="https://metacpan.org/release/Test-Number-Delta" 218.17 -REPOLOGY="perl:test-number-delta" 218.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 218.19 +HOST_ARCH="any" 218.20 +REPOLOGY="${PACKAGE/-/:}" 218.21 218.22 -TARBALL="Test-Number-Delta-$VERSION.tar.gz" 218.23 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/$TARBALL" 218.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 218.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 218.26 218.27 -BUILD_DEPENDS="perl" 218.28 +DEPENDS_std="perl" 218.29 +BUILD_DEPENDS="$DEPENDS_std" 218.30 218.31 compile_rules() { 218.32 - perl Makefile.PL && 218.33 - make && 218.34 - make DESTDIR=$install install && 218.35 - 218.36 - chmod -R u+w $install 218.37 + cook_perl 218.38 } 218.39 - 218.40 -genpkg_rules() { 218.41 - copy @std 218.42 - DEPENDS="perl" 218.43 -}
219.1 --- a/perl-test-pod-coverage/receipt Thu Dec 06 20:27:31 2018 +0200 219.2 +++ b/perl-test-pod-coverage/receipt Tue Dec 11 23:38:35 2018 +0200 219.3 @@ -1,26 +1,23 @@ 219.4 -# SliTaz package receipt. 219.5 +# SliTaz package receipt v2. 219.6 219.7 +ORIGIN="Test-Pod-Coverage" 219.8 PACKAGE="perl-test-pod-coverage" 219.9 VERSION="1.10" 219.10 +AUTHOR="NEILB" 219.11 CATEGORY="perl" 219.12 SHORT_DESC="Test::Pod::Coverage - Check for pod coverage in your distribution" 219.13 MAINTAINER="devel@slitaz.org" 219.14 LICENSE="GPL" 219.15 -WEB_SITE="https://metacpan.org/release/Test-Pod-Coverage" 219.16 -REPOLOGY="perl:test-pod-coverage" 219.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 219.18 +HOST_ARCH="any" 219.19 +REPOLOGY="${PACKAGE/-/:}" 219.20 219.21 -TARBALL="Test-Pod-Coverage-$VERSION.tar.gz" 219.22 -WGET_URL="https://cpan.metacpan.org/authors/id/N/NE/NEILB/$TARBALL" 219.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 219.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 219.25 219.26 -BUILD_DEPENDS="perl-pod-coverage" 219.27 +DEPENDS_std="perl-pod-coverage" 219.28 +BUILD_DEPENDS="$DEPENDS_std" 219.29 219.30 compile_rules() { 219.31 - perl Makefile.PL && 219.32 - make && 219.33 - make DESTDIR=$install install 219.34 + cook_perl 219.35 } 219.36 - 219.37 -genpkg_rules() { 219.38 - copy @std 219.39 - DEPENDS="perl-pod-coverage" 219.40 -}
220.1 --- a/perl-test-pod/receipt Thu Dec 06 20:27:31 2018 +0200 220.2 +++ b/perl-test-pod/receipt Tue Dec 11 23:38:35 2018 +0200 220.3 @@ -1,28 +1,23 @@ 220.4 # SliTaz package receipt v2. 220.5 220.6 +ORIGIN="Test-Pod" 220.7 PACKAGE="perl-test-pod" 220.8 VERSION="1.52" 220.9 +AUTHOR="ETHER" 220.10 CATEGORY="perl" 220.11 SHORT_DESC="Test::Pod - check for POD errors in files" 220.12 MAINTAINER="devel@slitaz.org" 220.13 LICENSE="GPL" 220.14 -WEB_SITE="https://metacpan.org/release/Test-Pod" 220.15 -REPOLOGY="perl:test-pod" 220.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 220.17 +HOST_ARCH="any" 220.18 +REPOLOGY="${PACKAGE/-/:}" 220.19 220.20 -TARBALL="Test-Pod-$VERSION.tar.gz" 220.21 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 220.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 220.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 220.24 220.25 -BUILD_DEPENDS="perl" 220.26 +DEPENDS_std="perl" 220.27 +BUILD_DEPENDS="$DEPENDS_std" 220.28 220.29 compile_rules() { 220.30 - perl Makefile.PL && 220.31 - make && 220.32 - make DESTDIR=$install install && 220.33 - 220.34 - chmod -R u+w $install 220.35 + cook_perl 220.36 } 220.37 - 220.38 -genpkg_rules() { 220.39 - copy @std 220.40 - DEPENDS="perl" 220.41 -}
221.1 --- a/perl-test-requires/receipt Thu Dec 06 20:27:31 2018 +0200 221.2 +++ b/perl-test-requires/receipt Tue Dec 11 23:38:35 2018 +0200 221.3 @@ -1,28 +1,23 @@ 221.4 -# SliTaz package receipt. 221.5 +# SliTaz package receipt v2. 221.6 221.7 +ORIGIN="Test-Requires" 221.8 PACKAGE="perl-test-requires" 221.9 VERSION="0.10" 221.10 +AUTHOR="TOKUHIROM" 221.11 CATEGORY="perl" 221.12 SHORT_DESC="Test::Requires - Checks to see if the module can be loaded" 221.13 MAINTAINER="devel@slitaz.org" 221.14 LICENSE="GPL" 221.15 -WEB_SITE="https://metacpan.org/release/Test-Requires" 221.16 -REPOLOGY="perl:test-requires" 221.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 221.18 +HOST_ARCH="any" 221.19 +REPOLOGY="${PACKAGE/-/:}" 221.20 221.21 -TARBALL="Test-Requires-$VERSION.tar.gz" 221.22 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM/$TARBALL" 221.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 221.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 221.25 221.26 -BUILD_DEPENDS="perl" 221.27 +DEPENDS_std="perl" 221.28 +BUILD_DEPENDS="$DEPENDS_std" 221.29 221.30 compile_rules() { 221.31 - perl Makefile.PL && 221.32 - make && 221.33 - make DESTDIR=$install install && 221.34 - 221.35 - chmod -R u+w $install 221.36 + cook_perl 221.37 } 221.38 - 221.39 -genpkg_rules() { 221.40 - copy @std 221.41 - DEPENDS="perl" 221.42 -}
222.1 --- a/perl-test-requiresinternet/receipt Thu Dec 06 20:27:31 2018 +0200 222.2 +++ b/perl-test-requiresinternet/receipt Tue Dec 11 23:38:35 2018 +0200 222.3 @@ -1,28 +1,23 @@ 222.4 # SliTaz package receipt v2. 222.5 222.6 +ORIGIN="Test-RequiresInternet" 222.7 PACKAGE="perl-test-requiresinternet" 222.8 VERSION="0.05" 222.9 +AUTHOR="MALLEN" 222.10 CATEGORY="perl" 222.11 SHORT_DESC="Test::RequiresInternet - Easily test network connectivity" 222.12 MAINTAINER="al.bobylev@gmail.com" 222.13 LICENSE="GPL" 222.14 -WEB_SITE="https://metacpan.org/release/Test-RequiresInternet" 222.15 -REPOLOGY="perl:test-requiresinternet" 222.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 222.17 +HOST_ARCH="any" 222.18 +REPOLOGY="${PACKAGE/-/:}" 222.19 222.20 -TARBALL="Test-RequiresInternet-$VERSION.tar.gz" 222.21 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MA/MALLEN/$TARBALL" 222.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 222.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 222.24 222.25 -BUILD_DEPENDS="perl" 222.26 +DEPENDS_std="perl" 222.27 +BUILD_DEPENDS="$DEPENDS_std" 222.28 222.29 compile_rules() { 222.30 - perl Makefile.PL && 222.31 - make && 222.32 - make DESTDIR=$install install && 222.33 - 222.34 - chmod -R u+w $install 222.35 + cook_perl 222.36 } 222.37 - 222.38 -genpkg_rules() { 222.39 - copy @std 222.40 - DEPENDS="perl" 222.41 -}
223.1 --- a/perl-test-simple/receipt Thu Dec 06 20:27:31 2018 +0200 223.2 +++ b/perl-test-simple/receipt Tue Dec 11 23:38:35 2018 +0200 223.3 @@ -1,28 +1,23 @@ 223.4 # SliTaz package receipt v2. 223.5 223.6 +ORIGIN="Test-Simple" 223.7 PACKAGE="perl-test-simple" 223.8 -VERSION="1.302140" 223.9 +VERSION="1.302141" 223.10 +AUTHOR="EXODIST" 223.11 CATEGORY="perl" 223.12 SHORT_DESC="Basic utilities for writing tests" 223.13 MAINTAINER="devel@slitaz.org" 223.14 LICENSE="GPL" 223.15 -WEB_SITE="https://metacpan.org/release/Test-Simple" 223.16 -REPOLOGY="perl:test-simple" 223.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 223.18 +HOST_ARCH="any" 223.19 +REPOLOGY="${PACKAGE/-/:}" 223.20 223.21 -TARBALL="Test-Simple-$VERSION.tar.gz" 223.22 -WGET_URL="https://cpan.metacpan.org/authors/id/E/EX/EXODIST/$TARBALL" 223.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 223.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 223.25 223.26 -BUILD_DEPENDS="perl" 223.27 +DEPENDS_std="perl" 223.28 +BUILD_DEPENDS="$DEPENDS_std" 223.29 223.30 compile_rules() { 223.31 - perl Makefile.PL && 223.32 - make && 223.33 - make DESTDIR=$install install && 223.34 - 223.35 - chmod -R u+w $install 223.36 + cook_perl 223.37 } 223.38 - 223.39 -genpkg_rules() { 223.40 - copy @std 223.41 - DEPENDS="perl" 223.42 -}
224.1 --- a/perl-test-warn/receipt Thu Dec 06 20:27:31 2018 +0200 224.2 +++ b/perl-test-warn/receipt Tue Dec 11 23:38:35 2018 +0200 224.3 @@ -1,28 +1,23 @@ 224.4 # SliTaz package receipt v2. 224.5 224.6 +ORIGIN="Test-Warn" 224.7 PACKAGE="perl-test-warn" 224.8 VERSION="0.36" 224.9 +AUTHOR="BIGJ" 224.10 CATEGORY="perl" 224.11 SHORT_DESC="Test::Warn - Perl extension to test methods for warnings" 224.12 MAINTAINER="al.bobylev@gmail.com" 224.13 LICENSE="GPL" 224.14 -WEB_SITE="https://metacpan.org/release/Test-Warn" 224.15 -REPOLOGY="perl:test-warn" 224.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 224.17 +HOST_ARCH="any" 224.18 +REPOLOGY="${PACKAGE/-/:}" 224.19 224.20 -TARBALL="Test-Warn-$VERSION.tar.gz" 224.21 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BI/BIGJ/$TARBALL" 224.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 224.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 224.24 224.25 -BUILD_DEPENDS="perl-sub-uplevel" 224.26 +DEPENDS_std="perl-sub-uplevel" 224.27 +BUILD_DEPENDS="$DEPENDS_std" 224.28 224.29 compile_rules() { 224.30 - perl Makefile.PL && 224.31 - make && 224.32 - make DESTDIR=$install install && 224.33 - 224.34 - chmod -R u+w $install 224.35 + cook_perl 224.36 } 224.37 - 224.38 -genpkg_rules() { 224.39 - copy @std 224.40 - DEPENDS="perl-sub-uplevel" 224.41 -}
225.1 --- a/perl-test-warnings/receipt Thu Dec 06 20:27:31 2018 +0200 225.2 +++ b/perl-test-warnings/receipt Tue Dec 11 23:38:35 2018 +0200 225.3 @@ -1,28 +1,23 @@ 225.4 -# SliTaz package receipt. 225.5 +# SliTaz package receipt v2. 225.6 225.7 +ORIGIN="Test-Warnings" 225.8 PACKAGE="perl-test-warnings" 225.9 VERSION="0.026" 225.10 +AUTHOR="ETHER" 225.11 CATEGORY="perl" 225.12 SHORT_DESC="Test::Warnings - Test for warnings and the lack of them" 225.13 MAINTAINER="devel@slitaz.org" 225.14 LICENSE="GPL" 225.15 -WEB_SITE="https://metacpan.org/release/Test-Warnings" 225.16 -REPOLOGY="perl:test-warnings" 225.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 225.18 +HOST_ARCH="any" 225.19 +REPOLOGY="${PACKAGE/-/:}" 225.20 225.21 -TARBALL="Test-Warnings-$VERSION.tar.gz" 225.22 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 225.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 225.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 225.25 225.26 -BUILD_DEPENDS="perl" 225.27 +DEPENDS_std="perl" 225.28 +BUILD_DEPENDS="$DEPENDS_std" 225.29 225.30 compile_rules() { 225.31 - perl Makefile.PL && 225.32 - make && 225.33 - make DESTDIR=$install install && 225.34 - 225.35 - chmod -R u+w $install 225.36 + cook_perl 225.37 } 225.38 - 225.39 -genpkg_rules() { 225.40 - copy @std 225.41 - DEPENDS="perl" 225.42 -}
226.1 --- a/perl-test-without-module/receipt Thu Dec 06 20:27:31 2018 +0200 226.2 +++ b/perl-test-without-module/receipt Tue Dec 11 23:38:35 2018 +0200 226.3 @@ -1,29 +1,24 @@ 226.4 # SliTaz package receipt v2. 226.5 226.6 +ORIGIN="Test-Without-Module" 226.7 PACKAGE="perl-test-without-module" 226.8 VERSION="0.20" 226.9 +AUTHOR="CORION" 226.10 CATEGORY="perl" 226.11 SHORT_DESC="Test::Without::Module - Test fallback behaviour in absence of \ 226.12 modules" 226.13 MAINTAINER="al.bobylev@gmail.com" 226.14 LICENSE="GPL" 226.15 -WEB_SITE="https://metacpan.org/release/Test-Without-Module" 226.16 -REPOLOGY="perl:test-without-module" 226.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 226.18 +HOST_ARCH="any" 226.19 +REPOLOGY="${PACKAGE/-/:}" 226.20 226.21 -TARBALL="Test-Without-Module-$VERSION.tar.gz" 226.22 -WGET_URL="https://cpan.metacpan.org/authors/id/C/CO/CORION/$TARBALL" 226.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 226.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 226.25 226.26 -BUILD_DEPENDS="perl" 226.27 +DEPENDS_std="perl" 226.28 +BUILD_DEPENDS="$DEPENDS_std" 226.29 226.30 compile_rules() { 226.31 - perl Makefile.PL && 226.32 - make && 226.33 - make DESTDIR=$install install && 226.34 - 226.35 - chmod -R u+w $install 226.36 + cook_perl 226.37 } 226.38 - 226.39 -genpkg_rules() { 226.40 - copy @std 226.41 - DEPENDS="perl" 226.42 -}
227.1 --- a/perl-test2-plugin-nowarnings/receipt Thu Dec 06 20:27:31 2018 +0200 227.2 +++ b/perl-test2-plugin-nowarnings/receipt Tue Dec 11 23:38:35 2018 +0200 227.3 @@ -1,28 +1,23 @@ 227.4 -# SliTaz package receipt. 227.5 +# SliTaz package receipt v2. 227.6 227.7 +ORIGIN="Test2-Plugin-NoWarnings" 227.8 PACKAGE="perl-test2-plugin-nowarnings" 227.9 VERSION="0.06" 227.10 +AUTHOR="DROLSKY" 227.11 CATEGORY="perl" 227.12 SHORT_DESC="Test2::Plugin::NoWarnings - Fail if tests warn" 227.13 MAINTAINER="al.bobylev@gmail.com" 227.14 LICENSE="GPL" 227.15 -WEB_SITE="https://metacpan.org/release/Test2-Plugin-NoWarnings" 227.16 -REPOLOGY="perl:test2-plugin-nowarnings" 227.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 227.18 +HOST_ARCH="any" 227.19 +REPOLOGY="${PACKAGE/-/:}" 227.20 227.21 -TARBALL="Test2-Plugin-NoWarnings-$VERSION.tar.gz" 227.22 -WGET_URL="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/$TARBALL" 227.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 227.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 227.25 227.26 -BUILD_DEPENDS="perl-ipc-run3 perl-test2-suite" 227.27 +DEPENDS_std="perl" 227.28 +BUILD_DEPENDS="$DEPENDS_std perl-ipc-run3 perl-test2-suite" 227.29 227.30 compile_rules() { 227.31 - perl Makefile.PL && 227.32 - make && 227.33 - make DESTDIR=$install install && 227.34 - 227.35 - chmod -R u+w $install 227.36 + cook_perl 227.37 } 227.38 - 227.39 -genpkg_rules() { 227.40 - copy @std 227.41 - DEPENDS="perl" 227.42 -}
228.1 --- a/perl-test2-suite/receipt Thu Dec 06 20:27:31 2018 +0200 228.2 +++ b/perl-test2-suite/receipt Tue Dec 11 23:38:35 2018 +0200 228.3 @@ -1,29 +1,24 @@ 228.4 # SliTaz package receipt v2. 228.5 228.6 +ORIGIN="Test2-Suite" 228.7 PACKAGE="perl-test2-suite" 228.8 -VERSION="0.000115" 228.9 +VERSION="0.000117" 228.10 +AUTHOR="EXODIST" 228.11 CATEGORY="perl" 228.12 SHORT_DESC="Distribution with a rich set of tools built upon the Test2 \ 228.13 framework" 228.14 MAINTAINER="al.bobylev@gmail.com" 228.15 LICENSE="GPL" 228.16 -WEB_SITE="https://metacpan.org/release/Test2-Suite" 228.17 -REPOLOGY="perl:test2-suite" 228.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 228.19 +HOST_ARCH="any" 228.20 +REPOLOGY="${PACKAGE/-/:}" 228.21 228.22 -TARBALL="Test2-Suite-$VERSION.tar.gz" 228.23 -WGET_URL="https://cpan.metacpan.org/authors/id/E/EX/EXODIST/$TARBALL" 228.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 228.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 228.26 228.27 -BUILD_DEPENDS="perl-importer perl-sub-info perl-term-table perl-test-simple" 228.28 +DEPENDS_std="perl-importer perl-sub-info perl-term-table perl-test-simple" 228.29 +BUILD_DEPENDS="$DEPENDS_std" 228.30 228.31 compile_rules() { 228.32 - perl Makefile.PL && 228.33 - make && 228.34 - make DESTDIR=$install install && 228.35 - 228.36 - chmod -R u+w $install 228.37 + cook_perl 228.38 } 228.39 - 228.40 -genpkg_rules() { 228.41 - copy @std 228.42 - DEPENDS="perl-importer perl-sub-info perl-term-table perl-test-simple" 228.43 -}
229.1 --- a/perl-text-aspell/receipt Thu Dec 06 20:27:31 2018 +0200 229.2 +++ b/perl-text-aspell/receipt Tue Dec 11 23:38:35 2018 +0200 229.3 @@ -1,28 +1,22 @@ 229.4 -# SliTaz package receipt. 229.5 +# SliTaz package receipt v2. 229.6 229.7 +ORIGIN="Text-Aspell" 229.8 PACKAGE="perl-text-aspell" 229.9 VERSION="0.09" 229.10 +AUTHOR="HANK" 229.11 CATEGORY="perl" 229.12 SHORT_DESC="Text::Aspell - Perl interface to the GNU Aspell library" 229.13 MAINTAINER="pascal.bellard@slitaz.org" 229.14 LICENSE="GPL" 229.15 -WEB_SITE="https://metacpan.org/release/Text-Aspell" 229.16 -REPOLOGY="perl:text-aspell" 229.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 229.18 +REPOLOGY="${PACKAGE/-/:}" 229.19 229.20 -TARBALL="Text-Aspell-$VERSION.tar.gz" 229.21 -WGET_URL="https://cpan.metacpan.org/authors/id/H/HA/HANK/$TARBALL" 229.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 229.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 229.24 229.25 -BUILD_DEPENDS="perl-dev aspell aspell-dev" 229.26 +DEPENDS_std="perl aspell" 229.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev aspell-dev" 229.28 229.29 compile_rules() { 229.30 - perl Makefile.PL && 229.31 - make && 229.32 - make DESTDIR=$install install && 229.33 - 229.34 - chmod -R u+w $install 229.35 + cook_perl 229.36 } 229.37 - 229.38 -genpkg_rules() { 229.39 - copy @std 229.40 - DEPENDS="perl aspell gcc-lib-base" 229.41 -}
230.1 --- a/perl-text-csv/receipt Thu Dec 06 20:27:31 2018 +0200 230.2 +++ b/perl-text-csv/receipt Tue Dec 11 23:38:35 2018 +0200 230.3 @@ -1,30 +1,26 @@ 230.4 # SliTaz package receipt v2. 230.5 230.6 +ORIGIN="Text-CSV" 230.7 PACKAGE="perl-text-csv" 230.8 VERSION="1.97" 230.9 +AUTHOR="ISHIGAKI" 230.10 CATEGORY="perl" 230.11 SHORT_DESC="Text::CSV - comma-separated values manipulator (using XS or \ 230.12 PurePerl)" 230.13 MAINTAINER="devel@slitaz.org" 230.14 LICENSE="GPL" 230.15 -WEB_SITE="https://metacpan.org/release/Text-CSV" 230.16 -REPOLOGY="perl:text-csv" 230.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 230.18 +HOST_ARCH="any" 230.19 +REPOLOGY="${PACKAGE/-/:}" 230.20 230.21 -TARBALL="Text-CSV-$VERSION.tar.gz" 230.22 -WGET_URL="https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/$TARBALL" 230.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 230.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 230.25 230.26 -BUILD_DEPENDS="perl" 230.27 +DEPENDS_std="perl" 230.28 +BUILD_DEPENDS="$DEPENDS_std" 230.29 + 230.30 +SUGGESTED_std="perl-text-csv_xs" 230.31 230.32 compile_rules() { 230.33 - perl Makefile.PL && 230.34 - make && 230.35 - make DESTDIR=$install install && 230.36 - 230.37 - chmod -R u+w $install 230.38 + cook_perl 230.39 } 230.40 - 230.41 -genpkg_rules() { 230.42 - copy @std 230.43 - DEPENDS="perl" 230.44 - SUGGESTED="perl-text-csv_xs" 230.45 -}
231.1 --- a/perl-text-glob/receipt Thu Dec 06 20:27:31 2018 +0200 231.2 +++ b/perl-text-glob/receipt Tue Dec 11 23:38:35 2018 +0200 231.3 @@ -1,28 +1,23 @@ 231.4 -# SliTaz package receipt. 231.5 +# SliTaz package receipt v2. 231.6 231.7 +ORIGIN="Text-Glob" 231.8 PACKAGE="perl-text-glob" 231.9 VERSION="0.11" 231.10 +AUTHOR="RCLAMP" 231.11 CATEGORY="perl" 231.12 SHORT_DESC="Text::Glob - match globbing patterns against text" 231.13 MAINTAINER="devel@slitaz.org" 231.14 LICENSE="GPL" 231.15 -WEB_SITE="https://metacpan.org/release/Text-Glob" 231.16 -REPOLOGY="perl:text-glob" 231.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 231.18 +HOST_ARCH="any" 231.19 +REPOLOGY="${PACKAGE/-/:}" 231.20 231.21 -TARBALL="Text-Glob-$VERSION.tar.gz" 231.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RC/RCLAMP/$TARBALL" 231.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 231.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 231.25 231.26 -DEPENDS="perl" 231.27 -BUILD_DEPENDS="perl" 231.28 +DEPENDS_std="perl" 231.29 +BUILD_DEPENDS="$DEPENDS_std" 231.30 231.31 compile_rules() { 231.32 - perl Makefile.PL && 231.33 - make && 231.34 - make DESTDIR=$install install && 231.35 - 231.36 - chmod -R u+w $install 231.37 + cook_perl 231.38 } 231.39 - 231.40 -genpkg_rules() { 231.41 - copy @std 231.42 -}
232.1 --- a/perl-text-iconv/receipt Thu Dec 06 20:27:31 2018 +0200 232.2 +++ b/perl-text-iconv/receipt Tue Dec 11 23:38:35 2018 +0200 232.3 @@ -1,28 +1,22 @@ 232.4 # SliTaz package receipt v2. 232.5 232.6 +ORIGIN="Text-Iconv" 232.7 PACKAGE="perl-text-iconv" 232.8 VERSION="1.7" 232.9 +AUTHOR="MPIOTR" 232.10 CATEGORY="perl" 232.11 SHORT_DESC="Text::Iconv - Perl interface to iconv() codeset conversion function" 232.12 MAINTAINER="pascal.bellard@slitaz.org" 232.13 LICENSE="GPL" 232.14 -WEB_SITE="https://metacpan.org/release/Text-Iconv" 232.15 -REPOLOGY="perl:text-iconv" 232.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 232.17 +REPOLOGY="${PACKAGE/-/:}" 232.18 232.19 -TARBALL="Text-Iconv-$VERSION.tar.gz" 232.20 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MP/MPIOTR/$TARBALL" 232.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 232.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 232.23 232.24 -BUILD_DEPENDS="perl-dev" 232.25 +DEPENDS_std="perl" 232.26 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 232.27 232.28 compile_rules() { 232.29 - perl Makefile.PL && 232.30 - make && 232.31 - make DESTDIR=$install install && 232.32 - 232.33 - chmod -R u+w $install 232.34 + cook_perl 232.35 } 232.36 - 232.37 -genpkg_rules() { 232.38 - copy @std 232.39 - DEPENDS="perl" 232.40 -}
233.1 --- a/perl-text-patch/receipt Thu Dec 06 20:27:31 2018 +0200 233.2 +++ b/perl-text-patch/receipt Tue Dec 11 23:38:35 2018 +0200 233.3 @@ -1,29 +1,23 @@ 233.4 # SliTaz package receipt v2. 233.5 233.6 +ORIGIN="Text-Patch" 233.7 PACKAGE="perl-text-patch" 233.8 VERSION="1.8" 233.9 +AUTHOR="CADE" 233.10 CATEGORY="perl" 233.11 SHORT_DESC="Text::Patch - Patches text with given patch" 233.12 MAINTAINER="al.bobylev@gmail.com" 233.13 LICENSE="GPL" 233.14 -WEB_SITE="https://metacpan.org/release/Text-Patch" 233.15 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 233.16 HOST_ARCH="any" 233.17 -REPOLOGY="perl:text-patch" 233.18 +REPOLOGY="${PACKAGE/-/:}" 233.19 233.20 -TARBALL="Text-Patch-$VERSION.tar.gz" 233.21 -WGET_URL="https://cpan.metacpan.org/authors/id/C/CA/CADE/$TARBALL" 233.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 233.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 233.24 233.25 -BUILD_DEPENDS="perl" 233.26 +DEPENDS_std="perl" 233.27 +BUILD_DEPENDS="$DEPENDS_std" 233.28 233.29 compile_rules() { 233.30 - perl Makefile.PL && 233.31 - make && 233.32 - make DESTDIR=$install install && 233.33 - 233.34 - chmod -R u+w $install 233.35 + cook_perl 233.36 } 233.37 - 233.38 -genpkg_rules() { 233.39 - copy @std 233.40 - DEPENDS="perl" 233.41 -}
234.1 --- a/perl-text-soundex/receipt Thu Dec 06 20:27:31 2018 +0200 234.2 +++ b/perl-text-soundex/receipt Tue Dec 11 23:38:35 2018 +0200 234.3 @@ -1,28 +1,22 @@ 234.4 -# SliTaz package receipt. 234.5 +# SliTaz package receipt v2. 234.6 234.7 +ORIGIN="Text-Soundex" 234.8 PACKAGE="perl-text-soundex" 234.9 VERSION="3.05" 234.10 +AUTHOR="RJBS" 234.11 CATEGORY="perl" 234.12 SHORT_DESC="Text::Soundex - Implementation of the soundex algorithm" 234.13 MAINTAINER="al.bobylev@gmail.com" 234.14 LICENSE="GPL" 234.15 -WEB_SITE="https://metacpan.org/release/Text-Soundex" 234.16 -REPOLOGY="perl:text-soundex" 234.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 234.18 +REPOLOGY="${PACKAGE/-/:}" 234.19 234.20 -TARBALL="Text-Soundex-$VERSION.tar.gz" 234.21 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RJ/RJBS/$TARBALL" 234.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 234.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 234.24 234.25 -BUILD_DEPENDS="perl-dev" 234.26 +DEPENDS_std="perl" 234.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 234.28 234.29 compile_rules() { 234.30 - perl Makefile.PL && 234.31 - make && 234.32 - make DESTDIR=$install install && 234.33 - 234.34 - chmod -R u+w $install 234.35 + cook_perl 234.36 } 234.37 - 234.38 -genpkg_rules() { 234.39 - copy @std 234.40 - DEPENDS="perl" 234.41 -}
235.1 --- a/perl-text-template/receipt Thu Dec 06 20:27:31 2018 +0200 235.2 +++ b/perl-text-template/receipt Tue Dec 11 23:38:35 2018 +0200 235.3 @@ -1,28 +1,23 @@ 235.4 -# SliTaz package receipt. 235.5 +# SliTaz package receipt v2. 235.6 235.7 +ORIGIN="Text-Template" 235.8 PACKAGE="perl-text-template" 235.9 VERSION="1.53" 235.10 +AUTHOR="MSCHOUT" 235.11 CATEGORY="perl" 235.12 SHORT_DESC="Text::Template - Expand template text with embedded Perl" 235.13 MAINTAINER="pascal.bellard@slitaz.org" 235.14 LICENSE="GPL2" 235.15 -WEB_SITE="https://metacpan.org/release/Text-Template" 235.16 -REPOLOGY="perl:text-template" 235.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 235.18 +HOST_ARCH="any" 235.19 +REPOLOGY="${PACKAGE/-/:}" 235.20 235.21 -TARBALL="Text-Template-$VERSION.tar.gz" 235.22 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT/$TARBALL" 235.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 235.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 235.25 235.26 -BUILD_DEPENDS="perl" 235.27 +DEPENDS_std="perl" 235.28 +BUILD_DEPENDS="$DEPENDS_std" 235.29 235.30 compile_rules() { 235.31 - perl Makefile.PL && 235.32 - make && 235.33 - make DESTDIR=$install install && 235.34 - 235.35 - chmod -R u+w $install 235.36 + cook_perl 235.37 } 235.38 - 235.39 -genpkg_rules() { 235.40 - copy @std 235.41 - DEPENDS="perl" 235.42 -}
236.1 --- a/perl-timedate/receipt Thu Dec 06 20:27:31 2018 +0200 236.2 +++ b/perl-timedate/receipt Tue Dec 11 23:38:35 2018 +0200 236.3 @@ -1,28 +1,23 @@ 236.4 # SliTaz package receipt v2. 236.5 236.6 +ORIGIN="TimeDate" 236.7 PACKAGE="perl-timedate" 236.8 VERSION="2.30" 236.9 +AUTHOR="GBARR" 236.10 CATEGORY="perl" 236.11 SHORT_DESC="Date formating subroutines" 236.12 MAINTAINER="al.bobylev@gmail.com" 236.13 LICENSE="GPL" 236.14 -WEB_SITE="https://metacpan.org/release/TimeDate" 236.15 -REPOLOGY="perl:timedate" 236.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 236.17 +HOST_ARCH="any" 236.18 +REPOLOGY="${PACKAGE/-/:}" 236.19 236.20 -TARBALL="TimeDate-$VERSION.tar.gz" 236.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GB/GBARR/$TARBALL" 236.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 236.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 236.24 236.25 -BUILD_DEPENDS="perl" 236.26 +DEPENDS_std="perl" 236.27 +BUILD_DEPENDS="$DEPENDS_std" 236.28 236.29 compile_rules() { 236.30 - perl Makefile.PL && 236.31 - make && 236.32 - make DESTDIR=$install install && 236.33 - 236.34 - chmod -R u+w $install 236.35 + cook_perl 236.36 } 236.37 - 236.38 -genpkg_rules() { 236.39 - copy @std 236.40 - DEPENDS="perl" 236.41 -}
237.1 --- a/perl-tk/receipt Thu Dec 06 20:27:31 2018 +0200 237.2 +++ b/perl-tk/receipt Tue Dec 11 23:38:35 2018 +0200 237.3 @@ -1,19 +1,24 @@ 237.4 # SliTaz package receipt v2. 237.5 237.6 +ORIGIN="Tk" 237.7 PACKAGE="perl-tk" 237.8 VERSION="804.034" 237.9 +AUTHOR="SREZIC" 237.10 CATEGORY="perl" 237.11 SHORT_DESC="Tk - a graphical user interface toolkit for Perl" 237.12 MAINTAINER="devel@slitaz.org" 237.13 LICENSE="GPL" 237.14 -WEB_SITE="https://metacpan.org/release/Tk" 237.15 -REPOLOGY="perl:tk" 237.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 237.17 +REPOLOGY="${PACKAGE/-/:}" 237.18 237.19 -TARBALL="Tk-$VERSION.tar.gz" 237.20 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SR/SREZIC/$TARBALL" 237.21 +TARBALL="$ORIGIN-$VERSION.tar.gz" 237.22 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 237.23 237.24 -BUILD_DEPENDS="perl-dev xorg-libX11-dev freetype-dev xorg-libXft-dev \ 237.25 -fontconfig-dev libpng16-dev zlib-dev libjpeg-turbo-dev tk-dev" 237.26 +DEPENDS_std="perl fontconfig libjpeg-turbo libpng16 xorg-libX11 \ 237.27 +xorg-libXft zlib tk" 237.28 +BUILD_DEPENDS="$DEPENDS_std perl-dev xorg-libX11-dev freetype-dev \ 237.29 +xorg-libXft-dev fontconfig-dev libpng16-dev zlib-dev libjpeg-turbo-dev tk-dev" 237.30 + 237.31 SPLIT="$PACKAGE-dev" 237.32 237.33 compile_rules() { 237.34 @@ -21,21 +26,5 @@ 237.35 sed -i 's/XKeycodeToKeysym\(.*\)unsigned int/XKeycodeToKeysym\1KeyCode/' \ 237.36 pTk/Xlib.h 237.37 237.38 - perl Makefile.PL && 237.39 - make DESTDIR=$install install && 237.40 - 237.41 - chmod -R u+w $install 237.42 + cook_perl 237.43 } 237.44 - 237.45 -genpkg_rules() { 237.46 - case $PACKAGE in 237.47 - perl-tk) 237.48 - copy @std 237.49 - DEPENDS="perl fontconfig libjpeg-turbo libpng16 xorg-libX11 \ 237.50 - xorg-libXft zlib tk" 237.51 - ;; 237.52 - *-dev) 237.53 - copy @dev 237.54 - ;; 237.55 - esac 237.56 -}
238.1 --- a/perl-try-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 238.2 +++ b/perl-try-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 238.3 @@ -1,28 +1,23 @@ 238.4 # SliTaz package receipt v2. 238.5 238.6 +ORIGIN="Try-Tiny" 238.7 PACKAGE="perl-try-tiny" 238.8 VERSION="0.30" 238.9 +AUTHOR="ETHER" 238.10 CATEGORY="perl" 238.11 SHORT_DESC='Try::Tiny - Minimal try/catch with proper preservation of \$@' 238.12 MAINTAINER="devel@slitaz.org" 238.13 LICENSE="GPL" 238.14 -WEB_SITE="https://metacpan.org/release/Try-Tiny" 238.15 -REPOLOGY="perl:try-tiny" 238.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 238.17 +HOST_ARCH="any" 238.18 +REPOLOGY="${PACKAGE/-/:}" 238.19 238.20 -TARBALL="Try-Tiny-$VERSION.tar.gz" 238.21 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 238.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 238.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 238.24 238.25 -BUILD_DEPENDS="perl" 238.26 +DEPENDS_std="perl" 238.27 +BUILD_DEPENDS="$DEPENDS_std" 238.28 238.29 compile_rules() { 238.30 - perl Makefile.PL && 238.31 - make && 238.32 - make DESTDIR=$install install && 238.33 - 238.34 - chmod -R u+w $install 238.35 + cook_perl 238.36 } 238.37 - 238.38 -genpkg_rules() { 238.39 - copy @std 238.40 - DEPENDS="perl" 238.41 -}
239.1 --- a/perl-unicode-map/receipt Thu Dec 06 20:27:31 2018 +0200 239.2 +++ b/perl-unicode-map/receipt Tue Dec 11 23:38:35 2018 +0200 239.3 @@ -1,28 +1,22 @@ 239.4 -# SliTaz package receipt. 239.5 +# SliTaz package receipt v2. 239.6 239.7 +ORIGIN="Unicode-Map" 239.8 PACKAGE="perl-unicode-map" 239.9 VERSION="0.112" 239.10 +AUTHOR="MSCHWARTZ" 239.11 CATEGORY="perl" 239.12 SHORT_DESC="Unicode::Map - An utility to map texts from and to unicode" 239.13 MAINTAINER="pascal.bellard@slitaz.org" 239.14 LICENSE="GPL" 239.15 -WEB_SITE="https://metacpan.org/release/Unicode-Map" 239.16 -REPOLOGY="perl:unicode-map" 239.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 239.18 +REPOLOGY="${PACKAGE/-/:}" 239.19 239.20 -TARBALL="Unicode-Map-$VERSION.tar.gz" 239.21 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MS/MSCHWARTZ/$TARBALL" 239.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 239.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 239.24 239.25 -BUILD_DEPENDS="perl-dev" 239.26 +DEPENDS_std="perl" 239.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 239.28 239.29 compile_rules() { 239.30 - perl Makefile.PL && 239.31 - make && 239.32 - make DESTDIR=$install install && 239.33 - 239.34 - chmod -R u+w $install 239.35 + cook_perl 239.36 } 239.37 - 239.38 -genpkg_rules() { 239.39 - copy @std 239.40 - DEPENDS="perl" 239.41 -}
240.1 --- a/perl-unicode-map8/receipt Thu Dec 06 20:27:31 2018 +0200 240.2 +++ b/perl-unicode-map8/receipt Tue Dec 11 23:38:35 2018 +0200 240.3 @@ -1,28 +1,22 @@ 240.4 -# SliTaz package receipt. 240.5 +# SliTaz package receipt v2. 240.6 240.7 +ORIGIN="Unicode-Map8" 240.8 PACKAGE="perl-unicode-map8" 240.9 VERSION="0.13" 240.10 +AUTHOR="GAAS" 240.11 CATEGORY="perl" 240.12 SHORT_DESC="Unicode::Map8 - Mapping table between 8-bit chars and Unicode" 240.13 MAINTAINER="pascal.bellard@slitaz.org" 240.14 LICENSE="GPL" 240.15 -WEB_SITE="https://metacpan.org/release/Unicode-Map8" 240.16 -REPOLOGY="perl:unicode-map8" 240.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 240.18 +REPOLOGY="${PACKAGE/-/:}" 240.19 240.20 -TARBALL="Unicode-Map8-$VERSION.tar.gz" 240.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 240.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 240.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 240.24 240.25 -BUILD_DEPENDS="perl-unicode-string perl-dev" 240.26 +DEPENDS_std="perl-unicode-string" 240.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 240.28 240.29 compile_rules() { 240.30 - perl Makefile.PL && 240.31 - make && 240.32 - make DESTDIR=$install install && 240.33 - 240.34 - chmod -R u+w $install 240.35 + cook_perl 240.36 } 240.37 - 240.38 -genpkg_rules() { 240.39 - copy @std 240.40 - DEPENDS="perl-unicode-string" 240.41 -}
241.1 --- a/perl-unicode-maputf8/receipt Thu Dec 06 20:27:31 2018 +0200 241.2 +++ b/perl-unicode-maputf8/receipt Tue Dec 11 23:38:35 2018 +0200 241.3 @@ -1,29 +1,24 @@ 241.4 -# SliTaz package receipt. 241.5 +# SliTaz package receipt v2. 241.6 241.7 +ORIGIN="Unicode-MapUTF8" 241.8 PACKAGE="perl-unicode-maputf8" 241.9 VERSION="1.11" 241.10 +AUTHOR="SNOWHARE" 241.11 CATEGORY="perl" 241.12 SHORT_DESC="Unicode::MapUTF8 - Conversions to and from arbitrary character \ 241.13 sets and UTF8" 241.14 MAINTAINER="pascal.bellard@slitaz.org" 241.15 LICENSE="GPL" 241.16 -WEB_SITE="https://metacpan.org/release/Unicode-MapUTF8" 241.17 -REPOLOGY="perl:unicode-maputf8" 241.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 241.19 +HOST_ARCH="any" 241.20 +REPOLOGY="${PACKAGE/-/:}" 241.21 241.22 -TARBALL="Unicode-MapUTF8-$VERSION.tar.gz" 241.23 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SN/SNOWHARE/$TARBALL" 241.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 241.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 241.26 241.27 -BUILD_DEPENDS="perl-jcode perl-unicode-map perl-unicode-map8 perl-unicode-string" 241.28 +DEPENDS_std="perl-jcode perl-unicode-map perl-unicode-map8 perl-unicode-string" 241.29 +BUILD_DEPENDS="$DEPENDS_std" 241.30 241.31 compile_rules() { 241.32 - perl Makefile.PL && 241.33 - make && 241.34 - make DESTDIR=$install install && 241.35 - 241.36 - chmod -R u+w $install 241.37 + cook_perl 241.38 } 241.39 - 241.40 -genpkg_rules() { 241.41 - copy @std 241.42 - DEPENDS="perl-jcode perl-unicode-map perl-unicode-map8 perl-unicode-string" 241.43 -}
242.1 --- a/perl-unicode-string/receipt Thu Dec 06 20:27:31 2018 +0200 242.2 +++ b/perl-unicode-string/receipt Tue Dec 11 23:38:35 2018 +0200 242.3 @@ -1,28 +1,22 @@ 242.4 -# SliTaz package receipt. 242.5 +# SliTaz package receipt v2. 242.6 242.7 +ORIGIN="Unicode-String" 242.8 PACKAGE="perl-unicode-string" 242.9 VERSION="2.10" 242.10 +AUTHOR="GAAS" 242.11 CATEGORY="perl" 242.12 SHORT_DESC="Unicode::String - String of Unicode characters (UTF-16BE)" 242.13 MAINTAINER="pascal.bellard@slitaz.org" 242.14 LICENSE="GPL" 242.15 -WEB_SITE="https://metacpan.org/release/Unicode-String" 242.16 -REPOLOGY="perl:unicode-string" 242.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 242.18 +REPOLOGY="${PACKAGE/-/:}" 242.19 242.20 -TARBALL="Unicode-String-$VERSION.tar.gz" 242.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/GAAS/$TARBALL" 242.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 242.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$AUTHOR/$TARBALL" # !!! 242.24 242.25 -BUILD_DEPENDS="perl-dev" 242.26 +DEPENDS_std="perl" 242.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 242.28 242.29 compile_rules() { 242.30 - perl Makefile.PL && 242.31 - make && 242.32 - make DESTDIR=$install install && 242.33 - 242.34 - chmod -R u+w $install 242.35 + cook_perl 242.36 } 242.37 - 242.38 -genpkg_rules() { 242.39 - copy @std 242.40 - DEPENDS="perl" 242.41 -}
243.1 --- a/perl-unix-mknod/receipt Thu Dec 06 20:27:31 2018 +0200 243.2 +++ b/perl-unix-mknod/receipt Tue Dec 11 23:38:35 2018 +0200 243.3 @@ -1,28 +1,22 @@ 243.4 -# SliTaz package receipt. 243.5 +# SliTaz package receipt v2. 243.6 243.7 +ORIGIN="Unix-Mknod" 243.8 PACKAGE="perl-unix-mknod" 243.9 VERSION="0.04" 243.10 +AUTHOR="PIRZYK" 243.11 CATEGORY="perl" 243.12 SHORT_DESC="Unix::Mknod - Perl extension for mknod, major, minor, and makedev" 243.13 MAINTAINER="pascal.bellard@slitaz.org" 243.14 LICENSE="GPL" 243.15 -WEB_SITE="https://metacpan.org/release/Unix-Mknod" 243.16 -REPOLOGY="perl:unix-mknod" 243.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 243.18 +REPOLOGY="${PACKAGE/-/:}" 243.19 243.20 -TARBALL="Unix-Mknod-$VERSION.tar.gz" 243.21 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PI/PIRZYK/$TARBALL" 243.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 243.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 243.24 243.25 -BUILD_DEPENDS="perl-dev" 243.26 +DEPENDS_std="perl" 243.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 243.28 243.29 compile_rules() { 243.30 - perl Makefile.PL && 243.31 - make && 243.32 - make DESTDIR=$install install && 243.33 - 243.34 - chmod -R u+w $install 243.35 + cook_perl 243.36 } 243.37 - 243.38 -genpkg_rules() { 243.39 - copy @std 243.40 - DEPENDS="perl" 243.41 -}
244.1 --- a/perl-uri/receipt Thu Dec 06 20:27:31 2018 +0200 244.2 +++ b/perl-uri/receipt Tue Dec 11 23:38:35 2018 +0200 244.3 @@ -1,28 +1,23 @@ 244.4 # SliTaz package receipt v2. 244.5 244.6 +ORIGIN="URI" 244.7 PACKAGE="perl-uri" 244.8 VERSION="1.74" 244.9 +AUTHOR="ETHER" 244.10 CATEGORY="perl" 244.11 SHORT_DESC="URI - Uniform Resource Identifiers (absolute and relative)" 244.12 MAINTAINER="devel@slitaz.org" 244.13 LICENSE="GPL" 244.14 -WEB_SITE="https://metacpan.org/release/URI" 244.15 -REPOLOGY="perl:uri" 244.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 244.17 +HOST_ARCH="any" 244.18 +REPOLOGY="${PACKAGE/-/:}" 244.19 244.20 -TARBALL="URI-$VERSION.tar.gz" 244.21 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 244.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 244.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 244.24 244.25 -BUILD_DEPENDS="perl" 244.26 +DEPENDS_std="perl perl-test-needs" 244.27 +BUILD_DEPENDS="$DEPENDS_std" 244.28 244.29 compile_rules() { 244.30 - perl Makefile.PL && 244.31 - make && 244.32 - make DESTDIR=$install install && 244.33 - 244.34 - chmod -R u+w $install 244.35 + cook_perl 244.36 } 244.37 - 244.38 -genpkg_rules() { 244.39 - copy @std 244.40 - DEPENDS="perl" 244.41 -}
245.1 --- a/perl-variable-magic/receipt Thu Dec 06 20:27:31 2018 +0200 245.2 +++ b/perl-variable-magic/receipt Tue Dec 11 23:38:35 2018 +0200 245.3 @@ -1,29 +1,23 @@ 245.4 # SliTaz package receipt v2. 245.5 245.6 +ORIGIN="Variable-Magic" 245.7 PACKAGE="perl-variable-magic" 245.8 VERSION="0.62" 245.9 +AUTHOR="VPIT" 245.10 CATEGORY="perl" 245.11 SHORT_DESC="Variable::Magic - Associate user-defined magic to variables from \ 245.12 Perl" 245.13 MAINTAINER="al.bobylev@gmail.com" 245.14 LICENSE="GPL" 245.15 -WEB_SITE="https://metacpan.org/release/Variable-Magic" 245.16 -REPOLOGY="perl:variable-magic" 245.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 245.18 +REPOLOGY="${PACKAGE/-/:}" 245.19 245.20 -TARBALL="Variable-Magic-$VERSION.tar.gz" 245.21 -WGET_URL="https://cpan.metacpan.org/authors/id/V/VP/VPIT/$TARBALL" 245.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 245.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 245.24 245.25 -BUILD_DEPENDS="perl-dev" 245.26 +DEPENDS_std="perl" 245.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 245.28 245.29 compile_rules() { 245.30 - perl Makefile.PL && 245.31 - make && 245.32 - make DESTDIR=$install install && 245.33 - 245.34 - chmod -R u+w $install 245.35 + cook_perl 245.36 } 245.37 - 245.38 -genpkg_rules() { 245.39 - copy @std 245.40 - DEPENDS="perl" 245.41 -}
246.1 --- a/perl-version/receipt Thu Dec 06 20:27:31 2018 +0200 246.2 +++ b/perl-version/receipt Tue Dec 11 23:38:35 2018 +0200 246.3 @@ -1,28 +1,22 @@ 246.4 -# SliTaz package receipt. 246.5 +# SliTaz package receipt v2. 246.6 246.7 +ORIGIN="version" 246.8 PACKAGE="perl-version" 246.9 VERSION="0.9924" 246.10 +AUTHOR="JPEACOCK" 246.11 CATEGORY="perl" 246.12 SHORT_DESC="version - Perl extension for Version Objects" 246.13 MAINTAINER="al.bobylev@gmail.com" 246.14 LICENSE="GPL" 246.15 -WEB_SITE="https://metacpan.org/release/version" 246.16 -REPOLOGY="perl:version" 246.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 246.18 +REPOLOGY="${PACKAGE/-/:}" 246.19 246.20 -TARBALL="version-$VERSION.tar.gz" 246.21 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JP/JPEACOCK/$TARBALL" 246.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 246.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 246.24 246.25 -BUILD_DEPENDS="perl-dev" 246.26 +DEPENDS_std="perl" 246.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 246.28 246.29 compile_rules() { 246.30 - perl Makefile.PL && 246.31 - make && 246.32 - make DESTDIR=$install install && 246.33 - 246.34 - chmod -R u+w $install 246.35 + cook_perl 246.36 } 246.37 - 246.38 -genpkg_rules() { 246.39 - copy @std 246.40 - DEPENDS="perl" 246.41 -}
247.1 --- a/perl-www-robotrules/receipt Thu Dec 06 20:27:31 2018 +0200 247.2 +++ b/perl-www-robotrules/receipt Tue Dec 11 23:38:35 2018 +0200 247.3 @@ -1,28 +1,23 @@ 247.4 # SliTaz package receipt v2. 247.5 247.6 +ORIGIN="WWW-RobotRules" 247.7 PACKAGE="perl-www-robotrules" 247.8 VERSION="6.02" 247.9 +AUTHOR="GAAS" 247.10 CATEGORY="perl" 247.11 SHORT_DESC="WWW::RobotRules - database of robots.txt-derived permissions" 247.12 MAINTAINER="devel@slitaz.org" 247.13 LICENSE="GPL" 247.14 -WEB_SITE="https://metacpan.org/release/WWW-RobotRules" 247.15 -REPOLOGY="perl:www-robotrules" 247.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 247.17 +HOST_ARCH="any" 247.18 +REPOLOGY="${PACKAGE/-/:}" 247.19 247.20 -TARBALL="WWW-RobotRules-$VERSION.tar.gz" 247.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 247.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 247.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 247.24 247.25 -BUILD_DEPENDS="perl-uri" 247.26 +DEPENDS_std="perl-uri" 247.27 +BUILD_DEPENDS="$DEPENDS_std" 247.28 247.29 compile_rules() { 247.30 - perl Makefile.PL && 247.31 - make && 247.32 - make DESTDIR=$install install && 247.33 - 247.34 - chmod -R u+w $install 247.35 + cook_perl 247.36 } 247.37 - 247.38 -genpkg_rules() { 247.39 - copy @std 247.40 - DEPENDS="perl-uri" 247.41 -}
248.1 --- a/perl-xml-entities/receipt Thu Dec 06 20:27:31 2018 +0200 248.2 +++ b/perl-xml-entities/receipt Tue Dec 11 23:38:35 2018 +0200 248.3 @@ -1,28 +1,23 @@ 248.4 -# SliTaz package receipt. 248.5 +# SliTaz package receipt v2. 248.6 248.7 +ORIGIN="XML-Entities" 248.8 PACKAGE="perl-xml-entities" 248.9 VERSION="1.0002" 248.10 +AUTHOR="SIXTEASE" 248.11 CATEGORY="perl" 248.12 SHORT_DESC="XML::Entities - Decode strings with XML entities" 248.13 MAINTAINER="pascal.bellard@slitaz.org" 248.14 LICENSE="GPL" 248.15 -WEB_SITE="https://metacpan.org/release/XML-Entities" 248.16 -REPOLOGY="perl:xml-entities" 248.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 248.18 +HOST_ARCH="any" 248.19 +REPOLOGY="${PACKAGE/-/:}" 248.20 248.21 -TARBALL="XML-Entities-$VERSION.tar.gz" 248.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SI/SIXTEASE/$TARBALL" 248.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 248.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 248.25 248.26 -BUILD_DEPENDS="perl" 248.27 +DEPENDS_std="perl" 248.28 +BUILD_DEPENDS="$DEPENDS_std" 248.29 248.30 compile_rules() { 248.31 - perl Makefile.PL && 248.32 - make && 248.33 - make DESTDIR=$install install && 248.34 - 248.35 - chmod -R u+w $install 248.36 + cook_perl 248.37 } 248.38 - 248.39 -genpkg_rules() { 248.40 - copy @std 248.41 - DEPENDS="perl" 248.42 -}
249.1 --- a/perl-xml-filter-buffertext/receipt Thu Dec 06 20:27:31 2018 +0200 249.2 +++ b/perl-xml-filter-buffertext/receipt Tue Dec 11 23:38:35 2018 +0200 249.3 @@ -1,29 +1,24 @@ 249.4 # SliTaz package receipt v2. 249.5 249.6 +ORIGIN="XML-Filter-BufferText" 249.7 PACKAGE="perl-xml-filter-buffertext" 249.8 VERSION="1.01" 249.9 +AUTHOR="RBERJON" 249.10 CATEGORY="perl" 249.11 SHORT_DESC="XML::Filter::BufferText - Filter to put all characters() in one \ 249.12 event" 249.13 MAINTAINER="pascal.bellard@slitaz.org" 249.14 LICENSE="GPL" 249.15 -WEB_SITE="https://metacpan.org/release/XML-Filter-BufferText" 249.16 -REPOLOGY="perl:xml-filter-buffertext" 249.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 249.18 +HOST_ARCH="any" 249.19 +REPOLOGY="${PACKAGE/-/:}" 249.20 249.21 -TARBALL="XML-Filter-BufferText-$VERSION.tar.gz" 249.22 -WGET_URL="https://cpan.metacpan.org/authors/id/R/RB/RBERJON/$TARBALL" 249.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 249.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 249.25 249.26 -BUILD_DEPENDS="perl-xml-sax perl-xml-sax-base" 249.27 +DEPENDS_std="perl-xml-sax perl-xml-sax-base" 249.28 +BUILD_DEPENDS="$DEPENDS_std" 249.29 249.30 compile_rules() { 249.31 - perl Makefile.PL && 249.32 - make && 249.33 - make DESTDIR=$install install && 249.34 - 249.35 - chmod -R u+w $install 249.36 + cook_perl 249.37 } 249.38 - 249.39 -genpkg_rules() { 249.40 - copy @std 249.41 - DEPENDS="perl-xml-sax perl-xml-sax-base" 249.42 -}
250.1 --- a/perl-xml-namespacesupport/receipt Thu Dec 06 20:27:31 2018 +0200 250.2 +++ b/perl-xml-namespacesupport/receipt Tue Dec 11 23:38:35 2018 +0200 250.3 @@ -1,28 +1,23 @@ 250.4 # SliTaz package receipt v2. 250.5 250.6 +ORIGIN="XML-NamespaceSupport" 250.7 PACKAGE="perl-xml-namespacesupport" 250.8 VERSION="1.12" 250.9 +AUTHOR="PERIGRIN" 250.10 CATEGORY="perl" 250.11 SHORT_DESC="XML::NamespaceSupport - A simple generic namespace processor" 250.12 MAINTAINER="al.bobylev@gmail.com" 250.13 LICENSE="GPL" 250.14 -WEB_SITE="https://metacpan.org/release/XML-NamespaceSupport" 250.15 -REPOLOGY="perl:xml-namespacesupport" 250.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 250.17 +HOST_ARCH="any" 250.18 +REPOLOGY="${PACKAGE/-/:}" 250.19 250.20 -TARBALL="XML-NamespaceSupport-$VERSION.tar.gz" 250.21 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/$TARBALL" 250.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 250.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 250.24 250.25 -BUILD_DEPENDS="perl" 250.26 +DEPENDS_std="perl" 250.27 +BUILD_DEPENDS="$DEPENDS_std" 250.28 250.29 compile_rules() { 250.30 - perl Makefile.PL && 250.31 - make && 250.32 - make DESTDIR=$install install && 250.33 - 250.34 - chmod -R u+w $install 250.35 + cook_perl 250.36 } 250.37 - 250.38 -genpkg_rules() { 250.39 - copy @std 250.40 - DEPENDS="perl" 250.41 -}
251.1 --- a/perl-xml-parser/receipt Thu Dec 06 20:27:31 2018 +0200 251.2 +++ b/perl-xml-parser/receipt Tue Dec 11 23:38:35 2018 +0200 251.3 @@ -1,30 +1,25 @@ 251.4 # SliTaz package receipt v2. 251.5 251.6 +ORIGIN="XML-Parser" 251.7 PACKAGE="perl-xml-parser" 251.8 VERSION="2.44" 251.9 +AUTHOR="TODDR" 251.10 CATEGORY="perl" 251.11 SHORT_DESC="XML::Parser - A Perl module for parsing XML documents" 251.12 MAINTAINER="devel@slitaz.org" 251.13 LICENSE="GPL" 251.14 -WEB_SITE="https://metacpan.org/release/XML-Parser" 251.15 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 251.16 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/xml-parser.html" 251.17 -REPOLOGY="perl:xml-parser" 251.18 +REPOLOGY="${PACKAGE/-/:}" 251.19 251.20 -TARBALL="XML-Parser-$VERSION.tar.gz" 251.21 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TODDR/$TARBALL" 251.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 251.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 251.24 251.25 -BUILD_DEPENDS="perl-libwww-perl expat perl-dev expat-dev" 251.26 +DEPENDS_std="perl-libwww-perl expat" 251.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev expat-dev" 251.28 + 251.29 +TAGS="LFS" 251.30 251.31 compile_rules() { 251.32 - perl Makefile.PL && 251.33 - make && 251.34 - make DESTDIR=$install install && 251.35 - 251.36 - chmod -R u+w $install 251.37 + cook_perl 251.38 } 251.39 - 251.40 -genpkg_rules() { 251.41 - copy @std 251.42 - DEPENDS="perl-libwww-perl expat" 251.43 - TAGS="LFS" 251.44 -}
252.1 --- a/perl-xml-rss/receipt Thu Dec 06 20:27:31 2018 +0200 252.2 +++ b/perl-xml-rss/receipt Tue Dec 11 23:38:35 2018 +0200 252.3 @@ -1,30 +1,24 @@ 252.4 -# SliTaz package receipt. 252.5 +# SliTaz package receipt v2. 252.6 252.7 +ORIGIN="XML-RSS" 252.8 PACKAGE="perl-xml-rss" 252.9 VERSION="1.60" 252.10 +AUTHOR="SHLOMIF" 252.11 CATEGORY="perl" 252.12 SHORT_DESC="XML::RSS - creates and updates RSS files" 252.13 MAINTAINER="pascal.bellard@slitaz.org" 252.14 LICENSE="GPL" 252.15 -WEB_SITE="https://metacpan.org/release/XML-RSS" 252.16 -REPOLOGY="perl:xml-rss" 252.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 252.18 +HOST_ARCH="any" 252.19 +REPOLOGY="${PACKAGE/-/:}" 252.20 252.21 -TARBALL="XML-RSS-$VERSION.tar.gz" 252.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/$TARBALL" 252.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 252.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 252.25 252.26 -BUILD_DEPENDS="perl-datetime perl-datetime-format-mail \ 252.27 -perl-datetime-format-w3cdtf perl-html-parser perl-xml-parser perl-test-manifest" 252.28 +DEPENDS_std="perl-datetime perl-datetime-format-mail \ 252.29 +perl-datetime-format-w3cdtf perl-html-parser perl-xml-parser" 252.30 +BUILD_DEPENDS="$DEPENDS_std perl-test-manifest" 252.31 252.32 compile_rules() { 252.33 - perl Makefile.PL && 252.34 - make && 252.35 - make DESTDIR=$install install && 252.36 - 252.37 - chmod -R u+w $install 252.38 + cook_perl 252.39 } 252.40 - 252.41 -genpkg_rules() { 252.42 - copy @std 252.43 - DEPENDS="perl-datetime perl-datetime-format-mail \ 252.44 - perl-datetime-format-w3cdtf perl-html-parser perl-xml-parser" 252.45 -}
253.1 --- a/perl-xml-sax-base/receipt Thu Dec 06 20:27:31 2018 +0200 253.2 +++ b/perl-xml-sax-base/receipt Tue Dec 11 23:38:35 2018 +0200 253.3 @@ -1,28 +1,23 @@ 253.4 -# SliTaz package receipt. 253.5 +# SliTaz package receipt v2. 253.6 253.7 +ORIGIN="XML-SAX-Base" 253.8 PACKAGE="perl-xml-sax-base" 253.9 VERSION="1.09" 253.10 +AUTHOR="GRANTM" 253.11 CATEGORY="perl" 253.12 SHORT_DESC="XML::SAX::Base - Base class SAX Drivers and Filters" 253.13 MAINTAINER="al.bobylev@gmail.com" 253.14 LICENSE="GPL" 253.15 -WEB_SITE="https://metacpan.org/release/XML-SAX-Base" 253.16 -REPOLOGY="perl:xml-sax-base" 253.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 253.18 +HOST_ARCH="any" 253.19 +REPOLOGY="${PACKAGE/-/:}" 253.20 253.21 -TARBALL="XML-SAX-Base-$VERSION.tar.gz" 253.22 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GR/GRANTM/$TARBALL" 253.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 253.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 253.25 253.26 -BUILD_DEPENDS="perl" 253.27 +DEPENDS_std="perl" 253.28 +BUILD_DEPENDS="$DEPENDS_std" 253.29 253.30 compile_rules() { 253.31 - perl Makefile.PL && 253.32 - make && 253.33 - make DESTDIR=$install install && 253.34 - 253.35 - chmod -R u+w $install 253.36 + cook_perl 253.37 } 253.38 - 253.39 -genpkg_rules() { 253.40 - copy @std 253.41 - DEPENDS="perl" 253.42 -}
254.1 --- a/perl-xml-sax-expat/receipt Thu Dec 06 20:27:31 2018 +0200 254.2 +++ b/perl-xml-sax-expat/receipt Tue Dec 11 23:38:35 2018 +0200 254.3 @@ -1,30 +1,30 @@ 254.4 -# SliTaz package receipt. 254.5 +# SliTaz package receipt v2. 254.6 254.7 +ORIGIN="XML-SAX-Expat" 254.8 PACKAGE="perl-xml-sax-expat" 254.9 VERSION="0.51" 254.10 +AUTHOR="BJOERN" 254.11 CATEGORY="perl" 254.12 SHORT_DESC="XML::SAX::Expat - SAX2 Driver for Expat (XML::Parser)" 254.13 MAINTAINER="al.bobylev@gmail.com" 254.14 LICENSE="GPL" 254.15 -WEB_SITE="https://metacpan.org/release/XML-SAX-Expat" 254.16 -REPOLOGY="perl:xml-sax-expat" 254.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 254.18 +HOST_ARCH="any" 254.19 +REPOLOGY="${PACKAGE/-/:}" 254.20 254.21 -TARBALL="XML-SAX-Expat-$VERSION.tar.gz" 254.22 -WGET_URL="https://cpan.metacpan.org/authors/id/B/BJ/BJOERN/$TARBALL" 254.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 254.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 254.25 254.26 -BUILD_DEPENDS="perl-xml-namespacesupport perl-xml-parser perl-xml-sax \ 254.27 +DEPENDS_std="perl-xml-namespacesupport perl-xml-parser perl-xml-sax \ 254.28 perl-xml-sax-base" 254.29 +BUILD_DEPENDS="$DEPENDS_std" 254.30 254.31 compile_rules() { 254.32 - perl Makefile.PL && 254.33 - make -j1 install && 254.34 - make -j1 DESTDIR=$install install && 254.35 + # keep installing to / and then to $install 254.36 + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor && 254.37 + make -j1 && 254.38 + make -j1 PERL_MM_USE_DEFAULT=1 install && 254.39 + make -j1 PERL_MM_USE_DEFAULT=1 DESTDIR=$install install && 254.40 254.41 chmod -R u+w $install 254.42 } 254.43 - 254.44 -genpkg_rules() { 254.45 - copy @std 254.46 - DEPENDS="perl-xml-namespacesupport perl-xml-parser perl-xml-sax \ 254.47 - perl-xml-sax-base" 254.48 -}
255.1 --- a/perl-xml-sax-writer/receipt Thu Dec 06 20:27:31 2018 +0200 255.2 +++ b/perl-xml-sax-writer/receipt Tue Dec 11 23:38:35 2018 +0200 255.3 @@ -1,30 +1,24 @@ 255.4 -# SliTaz package receipt. 255.5 +# SliTaz package receipt v2. 255.6 255.7 +ORIGIN="XML-SAX-Writer" 255.8 PACKAGE="perl-xml-sax-writer" 255.9 VERSION="0.57" 255.10 +AUTHOR="PERIGRIN" 255.11 CATEGORY="perl" 255.12 SHORT_DESC="XML::SAX::Writer - SAX2 XML Writer" 255.13 MAINTAINER="pascal.bellard@slitaz.org" 255.14 LICENSE="GPL" 255.15 -WEB_SITE="https://metacpan.org/release/XML-SAX-Writer" 255.16 -REPOLOGY="perl:xml-sax-writer" 255.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 255.18 +HOST_ARCH="any" 255.19 +REPOLOGY="${PACKAGE/-/:}" 255.20 255.21 -TARBALL="XML-SAX-Writer-$VERSION.tar.gz" 255.22 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/$TARBALL" 255.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 255.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 255.25 255.26 -BUILD_DEPENDS="perl-xml-filter-buffertext perl-xml-namespacesupport \ 255.27 +DEPENDS_std="perl-xml-filter-buffertext perl-xml-namespacesupport \ 255.28 perl-xml-sax-base" 255.29 +BUILD_DEPENDS="$DEPENDS_std" 255.30 255.31 compile_rules() { 255.32 - perl Makefile.PL && 255.33 - make && 255.34 - make DESTDIR=$install install && 255.35 - 255.36 - chmod -R u+w $install 255.37 + cook_perl 255.38 } 255.39 - 255.40 -genpkg_rules() { 255.41 - copy @std 255.42 - DEPENDS="perl-xml-filter-buffertext perl-xml-namespacesupport \ 255.43 - perl-xml-sax-base" 255.44 -}
256.1 --- a/perl-xml-sax/receipt Thu Dec 06 20:27:31 2018 +0200 256.2 +++ b/perl-xml-sax/receipt Tue Dec 11 23:38:35 2018 +0200 256.3 @@ -1,18 +1,22 @@ 256.4 # SliTaz package receipt v2. 256.5 256.6 +ORIGIN="XML-SAX" 256.7 PACKAGE="perl-xml-sax" 256.8 VERSION="1.00" 256.9 +AUTHOR="GRANTM" 256.10 CATEGORY="perl" 256.11 SHORT_DESC="XML::SAX - Simple API for XML" 256.12 MAINTAINER="al.bobylev@gmail.com" 256.13 LICENSE="GPL" 256.14 -WEB_SITE="https://metacpan.org/release/XML-SAX" 256.15 -REPOLOGY="perl:xml-sax" 256.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 256.17 +HOST_ARCH="any" 256.18 +REPOLOGY="${PACKAGE/-/:}" 256.19 256.20 -TARBALL="XML-SAX-$VERSION.tar.gz" 256.21 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GR/GRANTM/$TARBALL" 256.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 256.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 256.24 256.25 -BUILD_DEPENDS="perl-xml-namespacesupport perl-xml-sax-base" 256.26 +DEPENDS_std="perl-xml-namespacesupport perl-xml-sax-base" 256.27 +BUILD_DEPENDS="$DEPENDS_std" 256.28 256.29 compile_rules() { 256.30 # Please keep `make -j1 install` to FS before installing to the DESTDIR 256.31 @@ -24,8 +28,3 @@ 256.32 # cp -v /usr/lib/perl5/site_perl/5.24.1/XML/SAX/ParserDetails.ini \ 256.33 # $install/usr/lib/perl5/site_perl/5.24.1/XML/SAX/ 256.34 } 256.35 - 256.36 -genpkg_rules() { 256.37 - copy @std 256.38 - DEPENDS="$BUILD_DEPENDS" 256.39 -}
257.1 --- a/perl-xml-simple/receipt Thu Dec 06 20:27:31 2018 +0200 257.2 +++ b/perl-xml-simple/receipt Tue Dec 11 23:38:35 2018 +0200 257.3 @@ -1,28 +1,23 @@ 257.4 -# SliTaz package receipt. 257.5 +# SliTaz package receipt v2. 257.6 257.7 +ORIGIN="XML-Simple" 257.8 PACKAGE="perl-xml-simple" 257.9 VERSION="2.25" 257.10 +AUTHOR="GRANTM" 257.11 CATEGORY="perl" 257.12 SHORT_DESC="XML::Simple module is used to read and write XML" 257.13 MAINTAINER="devel@slitaz.org" 257.14 LICENSE="GPL" 257.15 -WEB_SITE="https://metacpan.org/release/XML-Simple" 257.16 -REPOLOGY="perl:xml-simple" 257.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 257.18 +HOST_ARCH="any" 257.19 +REPOLOGY="${PACKAGE/-/:}" 257.20 257.21 -TARBALL="XML-Simple-$VERSION.tar.gz" 257.22 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GR/GRANTM/$TARBALL" 257.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 257.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 257.25 257.26 -BUILD_DEPENDS="perl-xml-namespacesupport perl-xml-sax perl-xml-sax-expat" 257.27 +DEPENDS_std="perl-xml-namespacesupport perl-xml-sax perl-xml-sax-expat" 257.28 +BUILD_DEPENDS="$DEPENDS_std" 257.29 257.30 compile_rules() { 257.31 - perl Makefile.PL && 257.32 - make && 257.33 - make DESTDIR=$install install && 257.34 - 257.35 - chmod -R u+w $install 257.36 + cook_perl 257.37 } 257.38 - 257.39 -genpkg_rules() { 257.40 - copy @std 257.41 - DEPENDS="perl-xml-namespacesupport perl-xml-sax perl-xml-sax-expat" 257.42 -}
258.1 --- a/perl-xml-twig/receipt Thu Dec 06 20:27:31 2018 +0200 258.2 +++ b/perl-xml-twig/receipt Tue Dec 11 23:38:35 2018 +0200 258.3 @@ -1,29 +1,24 @@ 258.4 -# SliTaz package receipt. 258.5 +# SliTaz package receipt v2. 258.6 258.7 +ORIGIN="XML-Twig" 258.8 PACKAGE="perl-xml-twig" 258.9 VERSION="3.52" 258.10 +AUTHOR="MIROD" 258.11 CATEGORY="perl" 258.12 SHORT_DESC="XML::Twig - A perl module for processing huge XML documents in \ 258.13 tree mode" 258.14 MAINTAINER="devel@slitaz.org" 258.15 LICENSE="GPL" 258.16 -WEB_SITE="https://metacpan.org/release/XML-Twig" 258.17 -REPOLOGY="perl:xml-twig" 258.18 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 258.19 +HOST_ARCH="any" 258.20 +REPOLOGY="${PACKAGE/-/:}" 258.21 258.22 -TARBALL="XML-Twig-$VERSION.tar.gz" 258.23 -WGET_URL="https://cpan.metacpan.org/authors/id/M/MI/MIROD/$TARBALL" 258.24 +TARBALL="$ORIGIN-$VERSION.tar.gz" 258.25 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 258.26 258.27 -BUILD_DEPENDS="perl-xml-parser" 258.28 +DEPENDS_std="perl-xml-parser" 258.29 +BUILD_DEPENDS="$DEPENDS_std" 258.30 258.31 compile_rules() { 258.32 - perl Makefile.PL -y && 258.33 - make && 258.34 - make DESTDIR=$install install && 258.35 - 258.36 - chmod -R u+w $install 258.37 + cook_perl "-y" 258.38 } 258.39 - 258.40 -genpkg_rules() { 258.41 - copy @std 258.42 - DEPENDS="perl-xml-parser" 258.43 -}
259.1 --- a/perl-xml-writer/receipt Thu Dec 06 20:27:31 2018 +0200 259.2 +++ b/perl-xml-writer/receipt Tue Dec 11 23:38:35 2018 +0200 259.3 @@ -1,28 +1,23 @@ 259.4 -# SliTaz package receipt. 259.5 +# SliTaz package receipt v2. 259.6 259.7 +ORIGIN="XML-Writer" 259.8 PACKAGE="perl-xml-writer" 259.9 VERSION="0.625" 259.10 +AUTHOR="JOSEPHW" 259.11 CATEGORY="perl" 259.12 SHORT_DESC="XML::Writer - Perl extension for writing XML documents" 259.13 MAINTAINER="devel@slitaz.org" 259.14 LICENSE="GPL" 259.15 -WEB_SITE="https://metacpan.org/release/XML-Writer" 259.16 -REPOLOGY="perl:xml-writer" 259.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 259.18 +HOST_ARCH="any" 259.19 +REPOLOGY="${PACKAGE/-/:}" 259.20 259.21 -TARBALL="XML-Writer-$VERSION.tar.gz" 259.22 -WGET_URL="https://cpan.metacpan.org/authors/id/J/JO/JOSEPHW/$TARBALL" 259.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 259.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 259.25 259.26 -BUILD_DEPENDS="perl" 259.27 +DEPENDS_std="perl" 259.28 +BUILD_DEPENDS="$DEPENDS_std" 259.29 259.30 compile_rules() { 259.31 - perl Makefile.PL && 259.32 - make && 259.33 - make DESTDIR=$install install && 259.34 - 259.35 - chmod -R u+w $install 259.36 + cook_perl 259.37 } 259.38 - 259.39 -genpkg_rules() { 259.40 - copy @std 259.41 - DEPENDS="perl" 259.42 -}
260.1 --- a/perl-xsloader/receipt Thu Dec 06 20:27:31 2018 +0200 260.2 +++ b/perl-xsloader/receipt Tue Dec 11 23:38:35 2018 +0200 260.3 @@ -1,28 +1,23 @@ 260.4 -# SliTaz package receipt. 260.5 +# SliTaz package receipt v2. 260.6 260.7 +ORIGIN="XSLoader" 260.8 PACKAGE="perl-xsloader" 260.9 VERSION="0.24" 260.10 +AUTHOR="SAPER" 260.11 CATEGORY="perl" 260.12 SHORT_DESC="XSLoader - Dynamically load C libraries into Perl code" 260.13 MAINTAINER="al.bobylev@gmail.com" 260.14 LICENSE="GPL" 260.15 -WEB_SITE="https://metacpan.org/release/XSLoader" 260.16 -REPOLOGY="perl:xsloader" 260.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 260.18 +HOST_ARCH="any" 260.19 +REPOLOGY="${PACKAGE/-/:}" 260.20 260.21 -TARBALL="XSLoader-$VERSION.tar.gz" 260.22 -WGET_URL="https://cpan.metacpan.org/authors/id/S/SA/SAPER/$TARBALL" 260.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 260.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 260.25 260.26 -BUILD_DEPENDS="perl" 260.27 +DEPENDS_std="perl" 260.28 +BUILD_DEPENDS="$DEPENDS_std" 260.29 260.30 compile_rules() { 260.31 - perl Makefile.PL && 260.32 - make && 260.33 - make DESTDIR=$install install && 260.34 - 260.35 - chmod -R u+w $install 260.36 + cook_perl 260.37 } 260.38 - 260.39 -genpkg_rules() { 260.40 - copy @std 260.41 - DEPENDS="perl" 260.42 -}
261.1 --- a/perl-yaml-syck/receipt Thu Dec 06 20:27:31 2018 +0200 261.2 +++ b/perl-yaml-syck/receipt Tue Dec 11 23:38:35 2018 +0200 261.3 @@ -1,28 +1,22 @@ 261.4 # SliTaz package receipt v2. 261.5 261.6 +ORIGIN="YAML-Syck" 261.7 PACKAGE="perl-yaml-syck" 261.8 -VERSION="1.30" 261.9 +VERSION="1.31" 261.10 +AUTHOR="TODDR" 261.11 CATEGORY="perl" 261.12 SHORT_DESC="YAML::Syck - Fast, lightweight YAML loader and dumper" 261.13 MAINTAINER="devel@slitaz.org" 261.14 LICENSE="MIT" 261.15 -WEB_SITE="https://metacpan.org/release/YAML-Syck" 261.16 -REPOLOGY="perl:yaml-syck" 261.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 261.18 +REPOLOGY="${PACKAGE/-/:}" 261.19 261.20 -TARBALL="YAML-Syck-$VERSION.tar.gz" 261.21 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TO/TODDR/$TARBALL" 261.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 261.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 261.24 261.25 -BUILD_DEPENDS="perl-dev" 261.26 +DEPENDS_std="perl" 261.27 +BUILD_DEPENDS="$DEPENDS_std perl-dev" 261.28 261.29 compile_rules() { 261.30 - perl Makefile.PL -y && 261.31 - make && 261.32 - make DESTDIR=$install install && 261.33 - 261.34 - chmod -R u+w $install 261.35 + cook_perl "-y" 261.36 } 261.37 - 261.38 -genpkg_rules() { 261.39 - copy @std 261.40 - DEPENDS="perl" 261.41 -}
262.1 --- a/perl-yaml-tiny/receipt Thu Dec 06 20:27:31 2018 +0200 262.2 +++ b/perl-yaml-tiny/receipt Tue Dec 11 23:38:35 2018 +0200 262.3 @@ -1,28 +1,23 @@ 262.4 # SliTaz package receipt v2. 262.5 262.6 +ORIGIN="YAML-Tiny" 262.7 PACKAGE="perl-yaml-tiny" 262.8 VERSION="1.73" 262.9 +AUTHOR="ETHER" 262.10 CATEGORY="perl" 262.11 SHORT_DESC="YAML::Tiny - Read/Write YAML files with as little code as possible" 262.12 MAINTAINER="al.bobylev@gmail.com" 262.13 LICENSE="GPL" 262.14 -WEB_SITE="https://metacpan.org/release/YAML-Tiny" 262.15 -REPOLOGY="perl:yaml-tiny" 262.16 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 262.17 +HOST_ARCH="any" 262.18 +REPOLOGY="${PACKAGE/-/:}" 262.19 262.20 -TARBALL="YAML-Tiny-$VERSION.tar.gz" 262.21 -WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL" 262.22 +TARBALL="$ORIGIN-$VERSION.tar.gz" 262.23 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 262.24 262.25 -BUILD_DEPENDS="perl" 262.26 +DEPENDS_std="perl" 262.27 +BUILD_DEPENDS="$DEPENDS_std" 262.28 262.29 compile_rules() { 262.30 - perl Makefile.PL && 262.31 - make && 262.32 - make DESTDIR=$install install && 262.33 - 262.34 - chmod -R u+w $install 262.35 + cook_perl 262.36 } 262.37 - 262.38 -genpkg_rules() { 262.39 - copy @std 262.40 - DEPENDS="perl" 262.41 -}
263.1 --- a/perl-yaml/receipt Thu Dec 06 20:27:31 2018 +0200 263.2 +++ b/perl-yaml/receipt Tue Dec 11 23:38:35 2018 +0200 263.3 @@ -1,28 +1,23 @@ 263.4 # SliTaz package receipt v2. 263.5 263.6 +ORIGIN="YAML" 263.7 PACKAGE="perl-yaml" 263.8 -VERSION="1.26" 263.9 +VERSION="1.27" 263.10 +AUTHOR="TINITA" 263.11 CATEGORY="perl" 263.12 SHORT_DESC="YAML - YAML Ain't Markup Languageā¢" 263.13 MAINTAINER="devel@slitaz.org" 263.14 LICENSE="GPL" 263.15 -WEB_SITE="https://metacpan.org/release/YAML" 263.16 -REPOLOGY="perl:yaml" 263.17 +WEB_SITE="https://metacpan.org/release/$ORIGIN" 263.18 +HOST_ARCH="any" 263.19 +REPOLOGY="${PACKAGE/-/:}" 263.20 263.21 -TARBALL="YAML-$VERSION.tar.gz" 263.22 -WGET_URL="https://cpan.metacpan.org/authors/id/T/TI/TINITA/$TARBALL" 263.23 +TARBALL="$ORIGIN-$VERSION.tar.gz" 263.24 +WGET_URL="https://cpan.metacpan.org/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/$AUTHOR/$TARBALL" 263.25 263.26 -BUILD_DEPENDS="perl" 263.27 +DEPENDS_std="perl" 263.28 +BUILD_DEPENDS="$DEPENDS_std" 263.29 263.30 compile_rules() { 263.31 - perl Makefile.PL && 263.32 - make && 263.33 - make DESTDIR=$install install && 263.34 - 263.35 - chmod -R u+w $install 263.36 + cook_perl 263.37 } 263.38 - 263.39 -genpkg_rules() { 263.40 - copy @std 263.41 - DEPENDS="perl" 263.42 -}
264.1 --- a/rrdtool/receipt Thu Dec 06 20:27:31 2018 +0200 264.2 +++ b/rrdtool/receipt Tue Dec 11 23:38:35 2018 +0200 264.3 @@ -12,73 +12,74 @@ 264.4 WGET_URL="https://oss.oetiker.ch/rrdtool/pub/$TARBALL" 264.5 264.6 BUILD_DEPENDS="perl-dev zlib-dev freetype-dev libpng16-dev libxml2-dev \ 264.7 -fontconfig-dev xorg-pixman-dev cairo-dev glib-dev pango-dev python-dev perl groff \ 264.8 -tcl-dev lua5.1-dev ruby gettext-dev" 264.9 -SPLIT="$PACKAGE-perl $PACKAGE-python $PACKAGE-dev $PACKAGE" 264.10 +fontconfig-dev xorg-pixman-dev cairo-dev glib-dev pango-dev python-dev perl \ 264.11 +groff tcl-dev lua5.1-dev ruby-dev gettext-dev libwrap-dev glib-dev" 264.12 +SPLIT="$PACKAGE-lua $PACKAGE-perl $PACKAGE-python $PACKAGE-ruby $PACKAGE-tcl \ 264.13 +$PACKAGE-dev $PACKAGE $PACKAGE-lite:lite" 264.14 264.15 -SIBLINGS="rrdtool-lite" 264.16 +COPY_std="bin/ lib/librrd.so*" 264.17 +COPY_lua="lua/5.1/*.so*" 264.18 +COPY_perl="perl5/" 264.19 +COPY_python="python2.7/" 264.20 +COPY_ruby="ruby/" 264.21 +COPY_tcl="*.tcl tcl*.so" 264.22 +COPY_lite="bin/ lib/librrd.so*" 264.23 + 264.24 +CAT_lua="development|Lua bindings" 264.25 +CAT_perl="development|Perl bindings" 264.26 +CAT_python="development|Python bindings" 264.27 +CAT_tcl="development|Tcl bindings" 264.28 + 264.29 +DEPENDS_lua="lua5.1 rrdtool" 264.30 +DEPENDS_perl="perl rrdtool" 264.31 +DEPENDS_python="python rrdtool" 264.32 +DEPENDS_ruby="ruby rrdtool" 264.33 +DEPENDS_tcl="tcl rrdtool" 264.34 +DEPENDS_dev="rrdtool" 264.35 +DEPENDS_std="cairo glib libpng16 libwrap libxml2 pango" 264.36 +DEPENDS_lite="glib libxml2" 264.37 + 264.38 +TAGS_std="logs" 264.39 +TAGS_lite="logs" 264.40 264.41 compile_rules() { 264.42 - sed -i 's/PL_sv_undef sv_undef/PL_sv_undef PL_sv_undef/' bindings/perl-shared/RRDs.xs 264.43 - export LDFLAGS="$LDFLAGS -L/usr/lib/lua/5.1" 264.44 + case $SET in 264.45 + '') 264.46 + export LDFLAGS="$LDFLAGS -L/usr/lib/lua/5.1" 264.47 264.48 - TOREMOVE="/usr/include/lua5.1 /usr/lib/lua5.1" 264.49 - ln -s lua/5.1 /usr/include/lua5.1 264.50 - ln -s lua/5.1 /usr/lib/lua5.1 264.51 - for i in /usr/bin/lua /usr/bin/luac; do 264.52 - [ -e $i ] && continue 264.53 - ln -s $(basename $i)5.1 $i 264.54 - TOREMOVE="$TOREMOVE $i" 264.55 - done 264.56 + ln -sf lua/5.1 /usr/include/lua5.1 264.57 + ln -sf lua/5.1 /usr/lib/lua5.1 264.58 + ln -sf lua5.1 /usr/bin/lua 264.59 + ln -sf luac5.1 /usr/bin/luac 264.60 + 264.61 + SET_ARGS="\ 264.62 + --enable-perl-site-install \ 264.63 + --with-perl-options='INSTALLDIRS=vendor' \ 264.64 + --enable-ruby-site-install \ 264.65 + --enable-lua-site-install \ 264.66 + --enable-tcl-site" 264.67 + ;; 264.68 + lite) 264.69 + SET_ARGS="\ 264.70 + --disable-rrdcgi \ 264.71 + --disable-rrd_graph \ 264.72 + --disable-nls \ 264.73 + --disable-libdbi \ 264.74 + --disable-libwrap \ 264.75 + --disable-perl \ 264.76 + --disable-ruby \ 264.77 + --disable-lua \ 264.78 + --disable-tcl \ 264.79 + --disable-python" 264.80 + ;; 264.81 + esac 264.82 264.83 ./configure \ 264.84 - --enable-perl-site-install \ 264.85 + $SET_ARGS \ 264.86 $CONFIGURE_ARGS && 264.87 fix libtool && 264.88 make && 264.89 - make DESTDIR=$install install || return 1 264.90 + make DESTDIR=$install install && 264.91 264.92 - for i in $TOREMOVE; do 264.93 - rm -f $i 264.94 - done 264.95 + find $install -type f -exec chmod u+w '{}' \; 264.96 } 264.97 - 264.98 -genpkg_rules() { 264.99 - case $PACKAGE in 264.100 - rrdtool-doc) 264.101 - copy doc/ examples/ 264.102 - CAT="development|documentation and examples" 264.103 - ;; 264.104 - rrdtool-lua) 264.105 - copy lua/ 264.106 - find $fs -name '*.la' -delete 264.107 - CAT="development|Lua bindings" 264.108 - DEPENDS="lua5.1 rrdtool" 264.109 - ;; 264.110 - rrdtool-man) 264.111 - copy man/ 264.112 - CAT="development|man pages" 264.113 - ;; 264.114 - rrdtool-perl) 264.115 - copy perl5/ 264.116 - CAT="development|Perl bindings" 264.117 - DEPENDS="perl rrdtool" 264.118 - ;; 264.119 - rrdtool-python) 264.120 - copy python2.7/ 264.121 - CAT="development|Python bindings" 264.122 - DEPENDS="python rrdtool" 264.123 - ;; 264.124 - rrdtool-dev) 264.125 - copy @dev examples/ 264.126 - DEPENDS="rrdtool" 264.127 - ;; 264.128 - rrdtool) 264.129 - copy @std @rm 264.130 - rm -r $fs/usr/lib/perl5/ # ... empty 264.131 - DEPENDS="zlib freetype libpng16 libxml2 fontconfig xorg-pixman \ 264.132 - cairo glib pango xorg-xcb-util xorg-base-fonts libwrap" 264.133 - TAGS="logs" 264.134 - ;; 264.135 - esac 264.136 -}