diff options
author | Doug Barton <dougb@FreeBSD.org> | 2002-08-07 00:17:06 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2002-08-07 00:17:06 +0000 |
commit | 13f554ed429b1e783b3e90a707ad0cb62b267a4f (patch) | |
tree | b0d7310f73b0e1e2e502e2388d3c207d32c05fc6 /net/p5-Net-DNS | |
parent | Update to 0.7.4 (diff) |
Upgrade to 0.26, which has fixes for the test suite, and the AUTOLOAD
bug that I found when running this code under perl 5.005.
Notes
Notes:
svn path=/head/; revision=64126
Diffstat (limited to 'net/p5-Net-DNS')
-rw-r--r-- | net/p5-Net-DNS/Makefile | 2 | ||||
-rw-r--r-- | net/p5-Net-DNS/distinfo | 2 | ||||
-rw-r--r-- | net/p5-Net-DNS/files/patch-Makefile.Pl | 25 |
3 files changed, 14 insertions, 15 deletions
diff --git a/net/p5-Net-DNS/Makefile b/net/p5-Net-DNS/Makefile index f3ee7c91d7c9..b22ebd821c48 100644 --- a/net/p5-Net-DNS/Makefile +++ b/net/p5-Net-DNS/Makefile @@ -6,7 +6,7 @@ # PORTNAME= Net-DNS -PORTVERSION= 0.25 +PORTVERSION= 0.26 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net diff --git a/net/p5-Net-DNS/distinfo b/net/p5-Net-DNS/distinfo index 597cf61cb06a..084d92df18da 100644 --- a/net/p5-Net-DNS/distinfo +++ b/net/p5-Net-DNS/distinfo @@ -1 +1 @@ -MD5 (Net-DNS-0.25.tar.gz) = 218e7f2cd45d16baee9672ac5d7be454 +MD5 (Net-DNS-0.26.tar.gz) = deea94a4762fa6273be157d3af5ec162 diff --git a/net/p5-Net-DNS/files/patch-Makefile.Pl b/net/p5-Net-DNS/files/patch-Makefile.Pl index a2ece0b730d8..c17b347217f6 100644 --- a/net/p5-Net-DNS/files/patch-Makefile.Pl +++ b/net/p5-Net-DNS/files/patch-Makefile.Pl @@ -1,15 +1,20 @@ ---- Makefile.PL.Dist Thu Aug 1 02:57:10 2002 -+++ Makefile.PL Sun Aug 4 18:27:55 2002 +--- Makefile.PL.orig Mon Aug 5 13:06:55 2002 ++++ Makefile.PL Tue Aug 6 17:09:56 2002 @@ -13,29 +13,29 @@ - # Check if we have internet connection - # (I lifted this code from LWP... many thanks for this and more!) + # Check if we have internet connection + # (I lifted this code from LWP... many thanks for this and more!) -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, ++#); + -if ($s) { - close($s); - @@ -24,15 +29,9 @@ - open(ENABLED, ">t/online.enabled") || die "Can't touch ./t/online.enabled $!"; - close(ENABLED); - } else { -- unlink("t/online.enabled"); # just to shure... +- unlink("t/online.enabled"); # just to be shure... - } -} -+#require IO::Socket; -+#my $s = IO::Socket::INET->new( -+# PeerAddr => "www.google.com:80", -+# Timeout => 10, -+#); -+# +#if ($s) { +# close($s); +# @@ -47,7 +46,7 @@ +# open(ENABLED, ">t/online.enabled") || die "Can't touch ./t/online.enabled $!"; +# close(ENABLED); +# } else { -+# unlink("t/online.enabled"); # just to shure... ++# unlink("t/online.enabled"); # just to be shure... +# } +#} |