wok-6.x rev 24242
updated perl-net-http (6.19 -> 6.21)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 07:31:43 2022 +0100 (2022-01-02) |
parents | 34acc89bf1e5 |
children | 8b05a456a684 |
files | perl-net-ftp/description.txt perl-net-http/description.txt perl-net-http/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-net-ftp/description.txt Sun Jan 02 07:31:43 2022 +0100 1.3 @@ -0,0 +1,10 @@ 1.4 +Net::FTP is a class implementing a simple FTP client in Perl as described 1.5 +in RFC959. 1.6 +It provides wrappers for the commonly used subset of the RFC959 commands. 1.7 +If IO::Socket::IP or IO::Socket::INET6 is installed it also provides support 1.8 +for IPv6 as defined in RFC2428. 1.9 +And with IO::Socket::SSL installed it provides support for implicit FTPS 1.10 +and explicit FTPS as defined in RFC4217. 1.11 + 1.12 +The Net::FTP class is a subclass of Net::Cmd and (depending on avaibility) 1.13 +of IO::Socket::IP, IO::Socket::INET6 or IO::Socket::INET.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/perl-net-http/description.txt Sun Jan 02 07:31:43 2022 +0100 2.3 @@ -0,0 +1,10 @@ 2.4 +The Net::HTTP class is a low-level HTTP client. 2.5 +An instance of the Net::HTTP class represents a connection to an HTTP server. 2.6 +The HTTP protocol is described in RFC 2616. 2.7 +The Net::HTTP class supports HTTP/1.0 and HTTP/1.1. 2.8 + 2.9 +Net::HTTP is a sub-class of one of IO::Socket::IP (IPv6+IPv4), 2.10 +IO::Socket::INET6 (IPv6+IPv4), or IO::Socket::INET (IPv4 only). 2.11 +You can mix the methods described below with reading and writing from 2.12 +the socket directly. 2.13 +This is not necessary a good idea, unless you know what you are doing.
3.1 --- a/perl-net-http/receipt Sun Jan 02 07:24:15 2022 +0100 3.2 +++ b/perl-net-http/receipt Sun Jan 02 07:31:43 2022 +0100 3.3 @@ -1,19 +1,20 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="perl-net-http" 3.7 -VERSION="6.19" 3.8 +VERSION="6.21" 3.9 CATEGORY="development" 3.10 SHORT_DESC="Perl Low-level HTTP connection (client)." 3.11 MAINTAINER="erjo@slitaz.org" 3.12 LICENSE="GPL" 3.13 -WEB_SITE="https://metacpan.org/release/Net-HTTP" 3.14 +WEB_SITE="https://metacpan.org/pod/Net::HTTP" 3.15 +REPOLOGY="perl:net-http" 3.16 3.17 SOURCE="Net-HTTP" 3.18 TARBALL="$SOURCE-$VERSION.tar.gz" 3.19 -WGET_URL="http://www.cpan.org/modules/by-module/Net/$TARBALL" 3.20 +WGET_URL="https://www.cpan.org/modules/by-module/Net/$TARBALL" 3.21 3.22 DEPENDS="perl perl-compress-raw-zlib perl-io-compress" 3.23 -BUILD_DEPENDS="perl $DEPENDS" 3.24 +BUILD_DEPENDS="perl perl-compress-raw-zlib perl-io-compress" 3.25 3.26 current_version() 3.27 { 3.28 @@ -26,12 +27,11 @@ 3.29 { 3.30 perl Makefile.PL && 3.31 make && 3.32 - make DESTDIR=$DESTDIR install 3.33 + make install DESTDIR=$DESTDIR 3.34 } 3.35 3.36 # Rules to gen a SliTaz package suitable for Tazpkg. 3.37 genpkg_rules() 3.38 { 3.39 - mkdir -p $fs/usr 3.40 - cp -a $install/usr/lib $fs/usr 3.41 + cook_copy_folders lib 3.42 }