update Net-DNS to 0.44
This commit is contained in:
parent
68b859f8a1
commit
8e0fc8a133
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.19 2003/06/30 12:27:09 wilfried Exp $
|
||||
# $OpenBSD: Makefile,v 1.20 2003/12/19 13:24:16 wilfried Exp $
|
||||
|
||||
COMMENT= 'module to interface the DNS resolver'
|
||||
|
||||
DISTNAME= Net-DNS-0.38
|
||||
DISTNAME= Net-DNS-0.44
|
||||
PKGNAME= p5-${DISTNAME}
|
||||
CATEGORIES= net perl5
|
||||
|
||||
@ -22,5 +22,6 @@ BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
RUN_DEPENDS= :p5-Digest-HMAC->=1.00:security/p5-Digest-HMAC
|
||||
|
||||
CONFIGURE_STYLE= perl
|
||||
CONFIGURE_ARGS= --online-tests
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (Net-DNS-0.38.tar.gz) = b33ebbd53029264816ca9fa894b59419
|
||||
RMD160 (Net-DNS-0.38.tar.gz) = aa01dec4e197512d2b3ced5fd8f8a18d1ae48e74
|
||||
SHA1 (Net-DNS-0.38.tar.gz) = d0b1e1879fc9599a55547ac8047272cce15dcabd
|
||||
MD5 (Net-DNS-0.44.tar.gz) = 88ac556d7686cee0c90bb2f3fe1bea3d
|
||||
RMD160 (Net-DNS-0.44.tar.gz) = 63fbb7e31faa87457e28ada688866afc0ccd0603
|
||||
SHA1 (Net-DNS-0.44.tar.gz) = 67c75fa1787e1e69ac82871adc7725c68c501330
|
||||
|
@ -1,25 +0,0 @@
|
||||
$OpenBSD: patch-Makefile_PL,v 1.2 2003/06/30 12:27:09 wilfried Exp $
|
||||
--- Makefile.PL.orig Fri Jun 6 01:42:58 2003
|
||||
+++ Makefile.PL Mon Jun 30 13:26:57 2003
|
||||
@@ -90,19 +90,8 @@ my $s = IO::Socket::INET->new(
|
||||
if ($s) {
|
||||
close($s);
|
||||
|
||||
- print <<EOT;
|
||||
-
|
||||
-You appear to be directly connected to the Internet. I have some tests
|
||||
-that try to query live nameservers.
|
||||
-
|
||||
-EOT
|
||||
-
|
||||
- if (prompt("Do you want to enable these tests?", "y") =~ /^y/i) {
|
||||
- open(ENABLED, ">t/online.enabled") || die "Can't touch ./t/online.enabled $!";
|
||||
- close(ENABLED);
|
||||
- } else {
|
||||
- unlink("t/online.enabled"); # just to be shure...
|
||||
- }
|
||||
+ open(ENABLED, ">t/online.enabled") || die "Can't touch ./t/online.enabled $!";
|
||||
+ close(ENABLED);
|
||||
} else {
|
||||
unlink("t/online.enabled"); # just to be shure...
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
@comment $OpenBSD: PLIST,v 1.11 2003/12/15 17:40:57 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.12 2003/12/19 13:24:16 wilfried Exp $
|
||||
${P5ARCH}/Net/DNS.pm
|
||||
${P5ARCH}/Net/DNS/FAQ.pod
|
||||
@comment ${P5ARCH}/Net/DNS/FAQ.pod
|
||||
${P5ARCH}/Net/DNS/Header.pm
|
||||
${P5ARCH}/Net/DNS/Nameserver.pm
|
||||
${P5ARCH}/Net/DNS/Packet.pm
|
||||
@ -36,15 +36,19 @@ ${P5ARCH}/Net/DNS/RR/SRV.pm
|
||||
${P5ARCH}/Net/DNS/RR/TKEY.pm
|
||||
${P5ARCH}/Net/DNS/RR/TSIG.pm
|
||||
${P5ARCH}/Net/DNS/RR/TXT.pm
|
||||
${P5ARCH}/Net/DNS/RR/Unknown.pm
|
||||
${P5ARCH}/Net/DNS/RR/X25.pm
|
||||
${P5ARCH}/Net/DNS/Resolver.pm
|
||||
${P5ARCH}/Net/DNS/Resolver/Base.pm
|
||||
${P5ARCH}/Net/DNS/Resolver/Cygwin.pm
|
||||
${P5ARCH}/Net/DNS/Resolver/Recurse.pm
|
||||
${P5ARCH}/Net/DNS/Resolver/UNIX.pm
|
||||
${P5ARCH}/Net/DNS/Resolver/Win32.pm
|
||||
${P5ARCH}/Net/DNS/Select.pm
|
||||
${P5ARCH}/Net/DNS/Update.pm
|
||||
@comment ${P5ARCH}/auto/Net/DNS/.packlist
|
||||
${P5ARCH}/auto/Net/DNS/DNS.bs
|
||||
${P5ARCH}/auto/Net/DNS/DNS.so
|
||||
@comment ${P5ARCH}/perllocal.pod
|
||||
man/man3p/Net::DNS.3p
|
||||
man/man3p/Net::DNS::FAQ.3p
|
||||
man/man3p/Net::DNS::Header.3p
|
||||
@ -82,9 +86,15 @@ man/man3p/Net::DNS::RR::SRV.3p
|
||||
man/man3p/Net::DNS::RR::TKEY.3p
|
||||
man/man3p/Net::DNS::RR::TSIG.3p
|
||||
man/man3p/Net::DNS::RR::TXT.3p
|
||||
man/man3p/Net::DNS::RR::Unknown.3p
|
||||
man/man3p/Net::DNS::RR::X25.3p
|
||||
man/man3p/Net::DNS::Resolver.3p
|
||||
man/man3p/Net::DNS::Resolver::Base.3p
|
||||
man/man3p/Net::DNS::Resolver::Cygwin.3p
|
||||
man/man3p/Net::DNS::Resolver::Recurse.3p
|
||||
man/man3p/Net::DNS::Resolver::UNIX.3p
|
||||
man/man3p/Net::DNS::Resolver::Win32.3p
|
||||
man/man3p/Net::DNS::Select.3p
|
||||
man/man3p/Net::DNS::Update.3p
|
||||
@dirrm man/man3p
|
||||
@dirrm ${P5ARCH}/auto/Net/DNS
|
||||
|
Loading…
Reference in New Issue
Block a user