diff options
author | dougb <dougb@FreeBSD.org> | 2002-02-06 15:59:56 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2002-02-06 15:59:56 +0800 |
commit | 5c5d3c4c5429dba2ce93dd8c6d60014117a9e13b (patch) | |
tree | 95c478fa224e68a6fc29f3df966166f99e5235e5 /dns/p5-Net-DNS | |
parent | 1fe9e773db272d0ae73589d061c7d576ec668b62 (diff) | |
download | freebsd-ports-gnome-5c5d3c4c5429dba2ce93dd8c6d60014117a9e13b.tar.gz freebsd-ports-gnome-5c5d3c4c5429dba2ce93dd8c6d60014117a9e13b.tar.zst freebsd-ports-gnome-5c5d3c4c5429dba2ce93dd8c6d60014117a9e13b.zip |
* Assume maintainership by agreement.
* Update to 0.14, which has only two changes:
- Fix the bug which we fixed with patch-aa
- Fix the "defined @array" line that trips
up perl 5.6.x
Diffstat (limited to 'dns/p5-Net-DNS')
-rw-r--r-- | dns/p5-Net-DNS/Makefile | 5 | ||||
-rw-r--r-- | dns/p5-Net-DNS/distinfo | 2 | ||||
-rw-r--r-- | dns/p5-Net-DNS/files/patch-aa | 14 | ||||
-rw-r--r-- | dns/p5-Net-DNS/pkg-descr | 50 |
4 files changed, 12 insertions, 59 deletions
diff --git a/dns/p5-Net-DNS/Makefile b/dns/p5-Net-DNS/Makefile index 393c2b182a78..6213e623e571 100644 --- a/dns/p5-Net-DNS/Makefile +++ b/dns/p5-Net-DNS/Makefile @@ -6,14 +6,13 @@ # PORTNAME= Net-DNS -PORTVERSION= 0.12 -PORTREVISION= 1 +PORTVERSION= 0.14 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net PKGNAMEPREFIX= p5- -MAINTAINER= demon@FreeBSD.org +MAINTAINER= DougB@FreeBSD.org PERL_CONFIGURE= yes diff --git a/dns/p5-Net-DNS/distinfo b/dns/p5-Net-DNS/distinfo index 215dc53d63d8..2d767496a812 100644 --- a/dns/p5-Net-DNS/distinfo +++ b/dns/p5-Net-DNS/distinfo @@ -1 +1 @@ -MD5 (Net-DNS-0.12.tar.gz) = 377e8a971e8f3e9daed32976142886df +MD5 (Net-DNS-0.14.tar.gz) = 23ff3111fe23b525422768dd0580c50d diff --git a/dns/p5-Net-DNS/files/patch-aa b/dns/p5-Net-DNS/files/patch-aa deleted file mode 100644 index 8fba787cc0bf..000000000000 --- a/dns/p5-Net-DNS/files/patch-aa +++ /dev/null @@ -1,14 +0,0 @@ ---- lib/Net/DNS/Resolver.pm.bak Thu Oct 2 09:32:14 1997 -+++ lib/Net/DNS/Resolver.pm Fri Dec 21 00:20:11 2001 -@@ -244,7 +244,10 @@ - } - - sub nextid { -- return $global{"id"}++; -+ if (++$global{"id"} > 65535) { -+ $global{"id"} = 0; -+ } -+ return $global{"id"}; - } - - =head2 searchlist diff --git a/dns/p5-Net-DNS/pkg-descr b/dns/p5-Net-DNS/pkg-descr index 9c055dcb935f..5c141a253b3d 100644 --- a/dns/p5-Net-DNS/pkg-descr +++ b/dns/p5-Net-DNS/pkg-descr @@ -1,44 +1,12 @@ - Net::DNS is a collection of Perl modules to interface with - the Domain Name System (DNS) resolver. It allows the - programmer to perform queries that are beyond the - capabilities of gethostbyname and gethostbyaddr. + Net::DNS is a collection of Perl modules to interface with + the Domain Name System (DNS) resolver. It allows the + programmer to perform queries that are beyond the + capabilities of gethostbyname and gethostbyaddr. - Resolver Objects + There are also methods for dealing with creating and + parsing dynamic updates packets. - A resolver object is an instance of the Net::DNS::Resolver - class. A program can have multiple resolver objects, each - maintaining its own state information such as the - nameservers to be queried, whether recursion is desired, - etc. +WWW: http://search.cpan.org/search?module=Net::DNS - Packet Objects - - Net::DNS::Resolver queries return Net::DNS::Packet - objects. Packet objects have five sections: - - o The header section, a Net::DNS::Header object. - - o The question section, a list of Net::DNS::Question - objects. - - o The answer section, a list of Net::DNS::RR objects. - - o The authority section, a list of Net::DNS::RR objects. - - o The additional section, a list of Net::DNS::RR objects. - - Header Objects - - Net::DNS::Header objects represent the header section of a - DNS packet. - - Question Objects - - Net::DNS::Question objects represent the query section of - a DNS packet. - - RR Objects - - Net::DNS::RR is the base class for DNS resource record - (RR) objects in the answer, authority, and additional - sections of a DNS packet. +- Doug Barton +DougB@FreeBSD.org |