summaryrefslogtreecommitdiff
path: root/dns/p5-Net-DNS
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2002-02-06 07:59:56 +0000
committerDoug Barton <dougb@FreeBSD.org>2002-02-06 07:59:56 +0000
commite4e46ecd08e3cdd98be6e9943cbda26e9d4cfd8a (patch)
tree172bb9eeb549563fb2535bc68c6f8cc25e747ad8 /dns/p5-Net-DNS
parentAdd java category. (diff)
* 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
Notes
Notes: svn path=/head/; revision=54257
Diffstat (limited to 'dns/p5-Net-DNS')
-rw-r--r--dns/p5-Net-DNS/Makefile5
-rw-r--r--dns/p5-Net-DNS/distinfo2
-rw-r--r--dns/p5-Net-DNS/files/patch-aa14
-rw-r--r--dns/p5-Net-DNS/pkg-descr50
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