# HG changeset patch # User Hans-G?nter Theisgen # Date 1641105103 -3600 # Node ID 5371c60d569e973eca1163866588ecee00b136fa # Parent 34acc89bf1e506f71b6d9ed9e81c7e51e25bd83c updated perl-net-http (6.19 -> 6.21) diff -r 34acc89bf1e5 -r 5371c60d569e perl-net-ftp/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-net-ftp/description.txt Sun Jan 02 07:31:43 2022 +0100 @@ -0,0 +1,10 @@ +Net::FTP is a class implementing a simple FTP client in Perl as described +in RFC959. +It provides wrappers for the commonly used subset of the RFC959 commands. +If IO::Socket::IP or IO::Socket::INET6 is installed it also provides support +for IPv6 as defined in RFC2428. +And with IO::Socket::SSL installed it provides support for implicit FTPS +and explicit FTPS as defined in RFC4217. + +The Net::FTP class is a subclass of Net::Cmd and (depending on avaibility) +of IO::Socket::IP, IO::Socket::INET6 or IO::Socket::INET. diff -r 34acc89bf1e5 -r 5371c60d569e perl-net-http/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-net-http/description.txt Sun Jan 02 07:31:43 2022 +0100 @@ -0,0 +1,10 @@ +The Net::HTTP class is a low-level HTTP client. +An instance of the Net::HTTP class represents a connection to an HTTP server. +The HTTP protocol is described in RFC 2616. +The Net::HTTP class supports HTTP/1.0 and HTTP/1.1. + +Net::HTTP is a sub-class of one of IO::Socket::IP (IPv6+IPv4), +IO::Socket::INET6 (IPv6+IPv4), or IO::Socket::INET (IPv4 only). +You can mix the methods described below with reading and writing from +the socket directly. +This is not necessary a good idea, unless you know what you are doing. diff -r 34acc89bf1e5 -r 5371c60d569e perl-net-http/receipt --- a/perl-net-http/receipt Sun Jan 02 07:24:15 2022 +0100 +++ b/perl-net-http/receipt Sun Jan 02 07:31:43 2022 +0100 @@ -1,19 +1,20 @@ # SliTaz package receipt. PACKAGE="perl-net-http" -VERSION="6.19" +VERSION="6.21" CATEGORY="development" SHORT_DESC="Perl Low-level HTTP connection (client)." MAINTAINER="erjo@slitaz.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/Net-HTTP" +WEB_SITE="https://metacpan.org/pod/Net::HTTP" +REPOLOGY="perl:net-http" SOURCE="Net-HTTP" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="http://www.cpan.org/modules/by-module/Net/$TARBALL" +WGET_URL="https://www.cpan.org/modules/by-module/Net/$TARBALL" DEPENDS="perl perl-compress-raw-zlib perl-io-compress" -BUILD_DEPENDS="perl $DEPENDS" +BUILD_DEPENDS="perl perl-compress-raw-zlib perl-io-compress" current_version() { @@ -26,12 +27,11 @@ { 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 }