# HG changeset patch # User Hans-G?nter Theisgen # Date 1640967931 -3600 # Node ID d075ec861e16beab1a0e6972d055cc65506a4fe7 # Parent b8122092e5d9cf53706da80d582f899faa33faca updated perl-io-scalar (2.110 -> 2.113) diff -r b8122092e5d9 -r d075ec861e16 perl-io-scalar/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-io-scalar/description.txt Fri Dec 31 17:25:31 2021 +0100 @@ -0,0 +1,12 @@ +This toolkit primarily provides modules for performing both traditional +and object-oriented i/o) on things other than normal filehandles; +in particular, IO::Scalar, IO::ScalarArray, and IO::Lines. + +In the more-traditional IO::Handle front, we have IO::AtomicFile which +may be used to painlessly create files which are updated atomically. + +And in the "this-may-prove-useful" corner, we have IO::Wrap, whose +exported wraphandle() function will clothe anything that's not a blessed +object in an IO::Handle-like wrapper... so you can just use OO syntax +and stop worrying about whether your function's caller handed you a string, +a globref, or a FileHandle. diff -r b8122092e5d9 -r d075ec861e16 perl-io-scalar/receipt --- a/perl-io-scalar/receipt Fri Dec 31 17:15:15 2021 +0100 +++ b/perl-io-scalar/receipt Fri Dec 31 17:25:31 2021 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="perl-io-scalar" -VERSION="2.110" +VERSION="2.113" CATEGORY="development" SHORT_DESC="IO::Scalar module is a Perl extension." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" +WEB_SITE="https://metacpan.org/pod/IO::Stringy" +REPOLOGY="perl:io-stringy" +SOURCE="IO-Stringy" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="https://www.cpan.org/modules/by-module/IO/$TARBALL" DEPENDS="perl" BUILD_DEPENDS="perl" -SOURCE="IO-stringy" -TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://metacpan.org/dist/IO-Stringy" -WGET_URL="https://metacpan.org/CPAN/authors/id/D/DS/DSKOLL/$TARBALL" current_version() { @@ -22,16 +23,13 @@ # Rules to configure and make the package. compile_rules() { - cd $src perl Makefile.PL && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cook_copy_folders lib } -