1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

Update to 6.19

- Update pkg-descr
- Take maintainership

Changes:	https://metacpan.org/changes/distribution/Net-HTTP
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2019-05-19 21:53:50 +00:00
parent 5d51fb7042
commit 260382bc3f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=502056
3 changed files with 15 additions and 9 deletions

View File

@ -2,12 +2,12 @@
# $FreeBSD$
PORTNAME= Net-HTTP
PORTVERSION= 6.18
PORTVERSION= 6.19
CATEGORIES= net perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Low-level HTTP client
LICENSE= ART10 GPLv1+
@ -18,8 +18,9 @@ BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= p5-IO-Socket-SSL>=1.38:security/p5-IO-Socket-SSL \
p5-URI>=0:net/p5-URI
NO_ARCH= yes
USES= perl5
USE_PERL5= configure
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1525963106
SHA256 (Net-HTTP-6.18.tar.gz) = 7e42df2db7adce3e0eb4f78b88c450f453f5380f120fd5411232e03374ba951c
SIZE (Net-HTTP-6.18.tar.gz) = 38745
TIMESTAMP = 1558180589
SHA256 (Net-HTTP-6.19.tar.gz) = 52b76ec13959522cae64d965f15da3d99dcb445eddd85d2ce4e4f4df385b2fc4
SIZE (Net-HTTP-6.19.tar.gz) = 36937

View File

@ -1,5 +1,10 @@
The Net::HTTP class is a low-level HTTP client that supports HTTP/1.0 and
HTTP/1.1. An instance of the Net::HTTP class represents a connection to an HTTP
server.
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.
WWW: https://metacpan.org/release/Net-HTTP