wok rev 24218
updated perl-http-cookies (6.08 -> 6.10)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 16:37:13 2021 +0100 (2021-12-31) |
parents | 78c6039421c0 |
children | 2c71c00621d5 |
files | perl-http-cookies/description.txt perl-http-cookies/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-http-cookies/description.txt Fri Dec 31 16:37:13 2021 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +This class is for objects that represent a "cookie jar" -- that is, 1.5 +a database of all the HTTP cookies that a given LWP::UserAgent 1.6 +object knows about. 1.7 + 1.8 +Cookies are a general mechanism which server side connections can 1.9 +use to both store and retrieve information on the client side of 1.10 +the connection. 1.11 +For more information about cookies refer to Cookie Spec and Cookie 1.12 +Central. 1.13 +This module also implements the new style cookies described in 1.14 +RFC 2965. The two variants of cookies are supposed to be able to 1.15 +coexist happily. 1.16 + 1.17 +Instances of the class HTTP::Cookies are able to store a collection 1.18 +of Set-Cookie2: and Set-Cookie: headers and are able to use this 1.19 +information to initialize Cookie-headers in HTTP::Request objects. 1.20 +The state of a HTTP::Cookies object can be saved in and restored 1.21 +from files.
2.1 --- a/perl-http-cookies/receipt Fri Dec 31 16:34:31 2021 +0100 2.2 +++ b/perl-http-cookies/receipt Fri Dec 31 16:37:13 2021 +0100 2.3 @@ -1,19 +1,20 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-http-cookies" 2.7 -VERSION="6.08" 2.8 +VERSION="6.10" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Perl HTTP cookie jars." 2.11 MAINTAINER="erjo@slitaz.org" 2.12 LICENSE="GPL" 2.13 -WEB_SITE="https://metacpan.org/release/HTTP-Cookies" 2.14 +WEB_SITE="https://metacpan.org/pod/HTTP::Cookies" 2.15 +REPOLOGY="perl:http-cookies" 2.16 2.17 SOURCE="HTTP-Cookies" 2.18 TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 WGET_URL="https://www.cpan.org/modules/by-module/HTTP/$TARBALL" 2.20 2.21 -DEPENDS="perl perl-http-date perl-http-message " 2.22 -BUILD_DEPENDS="perl $DEPENDS" 2.23 +DEPENDS="perl perl-http-date perl-http-message" 2.24 +BUILD_DEPENDS="perl perl-http-date perl-http-message" 2.25 2.26 current_version() 2.27 { 2.28 @@ -26,12 +27,11 @@ 2.29 { 2.30 perl Makefile.PL && 2.31 make && 2.32 - make DESTDIR=$DESTDIR install 2.33 + make install DESTDIR=$DESTDIR 2.34 } 2.35 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr 2.40 - cp -a $install/usr/lib $fs/usr 2.41 + cook_copy_folders lib 2.42 }