summaryrefslogtreecommitdiff
path: root/www/p5-libwww
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2001-12-15 10:12:40 +0000
committermartti <martti@pkgsrc.org>2001-12-15 10:12:40 +0000
commit421675cb9cf1c5e7f1f4c4b1fcb7fe813dbdba76 (patch)
tree39f17565d2f768fbc54e85c79f585b1e2f4d71a4 /www/p5-libwww
parent73457b1596c2c820a102630b266e69d0ed84606a (diff)
downloadpkgsrc-421675cb9cf1c5e7f1f4c4b1fcb7fe813dbdba76.tar.gz
Updated to 5.63 (provided by Shell Hung in pkg/14954)
- Regen patches - Add p5-Compress-Zlib to DEPENDS - Add Compress::Zlib for Net::HTTP::Methods - LWP::Authen::Digest now use Digest::MD5 instead of MD5 - Net::HTTP new options to the 'read_response_headers' method - LWP::Protocol::http will now allow certain bad headers n the responses it reads. - LWP::UserAgent: make sure that the 'request' attribute is always set on the returned response.
Diffstat (limited to 'www/p5-libwww')
-rw-r--r--www/p5-libwww/Makefile5
-rw-r--r--www/p5-libwww/distinfo8
-rw-r--r--www/p5-libwww/patches/patch-aa18
3 files changed, 15 insertions, 16 deletions
diff --git a/www/p5-libwww/Makefile b/www/p5-libwww/Makefile
index 5283559ba3f..a699aa5c9b3 100644
--- a/www/p5-libwww/Makefile
+++ b/www/p5-libwww/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.24 2001/11/30 14:59:28 mjl Exp $
+# $NetBSD: Makefile,v 1.25 2001/12/15 10:12:40 martti Exp $
# FreeBSD Id: Makefile,v 1.12 1997/09/14 04:00:11 jfitz Exp
#
-DISTNAME= libwww-perl-5.62
+DISTNAME= libwww-perl-5.63
PKGNAME= p5-${DISTNAME:S/-perl-/-/}
SVR4_PKGNAME= p5lww
CATEGORIES= www perl5
@@ -16,6 +16,7 @@ DEPENDS+= p5-Digest-MD5-[0-9]*:../../security/p5-Digest-MD5
DEPENDS+= p5-Net-[0-9]*:../../net/p5-Net
DEPENDS+= p5-HTML-Parser-[0-9]*:../../www/p5-HTML-Parser
DEPENDS+= p5-URI-[0-9]*:../../www/p5-URI
+DEPENDS+= p5-Compress-Zlib-[0-9]*:../../devel/p5-Compress-Zlib
USE_BUILDLINK_ONLY= YES
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/libwww-perl/.packlist
diff --git a/www/p5-libwww/distinfo b/www/p5-libwww/distinfo
index bd1d341211b..7f93f4c2410 100644
--- a/www/p5-libwww/distinfo
+++ b/www/p5-libwww/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2001/11/30 14:59:28 mjl Exp $
+$NetBSD: distinfo,v 1.6 2001/12/15 10:12:40 martti Exp $
-SHA1 (libwww-perl-5.62.tar.gz) = 72b7e96732772d1c15bd4e3ff5869533e865aafc
-Size (libwww-perl-5.62.tar.gz) = 180137 bytes
-SHA1 (patch-aa) = e057150cf7dc34ef30865ca59b89a63f005d73e5
+SHA1 (libwww-perl-5.63.tar.gz) = 350d18544e9f5981a03e65c05c89991e17392e30
+Size (libwww-perl-5.63.tar.gz) = 183103 bytes
+SHA1 (patch-aa) = 15b7ec5241ee02fa88338a9ff9eefa7471a2f34f
diff --git a/www/p5-libwww/patches/patch-aa b/www/p5-libwww/patches/patch-aa
index c7f12e993ce..353ec21fc44 100644
--- a/www/p5-libwww/patches/patch-aa
+++ b/www/p5-libwww/patches/patch-aa
@@ -1,24 +1,22 @@
-$NetBSD: patch-aa,v 1.1 2001/11/22 09:11:08 martti Exp $
+$NetBSD: patch-aa,v 1.2 2001/12/15 10:12:40 martti Exp $
---- Makefile.PL.orig Sat Nov 17 16:27:59 2001
-+++ Makefile.PL Sat Nov 17 16:32:13 2001
-@@ -41,13 +41,18 @@
- sub { ($_[5]+1900, $_[4]+1, $_[3])}->(localtime(time - 45 * 24*60*60));
+--- Makefile.PL.orig Sat Dec 15 16:03:49 2001
++++ Makefile.PL
+@@ -41,13 +41,16 @@
+ sub { ($_[5]+1900, $_[4]+1, $_[3])}->(localtime(time - 45 * 24*60*60));
if ($some_time_ago lt $release_date) {
# Check if we have internet connection
- require IO::Socket;
- my $s = IO::Socket::INET->new(PeerAddr => "www.google.com:80",
- Timeout => 10,
- );
-+ my $s = 0;
+# require IO::Socket;
+# my $s = IO::Socket::INET->new(PeerAddr => "www.google.com:80",
+# Timeout => 10,
+# );
-+#
-+# Disable the test by default, to avoid interactive and some system maybe
-+# don't have directly internet connection.
-+#
++
++ my $s = 0;
++
if ($s) {
# XXX could try to send a GET to it???
- close($s);