diff options
author | heinz <heinz> | 2006-09-03 16:55:15 +0000 |
---|---|---|
committer | heinz <heinz> | 2006-09-03 16:55:15 +0000 |
commit | 9fd025bd1f62e2e7620ca48bf66ea176a94dd4ff (patch) | |
tree | 2cf6370838eb84a600feb67bee71369bb6fdfc50 /net | |
parent | 29f6df6e25abd3e54a447d690b35a8a833b636a1 (diff) | |
download | pkgsrc-9fd025bd1f62e2e7620ca48bf66ea176a94dd4ff.tar.gz |
Updated to version 0.58.
Pkgsrc changes:
- Added patch-ac to change the number of skipped online tests (still
incorrect).
Changes since version 0.57:
===========================
Feature: hooks for DLV support in Net::DNS::SEC
added hooks for DLV support which is/will be available in
Net::DNS::SEC as of subversion version 592 (Tests are done agains
the subversion number, not against the perl release version)
Net::DNS::SEC version 0.15 will have DLV support.
Partly Fixed rt.cpan.org 18940
djhale noticed a number of error conditions under which de
udp_connection in Nameserver dies. We now print a warning instead
of dying.
Fix rt.cpan.org 18958
Fixed typebyname croak for SIGZERO. Acknowledgements to djhale.
Optimize rt.cpan.org 11931
Hanno Stock optimized the method to get the list of available
interfaces in Win32. I have only done very rudimentary tests on
my Windows XP system.
Fix dependency on "CC" rt.cpan.org 19352
The Makefile.PL depended on availabliltity of "cc" and would bail
out on systems where gcc is exclusivly available. Thanks to Rob
Windsor for noticing and patching.
Fix compressed dnames in NAPTR/SRV
Clayton O'Neill noted that the the domain names in in the NAPTR
and SRV RRs rdata were subject to name compression which is not
conform the specs. Also see RFC 2782 and 2915.
Fix rt.cpan.org 18897
Zero-length rdata in TXT fixed (Acknowledgements to Roy Arends)
Fix rt.cpan.org 18785
SPF would not work unless the TXT RR was not loaded first. No
wonder, SPF fully inherits TXT and loading of TXT.pm is therefore a
prerequisit.
Fix rt.cpan.org 18713
Net::DNS::Resolver now deals gracefully with persistent sockets
that got disconnected. It will first try to connect again to the
socket and if that fails it will try to connect to the next
available nameserver. tcp_timeout() is the parameter that
determines how long to wait during a reconnect.
Fix rt.cpan.org 18268
Added reference to RFC in croak message for label length > 63 in
dn_comp().
Fix rt.cpan.org 18113
The inet6 tests contained another bug when online-tests were disabled.
Klaus Heinz discovered and provided a patch.
Diffstat (limited to 'net')
-rw-r--r-- | net/p5-Net-DNS/Makefile | 4 | ||||
-rw-r--r-- | net/p5-Net-DNS/distinfo | 9 | ||||
-rw-r--r-- | net/p5-Net-DNS/patches/patch-ac | 13 |
3 files changed, 20 insertions, 6 deletions
diff --git a/net/p5-Net-DNS/Makefile b/net/p5-Net-DNS/Makefile index e4add9787ba..e13128ed597 100644 --- a/net/p5-Net-DNS/Makefile +++ b/net/p5-Net-DNS/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.31 2006/03/12 00:10:16 heinz Exp $ +# $NetBSD: Makefile,v 1.32 2006/09/03 16:55:15 heinz Exp $ -DISTNAME= Net-DNS-0.57 +DISTNAME= Net-DNS-0.58 PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5ndn CATEGORIES= net perl5 diff --git a/net/p5-Net-DNS/distinfo b/net/p5-Net-DNS/distinfo index 952ac93fee4..f0d107afe28 100644 --- a/net/p5-Net-DNS/distinfo +++ b/net/p5-Net-DNS/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.15 2006/03/12 00:10:16 heinz Exp $ +$NetBSD: distinfo,v 1.16 2006/09/03 16:55:15 heinz Exp $ -SHA1 (Net-DNS-0.57.tar.gz) = 12623cf8c6b72850db06aee8fc0ce4e148b8d0dd -RMD160 (Net-DNS-0.57.tar.gz) = 04be1c23446b4fe70370ea215c6abe3c80fcf94d -Size (Net-DNS-0.57.tar.gz) = 131596 bytes +SHA1 (Net-DNS-0.58.tar.gz) = 3043df5d183efc58d04124e2a12dae6e6de7a1b3 +RMD160 (Net-DNS-0.58.tar.gz) = 2108deb3f39152a111cab0b38c8918c5a2e5f85e +Size (Net-DNS-0.58.tar.gz) = 136609 bytes +SHA1 (patch-ac) = cf0e64a343bc788b83124c5e762be40fdc9f3907 diff --git a/net/p5-Net-DNS/patches/patch-ac b/net/p5-Net-DNS/patches/patch-ac new file mode 100644 index 00000000000..c103a0684bd --- /dev/null +++ b/net/p5-Net-DNS/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2006/09/03 16:55:15 heinz Exp $ + +--- t/11-inet6.t.orig 2006-07-04 10:06:24.000000000 +0200 ++++ t/11-inet6.t +@@ -60,7 +60,7 @@ my $AAAA_address; + my $A_address; + + +-SKIP: { skip "online tests are not enabled", 2 unless -e 't/online.enabled'; ++SKIP: { skip "online tests are not enabled", 3 unless -e 't/online.enabled'; + + # First use the local resolver to query for the AAAA record of a + # well known nameserver, than use v6 transport to get to that record. |