diff options
author | he <he@pkgsrc.org> | 2008-09-14 23:14:27 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2008-09-14 23:14:27 +0000 |
commit | c0b22cabcbb954fc03963691a8a200e9e79d141c (patch) | |
tree | 87401d3840cb0f26643854cda2b224737112b107 /www/p5-libwww | |
parent | c4d874a447ffc8729eb5727f32aa8f4a24df3b13 (diff) | |
download | pkgsrc-c0b22cabcbb954fc03963691a8a200e9e79d141c.tar.gz |
Update from version 5.812 to 5.814.
Should fix PR#39320.
Pkgsrc changes:
o Remove patch-aa, which appears to no longer be needed
Upstream changes:
Release 5.814
Gisle Aas (13):
Typo fix.
Add HTTP::Message::decodable()
Use decoded_content in the synposis
Avoid adding an empty first part in $mess->add_part()
Get rid of all the manual dependency tests.
Simplify the Makefile.PL (no interactivity)
Provide DELETE method in HTTP::Request::Common [RT#37481]
Checkbox picks up nearby text in description of alternates [RT#36771]
HTML::Form::possible_values() should not returned disabled
values [RT#35248]
File::Listing documentation claimed only 'unix' format
was supported [RT#22021]
File::Listing only support English locales [RT#28879]
Make common-req.t use Test.pm
Typo; CAN_TALK_TO_OUTSELF
Bill Mann (1):
Fix up File::Listings fallback to dosftp [RT#23540]
Hans-H. Froehlich (1):
File::Listing parse failure on BSD Linux based systems [RT#26724]
2008-06-17 Gisle Aas <gisle@ActiveState.com>
Release 5.813
Ville Skytta (3):
RobotUA constructor ignores delay, use_sleep [RT#35456]
Spelling fixes [RT#35457]
Add HTTP::Response->filename [RT#35458]
Mark Stosberg (2):
Better diagnostics when the HTML::TokeParser constructor
fails [RT#35607]
Multiple forms with same-named <select> parse wrongly [RT#35607]
Gisle Aas (1):
Provide a progress method that does something that might be useful.
Spiros Denaxas (1):
Documentation typo fix [RT#36132]
Diffstat (limited to 'www/p5-libwww')
-rw-r--r-- | www/p5-libwww/patches/patch-aa | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/www/p5-libwww/patches/patch-aa b/www/p5-libwww/patches/patch-aa deleted file mode 100644 index 020480bb63d..00000000000 --- a/www/p5-libwww/patches/patch-aa +++ /dev/null @@ -1,38 +0,0 @@ -$NetBSD: patch-aa,v 1.5 2007/11/24 16:17:47 adrianp Exp $ - ---- Makefile.PL.orig 2007-07-19 21:45:32.000000000 +0100 -+++ Makefile.PL 2007-11-23 08:42:49.000000000 +0000 -@@ -56,13 +56,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, -- ); -+# require IO::Socket; -+# my $s = IO::Socket::INET->new(PeerAddr => "www.google.com:80", -+# Timeout => 10, -+# ); -+ -+ my $s = 0; -+ - if ($s) { - # XXX could try to send a GET to it??? -- close($s); -+# close($s); - - print <<EOT; - -@@ -128,7 +131,10 @@ - EOT - my @tmp; - for my $alias (@request_aliases) { -- my $default = "n"; -+ my $default = "y"; -+ if ($ENV{"INSTALL_ALIASES"} eq "no") { -+ $default = "n"; -+ } - if (prompt("Do you want to install the $alias alias?", $default) =~ /^y/) { - push(@tmp, $alias); - } |