mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Update to 6.05
- Update pkg-descr - Take maintainership Changes: https://metacpan.org/changes/distribution/HTTP-Cookies
This commit is contained in:
parent
aa318d2934
commit
cff837976d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=515874
3 changed files with 21 additions and 9 deletions
|
@ -2,12 +2,12 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= HTTP-Cookies
|
||||
PORTVERSION= 6.04
|
||||
PORTVERSION= 6.05
|
||||
CATEGORIES= www perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= perl@FreeBSD.org
|
||||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= HTTP Cookie jars
|
||||
|
||||
LICENSE= ART10 GPLv1+
|
||||
|
@ -18,8 +18,9 @@ RUN_DEPENDS= p5-HTTP-Date>=6:www/p5-HTTP-Date \
|
|||
p5-HTTP-Message>=6:www/p5-HTTP-Message
|
||||
TEST_DEPENDS= p5-URI>=0:net/p5-URI
|
||||
|
||||
NO_ARCH= yes
|
||||
USES= perl5
|
||||
USE_PERL5= configure
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501862778
|
||||
SHA256 (HTTP-Cookies-6.04.tar.gz) = 0cc7f079079dcad8293fea36875ef58dd1bfd75ce1a6c244cd73ed9523eb13d4
|
||||
SIZE (HTTP-Cookies-6.04.tar.gz) = 39502
|
||||
TIMESTAMP = 1572266766
|
||||
SHA256 (HTTP-Cookies-6.05.tar.gz) = 58e1cd041bfcf33c2ab4140de7a757234809b8cf072afa727a6f3ffe84b66f5d
|
||||
SIZE (HTTP-Cookies-6.05.tar.gz) = 40126
|
||||
|
|
|
@ -1,5 +1,16 @@
|
|||
The HTTP::Cookies class is for objects that represent a "cookie jar" --
|
||||
that is, a database of all the HTTP cookies that a given LWP::UserAgent
|
||||
object knows about.
|
||||
The HTTP::Cookies class is for objects that represent a "cookie jar" -- that is,
|
||||
a database of all the HTTP cookies that a given LWP::UserAgent object knows
|
||||
about.
|
||||
|
||||
Cookies are a general mechanism which server side connections can use to both
|
||||
store and retrieve information on the client side of the connection. For more
|
||||
information about cookies refer to Cookie Spec and Cookie Central. This module
|
||||
also implements the new style cookies described in RFC 2965. The two variants of
|
||||
cookies are supposed to be able to coexist happily.
|
||||
|
||||
Instances of the class HTTP::Cookies are able to store a collection of
|
||||
Set-Cookie2: and Set-Cookie: headers and are able to use this information to
|
||||
initialize Cookie-headers in HTTP::Request objects. The state of a HTTP::Cookies
|
||||
object can be saved in and restored from files.
|
||||
|
||||
WWW: https://metacpan.org/release/HTTP-Cookies
|
||||
|
|
Loading…
Add table
Reference in a new issue