pkgsrc/net/p5-Net-DNS/Makefile
wiz f7fc586499 Update to 0.68:
**** 0.68 Jan 30, 2012

Fix rt.cpan.org #72314

	Let a Net::DNS::Nameserver bind on Net::DNS::Nameserver::DEFAULT_ADDR
	as a last resort.

Fix to suppress false warnings about subroutine profiles on ancient
	versions of perl.

Fix to avoid constants with value undef which prevents unwanted code from being
	optimized away on ancient versions of perl.

Fix code error in PTR.pm, canonical RDATA not downcased.

Enhancement to clarify the function of parse and data methods, by renaming them
	to decode and encode respectively.

Feature IDN query support.

	Question.pm modified to use the recently introduced DomainName.pm
	module to represent DNS names.  Queries for domain names containing
	non-ASCII characters are now possible on Unicode platforms with CPAN
	Net::LibIDN installed.

Introduction of Mailbox.pm module that will be used in the future to represent
	RDATA components containing DNS coded RFC822 mailbox addresses.

Introduction of Text.pm module that will be used in the future to represent
	RDATA components containing text.


**** 0.67 Nov 4, 2011

Enhancement rt.cpan.org #60726

        On Cygwin Net::DNS now builds without Win32::IPHelper, unless a
        previous version is updated that did use it.
        The choice may also be set by the --iphelper or --noiphelper option
        to Makefile.PL.

Fix to suppress IO::Socket::INET(6)::peerhost usage with TCP. On some systems
        it doesn't work after receiving data.

Enhancement rt.cpan.org #43142

        Allow ReplyHandlers to indicate that no answer should be returned
        by the Net::DNS::Nameserver.

Fix rt.cpan.org #71796

	Prevent TCP accepts from blocking on unfinished 3-way handshakes.

Fix rt.cpan.org #65607

	Make 64bits windows work by depending on Win32::IPHelper version 0.07
	Thanks to Lian Wan Situ.

Fix rt.cpan.org #66470

	Named nameserver should be reachable by IPv6 too.

Fix to make tests work in jailed environments where a reply might come
	from a different address than that of the loopback interface.

Feature to use a class method ReplyHandler for classes inheriting from
	Net::DNS::Nameserver.

	A contribution from Rob Brown.

Fix rt.cpan.org #71062

	Replace the usage of the obsolete Win32::Registry module by
	Win32::TieRegistry module.

Fix rt.cpan.org #68731

	Fix linking of the C compiled parts of the library on Mac OS X

New improved version of the check_soa script in the contrib section.

	A contribution from Dick Franks.

Fix rt.cpan.org #70830

	Make t/08-online.t handle NXDOMAIN hijacking that return more then one
	answer.

Fix rt.cpan.org #24525

	Removed dependency on Net::IP

Fix online tests to use the library as documented and not use knowledge of the
	internal workings of the classes that should be hidden.

	A contribution from Dick Franks

Fix rt.cpan.org #55682
	Make online tests non-fatal by default.
	All interactive prompts are removed from Makefile.PL.
	Online tests may still be made a requisite by using the --online-tests
	option.

Major rework of Net::DNS::Domain.pm and the addition of Net::DNS::DomainName.pm

	Which paves the way towards handling of character encodings and IDN.
	A contribution from Dick Franks.

Fix rt.cpan.org #69174

	Typo that prevented TCP traffic from being replied from the same
	socket as it was received on.

Fix rt.cpan.org #68338

	Suppress warnings of the deprecated use of qw as parentheses in
	perl 5.14.

Enhancement rt.cpan.org #67418

	A contribution from Wolfsage to perform presentation to wire format
	conversion more efficiently.

Fix rt.cpan.org #67133

	Gracefully handle corrupted incoming packets in Net::DNS::Nameserver.

Feature to manage serial numbers in SOA records in a modular and extensible way.

	Three modules are provided. Strictly sequential, Date Encoded and
	Time Encoded.  A contribution from Dick Franks.

Fix rt.cpan.org #53325

	Make Net::DNS::Resolver load even if /etc/resolv.conf is unreadable.

Fix rt.cpan.org #63486

	Make t/08-online.t fail gracefully in stead of crash on failures.

Fix rt.cpan.org #55586

	Various typo fixes.

Fix rt.cpan.org #55682

	Really do not use networking functions when online tests are disabled.

Fix rt.cpan.org #64562

	Replace TSIG key with the signature of the whole packet when signing
	a packet, even when the TSIG key is not the first in the additional
	section.

Fix rt.cpan.org #56181 and #47265

	Assembly of segmented TCP traffic.

Feature rt.cpan.org #57289

	Provide a configurable IdleTimeout for Net::DNS::Namserver.

Fix rt.cpan.org #53595

	Fix documentation to reflect code behaviour where on successful packet
	creation, the error should be ignored.

Fix rt.cpan.org #58914

	Fix spelling of "algorithm"

Fix rt.cpan.org #61725

	Include default domain in the search list on Win32.
	Thanks Mark Rallen.

Fix rt.cpan.org #63321

	A Net::DNS::Nameserver without a NotifyHandler now responds NOTIMP
 	to NOTIFY requests.

Fix rt.cpan.org #53595

	Documentation now reflects Net::DNS::Packet construction behaviour.
2012-10-21 22:12:09 +00:00

49 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.47 2012/10/21 22:12:09 wiz Exp $
DISTNAME= Net-DNS-0.68
PKGNAME= p5-${DISTNAME}
SVR4_PKGNAME= p5ndn
CATEGORIES= net perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/} \
http://www.net-dns.org/download/
MAINTAINER= heinz@NetBSD.org
HOMEPAGE= http://www.net-dns.org/
COMMENT= Perl5 module for DNS resolution
LICENSE= ${PERL5_LICENSE}
PKG_INSTALLATION_TYPES= overwrite pkgviews
PKG_DESTDIR_SUPPORT= user-destdir
BUILD_DEPENDS+= {p5-Test-Simple>=0.44,perl{,-thread}>=5.8.0}:../../devel/p5-Test-Simple
DEPENDS+= p5-Digest-HMAC>=1.0:../../security/p5-Digest-HMAC
DEPENDS+= p5-Digest-MD5>=2.12:../../security/p5-Digest-MD5
DEPENDS+= p5-MIME-Base64>=2.11:../../converters/p5-MIME-Base64
DEPENDS+= p5-Net-IP>=1.20:../../net/p5-Net-IP
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-Net-DNS
PKG_SUPPORTED_OPTIONS= inet6 online-tests
PKG_SUGGESTED_OPTIONS= inet6
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Minet6)
DEPENDS+= p5-IO-Socket-INET6>=2.01:../../net/p5-IO-Socket-INET6
DEPENDS+= p5-Socket6-[0-9]*:../../net/p5-Socket6
MAKE_PARAMS+= --IPv6-tests
.else
MAKE_PARAMS+= --no-IPv6-tests
.endif
.if !empty(PKG_OPTIONS:Monline-tests)
MAKE_PARAMS+= --online-tests
.else
MAKE_PARAMS+= --no-online-tests
.endif
USE_LANGUAGES= c
PERL5_PACKLIST= auto/Net/DNS/.packlist
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"