Thu Dec 6 13:09:04 2012 UTC ()
Update to 0.69

Upstream changes:
**** 0.69 Dec 5, 2012

Feature added support for NID L32 L64 LP, RFC6742.

Feature rt.cpan.org #62030

	Parsing of BIND zone files implemented in Net::DNS::ZoneFile.
	This replaces and is backward compatible with the CPAN module
	of the same name.

Enhancement to simplify RR subtype template and recode packages.

Enhancement rt.cpan.org #75185

	Packet decoder returns index to end of decoded data.

	Added packet->reply() method.

Fix rt.cpan.org #79569

	AXFR not setting packet->answer_from.

Enhancement rt.cpan.org #18819

	Added support for Unicode and non-ASCII character encoding.

Feature integrate OPT as a header extension

	Treat extended rcodes and the DO flag like they are part of
	the packet header.

Fix rt.cpan.org #77444

	Support escaped characters according to RFC1035 in TXT rdata.

Fix rt.cpan.org #77304

	Fix resolver searchlist from registry setup on Win32.

Enhancement rt.cpan.org #67570

	Make wire2presentation two till eighteen times faster.
	A contribution from Matthew Horsfall

Fix rt.cpan.org #73366

	Remove existing TSIG when resigning with a new TSIG and give warning.

Fix rt.cpan.org #75330

	Also try nameserver without glue (as a last resort) when recursing.

Fix rt.cpan.org #74493

	Read correct resolver configuration in OS/2.


(wen)
diff -r1.48 -r1.49 pkgsrc/net/p5-Net-DNS/Makefile
diff -r1.24 -r1.25 pkgsrc/net/p5-Net-DNS/distinfo

cvs diff -r1.48 -r1.49 pkgsrc/net/p5-Net-DNS/Makefile (switch to unified diff)

--- pkgsrc/net/p5-Net-DNS/Makefile 2012/10/23 17:18:47 1.48
+++ pkgsrc/net/p5-Net-DNS/Makefile 2012/12/06 13:09:04 1.49
@@ -1,48 +1,48 @@ @@ -1,48 +1,48 @@
1# $NetBSD: Makefile,v 1.48 2012/10/23 17:18:47 asau Exp $ 1# $NetBSD: Makefile,v 1.49 2012/12/06 13:09:04 wen Exp $
2 2
3DISTNAME= Net-DNS-0.68 3DISTNAME= Net-DNS-0.69
4PKGNAME= p5-${DISTNAME} 4PKGNAME= p5-${DISTNAME}
5SVR4_PKGNAME= p5ndn 5SVR4_PKGNAME= p5ndn
6CATEGORIES= net perl5 6CATEGORIES= net perl5
7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/} \ 7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/} \
8 http://www.net-dns.org/download/ 8 http://www.net-dns.org/download/
9 9
10MAINTAINER= heinz@NetBSD.org 10MAINTAINER= heinz@NetBSD.org
11HOMEPAGE= http://www.net-dns.org/ 11HOMEPAGE= http://www.net-dns.org/
12COMMENT= Perl5 module for DNS resolution 12COMMENT= Perl5 module for DNS resolution
13LICENSE= ${PERL5_LICENSE} 13LICENSE= ${PERL5_LICENSE}
14 14
15PKG_INSTALLATION_TYPES= overwrite pkgviews 15PKG_INSTALLATION_TYPES= overwrite pkgviews
16 16
17BUILD_DEPENDS+= {p5-Test-Simple>=0.44,perl{,-thread}>=5.8.0}:../../devel/p5-Test-Simple 17BUILD_DEPENDS+= {p5-Test-Simple>=0.44,perl{,-thread}>=5.8.0}:../../devel/p5-Test-Simple
18DEPENDS+= p5-Digest-HMAC>=1.0:../../security/p5-Digest-HMAC 18DEPENDS+= p5-Digest-HMAC>=1.0:../../security/p5-Digest-HMAC
19DEPENDS+= p5-Digest-MD5>=2.12:../../security/p5-Digest-MD5 19DEPENDS+= p5-Digest-MD5>=2.12:../../security/p5-Digest-MD5
20DEPENDS+= p5-MIME-Base64>=2.11:../../converters/p5-MIME-Base64 20DEPENDS+= p5-MIME-Base64>=2.11:../../converters/p5-MIME-Base64
21DEPENDS+= p5-Net-IP>=1.20:../../net/p5-Net-IP 21DEPENDS+= p5-Net-IP>=1.20:../../net/p5-Net-IP
22 22
23PKG_OPTIONS_VAR= PKG_OPTIONS.p5-Net-DNS 23PKG_OPTIONS_VAR= PKG_OPTIONS.p5-Net-DNS
24PKG_SUPPORTED_OPTIONS= inet6 online-tests 24PKG_SUPPORTED_OPTIONS= inet6 online-tests
25PKG_SUGGESTED_OPTIONS= inet6 25PKG_SUGGESTED_OPTIONS= inet6
26 26
27.include "../../mk/bsd.options.mk" 27.include "../../mk/bsd.options.mk"
28 28
29.if !empty(PKG_OPTIONS:Minet6) 29.if !empty(PKG_OPTIONS:Minet6)
30DEPENDS+= p5-IO-Socket-INET6>=2.01:../../net/p5-IO-Socket-INET6 30DEPENDS+= p5-IO-Socket-INET6>=2.01:../../net/p5-IO-Socket-INET6
31DEPENDS+= p5-Socket6-[0-9]*:../../net/p5-Socket6 31DEPENDS+= p5-Socket6-[0-9]*:../../net/p5-Socket6
32MAKE_PARAMS+= --IPv6-tests 32MAKE_PARAMS+= --IPv6-tests
33.else 33.else
34MAKE_PARAMS+= --no-IPv6-tests 34MAKE_PARAMS+= --no-IPv6-tests
35.endif 35.endif
36 36
37.if !empty(PKG_OPTIONS:Monline-tests) 37.if !empty(PKG_OPTIONS:Monline-tests)
38MAKE_PARAMS+= --online-tests 38MAKE_PARAMS+= --online-tests
39.else 39.else
40MAKE_PARAMS+= --no-online-tests 40MAKE_PARAMS+= --no-online-tests
41.endif 41.endif
42 42
43USE_LANGUAGES= c 43USE_LANGUAGES= c
44 44
45PERL5_PACKLIST= auto/Net/DNS/.packlist 45PERL5_PACKLIST= auto/Net/DNS/.packlist
46 46
47.include "../../lang/perl5/module.mk" 47.include "../../lang/perl5/module.mk"
48.include "../../mk/bsd.pkg.mk" 48.include "../../mk/bsd.pkg.mk"

cvs diff -r1.24 -r1.25 pkgsrc/net/p5-Net-DNS/distinfo (switch to unified diff)

--- pkgsrc/net/p5-Net-DNS/distinfo 2012/10/21 22:12:09 1.24
+++ pkgsrc/net/p5-Net-DNS/distinfo 2012/12/06 13:09:04 1.25
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.24 2012/10/21 22:12:09 wiz Exp $ 1$NetBSD: distinfo,v 1.25 2012/12/06 13:09:04 wen Exp $
2 2
3SHA1 (Net-DNS-0.68.tar.gz) = 4deaaa8ba6bca0cf0e248b4a3cc0383348349182 3SHA1 (Net-DNS-0.69.tar.gz) = 2c84cdbd121b6b50bf9528fe8f474bf0915e85c6
4RMD160 (Net-DNS-0.68.tar.gz) = 1c5201daa72ddb2d244bbb9a256ebe7ca1864f9c 4RMD160 (Net-DNS-0.69.tar.gz) = cae86f2c9589f5bac0d93199a2563bc4d6a34b46
5Size (Net-DNS-0.68.tar.gz) = 184715 bytes 5Size (Net-DNS-0.69.tar.gz) = 190234 bytes