wok-current rev 24222

updated perl-io-compress (2.093 -> 2.102)
author Hans-G?nter Theisgen
date Fri Dec 31 17:15:15 2021 +0100 (2021-12-31)
parents 35736c64d4ad
children d075ec861e16
files perl-io-compress/description.txt perl-io-compress/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-io-compress/description.txt	Fri Dec 31 17:15:15 2021 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +This module provides a Perl interface that allows the reading of
     1.5 +files or buffers that have been compressed with a variety of
     1.6 +compression libraries.
     1.7 +
     1.8 +The formats supported are:
     1.9 +
    1.10 +RFC 1950
    1.11 +RFC 1951 (optionally)
    1.12 +gzip (RFC 1952)
    1.13 +zip
    1.14 +zstd (Zstandard)
    1.15 +bzip2
    1.16 +lzop
    1.17 +lzf
    1.18 +lzma
    1.19 +lzip
    1.20 +xz
    1.21 +
    1.22 +The module will auto-detect which, if any, of the supported compression
    1.23 +formats is being used.
     2.1 --- a/perl-io-compress/receipt	Fri Dec 31 16:58:14 2021 +0100
     2.2 +++ b/perl-io-compress/receipt	Fri Dec 31 17:15:15 2021 +0100
     2.3 @@ -1,16 +1,17 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-io-compress"
     2.7 -VERSION="2.093"
     2.8 +VERSION="2.102"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="PERL interface to zlib compression library."
    2.11  MAINTAINER="erjo@slitaz.org"
    2.12  LICENSE="GPL"
    2.13 -WEB_SITE="https://metacpan.org/release/IO-Compress"
    2.14 +WEB_SITE="https://metacpan.org/pod/IO::Uncompress::AnyUncompress"
    2.15 +REPOLOGY="perl:io-compress"
    2.16  
    2.17  SOURCE="IO-Compress"
    2.18  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.19 -WGET_URL="https://cpan.metacpan.org/authors/id/P/PM/PMQS/$TARBALL"
    2.20 +WGET_URL="https://www.cpan.org/modules/by-module/IO/$TARBALL"
    2.21  
    2.22  DEPENDS="perl perl-compress-raw-bzip2 perl-compress-raw-zlib"
    2.23  BUILD_DEPENDS="perl perl-compress-raw-bzip2 perl-compress-raw-zlib"
    2.24 @@ -26,12 +27,11 @@
    2.25  {
    2.26  	perl Makefile.PL &&
    2.27  	make &&
    2.28 -	make DESTDIR=$DESTDIR install
    2.29 +	make install DESTDIR=$DESTDIR
    2.30  }
    2.31  
    2.32  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.33  genpkg_rules()
    2.34  {
    2.35 -	mkdir -p $fs/usr
    2.36 -	cp -a $install/usr/lib	$fs/usr
    2.37 +	cook_copy_folders	lib
    2.38  }