2004-09-09 10:13:39 +00:00
|
|
|
Name: perl-Net-DNS
|
2009-09-17 15:36:57 +00:00
|
|
|
Version: 0.65
|
2009-12-07 20:54:56 +00:00
|
|
|
Release: 2%{?dist}
|
2005-04-09 10:02:08 +00:00
|
|
|
Summary: DNS resolver modules for Perl
|
2007-10-24 16:11:09 +00:00
|
|
|
License: GPL+ or Artistic
|
2004-09-09 10:13:39 +00:00
|
|
|
Group: Development/Libraries
|
2005-04-02 11:43:18 +00:00
|
|
|
URL: http://www.net-dns.org/
|
2005-04-09 10:02:08 +00:00
|
|
|
Source0: http://www.cpan.org/authors/id/O/OL/OLAF/Net-DNS-%{version}.tar.gz
|
2007-08-10 04:18:22 +00:00
|
|
|
BuildRequires: perl(Digest::HMAC), perl(ExtUtils::MakeMaker), perl(Test::More), perl(Net::IP)
|
2007-12-14 16:58:38 +00:00
|
|
|
BuildRequires: perl(Test::Pod)
|
|
|
|
BuildRequires: perl(Digest::BubbleBabble)
|
2004-10-11 21:31:14 +00:00
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
2007-04-05 17:28:53 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2004-09-09 10:13:39 +00:00
|
|
|
|
2007-12-14 16:58:38 +00:00
|
|
|
|
2004-09-09 10:13:39 +00:00
|
|
|
%description
|
2004-09-09 10:13:42 +00:00
|
|
|
Net::DNS is a collection of Perl modules that act as a Domain Name
|
|
|
|
System (DNS) resolver. It allows the programmer to perform DNS queries
|
|
|
|
that are beyond the capabilities of gethostbyname and gethostbyaddr.
|
|
|
|
|
|
|
|
The programmer should be somewhat familiar with the format of a DNS
|
|
|
|
packet and its various sections. See RFC 1035 or DNS and BIND (Albitz
|
|
|
|
& Liu) for details.
|
|
|
|
|
2007-12-14 16:58:38 +00:00
|
|
|
|
|
|
|
%package Nameserver
|
|
|
|
Summary: DNS server for Perl
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
|
|
|
|
%description Nameserver
|
|
|
|
Instances of the "Net::DNS::Nameserver" class represent DNS server
|
|
|
|
objects.
|
|
|
|
|
|
|
|
|
2004-09-09 10:13:39 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n Net-DNS-%{version}
|
|
|
|
|
|
|
|
%build
|
2005-04-09 10:02:08 +00:00
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor --no-online-tests
|
|
|
|
make %{?_smp_mflags} OPTIMIZE="$RPM_OPT_FLAGS"
|
2004-09-09 10:13:39 +00:00
|
|
|
|
2004-10-11 21:31:14 +00:00
|
|
|
%install
|
2004-09-09 10:13:39 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2005-04-09 10:02:08 +00:00
|
|
|
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
|
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
|
|
|
find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
|
2007-12-21 14:01:41 +00:00
|
|
|
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
|
2005-04-09 10:02:08 +00:00
|
|
|
chmod -R u+w $RPM_BUILD_ROOT/*
|
|
|
|
|
2007-10-24 16:11:09 +00:00
|
|
|
for i in Changes; do
|
|
|
|
/usr/bin/iconv -f iso8859-1 -t utf-8 $i > $i.conv && /bin/mv -f $i.conv $i
|
|
|
|
done
|
|
|
|
|
2005-04-09 10:02:08 +00:00
|
|
|
%check
|
|
|
|
make test
|
2004-09-09 10:13:39 +00:00
|
|
|
|
2005-04-02 11:43:18 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2004-09-09 10:13:39 +00:00
|
|
|
|
2005-04-02 11:43:18 +00:00
|
|
|
%files
|
2004-09-09 10:13:39 +00:00
|
|
|
%defattr(-,root,root)
|
2007-08-10 03:54:00 +00:00
|
|
|
%doc README Changes TODO
|
2005-04-02 11:43:18 +00:00
|
|
|
%{perl_vendorarch}/Net/
|
2005-04-09 10:02:08 +00:00
|
|
|
%exclude %{perl_vendorarch}/Net/DNS/Resolver/Cygwin.pm
|
|
|
|
%exclude %{perl_vendorarch}/Net/DNS/Resolver/Win32.pm
|
2005-04-02 11:43:18 +00:00
|
|
|
%{perl_vendorarch}/auto/Net/
|
2005-04-09 10:02:08 +00:00
|
|
|
%{_mandir}/man3/Net::DNS*.3*
|
|
|
|
%exclude %{_mandir}/man3/Net::DNS::Resolver::Cygwin.3*
|
|
|
|
%exclude %{_mandir}/man3/Net::DNS::Resolver::Win32.3*
|
2004-09-09 10:13:39 +00:00
|
|
|
|
2007-12-14 16:58:38 +00:00
|
|
|
# perl-Net-DNS-Nameserver
|
|
|
|
%exclude %{perl_vendorarch}/Net/DNS/Nameserver.pm
|
|
|
|
%exclude %{_mandir}/man3/Net::DNS::Nameserver*
|
|
|
|
|
|
|
|
%files Nameserver
|
2007-12-21 14:01:41 +00:00
|
|
|
%defattr(-,root,root)
|
2007-12-14 16:58:38 +00:00
|
|
|
%{perl_vendorarch}/Net/DNS/Nameserver.pm
|
|
|
|
%{_mandir}/man3/Net::DNS::Nameserver*
|
|
|
|
|
|
|
|
|
2004-09-09 10:13:39 +00:00
|
|
|
%changelog
|
2009-12-07 20:54:56 +00:00
|
|
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.65-2
|
|
|
|
- rebuild against perl 5.10.1
|
|
|
|
|
2009-09-17 15:36:57 +00:00
|
|
|
* Thu Sep 17 2009 Warren Togami <wtogami@redhat.com> - 0.65-1
|
|
|
|
- 0.65
|
|
|
|
|
2009-07-26 13:39:41 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.63-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-26 23:03:05 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.63-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-05-12 09:54:37 +00:00
|
|
|
* Mon May 12 2008 Marcela Maslanova <mmaslano@redhat.com> - 0.63-4
|
|
|
|
- 437681 remove previous patch and use upstream patch, which should solve
|
|
|
|
all problems with noisy logs.
|
|
|
|
|
2008-04-09 14:54:20 +00:00
|
|
|
* Wed Apr 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.63-3
|
|
|
|
- fix patch to not require Socket6
|
|
|
|
|
2008-04-09 14:36:32 +00:00
|
|
|
* Wed Apr 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.63-2
|
|
|
|
- fix AF_INET6/PF_INET6 redefine noise (bz 437681)
|
|
|
|
|
2008-03-19 09:09:14 +00:00
|
|
|
* Wed Mar 19 2008 Marcela Maslanova <mmaslano@redhat.com> - 0.63-1
|
|
|
|
- upgrade on new upstream version which fix CVE-2007-6341 - no security impact.
|
|
|
|
|
2008-03-02 15:57:58 +00:00
|
|
|
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.61-7
|
|
|
|
- Rebuild for perl 5.10 (again)
|
|
|
|
|
2008-02-19 22:07:34 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.61-6
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-02-01 03:34:05 +00:00
|
|
|
* Thu Jan 31 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.61-5
|
|
|
|
- rebuild for new perl
|
|
|
|
|
2007-12-21 14:01:41 +00:00
|
|
|
* Fri Dec 21 2007 Paul Howarth <paul@city-fan.org> - 0.61-4
|
|
|
|
- Fix file ownership for Nameserver subpackage
|
|
|
|
- Fix argument order for find with -depth
|
|
|
|
|
2007-12-14 16:58:38 +00:00
|
|
|
* Fri Dec 14 2007 Robin Norwood <rnorwood@redhat.com> - 0.61-3
|
|
|
|
- Split Nameserver.pm into subpackage, per recommendation from
|
|
|
|
upstream maintainer Dick Franks.
|
|
|
|
- Separates the server bits from the client bits.
|
|
|
|
- Removes the dependancy on perl(Net::IP) from perl-Net-DNS
|
|
|
|
- Add BR for perl(Test::Pod) and perl(Digest::BubbleBabble)
|
|
|
|
|
2007-10-24 16:11:09 +00:00
|
|
|
* Wed Oct 24 2007 Robin Norwood <rnorwood@redhat.com> - 0.61-2
|
|
|
|
- Update license tag
|
|
|
|
- Convert Changes to utf-8
|
|
|
|
|
2007-08-10 03:54:00 +00:00
|
|
|
* Thu Aug 09 2007 Robin Norwood <rnorwood@redhat.com> - 0.61-1
|
|
|
|
- Update to latest upstream version
|
|
|
|
|
2007-06-23 14:03:13 +00:00
|
|
|
* Sat Jun 23 2007 Robin Norwood <rnorwood@redhat.com> - 0.60-1
|
|
|
|
- Upgrade to latest upstream version - 0.60
|
|
|
|
|
2007-04-05 17:28:53 +00:00
|
|
|
* Thu Apr 05 2007 Robin Norwood <rnorwood@redhat.com> - 0.59-2
|
|
|
|
- Resolves: bz#226270
|
|
|
|
- Fixed issues brought up during package review
|
|
|
|
- BuildRequires should not require perl, and fixed the format.
|
|
|
|
- Fixed the BuildRoot
|
|
|
|
|
2006-09-28 01:26:23 +00:00
|
|
|
* Wed Sep 27 2006 Robin Norwood <rnorwood@redhat.com> - 0.59-1
|
|
|
|
- Upgrade to upstream version 0.59 per bug #208315
|
|
|
|
|
2006-07-17 20:10:44 +00:00
|
|
|
* Mon Jul 17 2006 Jason Vas Dias <jvdias@redhat.com> - 0.58-1.fc6
|
|
|
|
- Upgrade to upstream version 0.58
|
|
|
|
|
2006-07-12 07:46:40 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.57-1.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-03-08 23:24:54 +00:00
|
|
|
* Wed Mar 08 2006 Jason Vas Dias <jvdias@redhat.com> - 0.57-1
|
|
|
|
- Upgrade to upstream version 0.57
|
|
|
|
|
2006-02-11 05:05:41 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.55-1.1.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 13:27:47 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.55-1.1.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-02-03 19:54:40 +00:00
|
|
|
* Fri Feb 03 2006 Jason Vas Dias <jvdias@redhat.com> - 0.55-1.1
|
|
|
|
- rebuild for new perl-5.8.8
|
|
|
|
|
2005-12-19 18:15:10 +00:00
|
|
|
* Mon Dec 19 2005 Jason Vas Dias <jvdias@redhat.com> - 0.55-1
|
|
|
|
- Upgrade to upstream version 0.55
|
|
|
|
|
2005-12-17 02:13:39 +00:00
|
|
|
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt for new gcc
|
|
|
|
|
2005-12-16 23:23:23 +00:00
|
|
|
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt for new gcj
|
|
|
|
|
2005-10-31 18:37:06 +00:00
|
|
|
* Sun Oct 30 2005 Warren Togami <wtogami@redhat.com> - 0.53-1
|
2005-10-31 18:59:18 +00:00
|
|
|
- 0.53 buildreq perl-Net-IP
|
2005-10-31 18:37:06 +00:00
|
|
|
|
2005-04-09 10:02:08 +00:00
|
|
|
* Sat Apr 9 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.49-2
|
|
|
|
- Explicitly disable tests requiring network access at build time.
|
|
|
|
- Exclude Win32 and Cygwin specific modules.
|
|
|
|
- More specfile cleanups.
|
|
|
|
- Honor $RPM_OPT_FLAGS.
|
|
|
|
|
2005-04-02 11:43:18 +00:00
|
|
|
* Sat Apr 02 2005 Robert Scheck <redhat@linuxnetz.de> 0.49-1
|
|
|
|
- upgrade to 0.49 and spec file cleanup (#153186)
|
2005-03-31 09:28:26 +00:00
|
|
|
|
2005-03-17 19:29:12 +00:00
|
|
|
* Thu Mar 17 2005 Warren Togami <wtogami@redhat.com> 0.48-3
|
|
|
|
- reinclude ia64, thanks jvdias
|
|
|
|
|
2005-03-16 05:04:15 +00:00
|
|
|
* Tue Mar 15 2005 Warren Togami <wtogami@redhat.com> 0.48-2
|
|
|
|
- exclude ia64 for now due to Bug #151127
|
2005-03-15 00:36:38 +00:00
|
|
|
|
2004-10-11 21:31:14 +00:00
|
|
|
* Mon Oct 11 2004 Warren Togami <wtogami@redhat.com> 0.48-1
|
|
|
|
- #119983 0.48 fixes bugs
|
|
|
|
|
2004-09-22 14:21:35 +00:00
|
|
|
* Wed Sep 22 2004 Chip Turner <cturner@redhat.com> 0.45-4
|
|
|
|
- rebuild
|
|
|
|
|
2004-09-09 10:15:50 +00:00
|
|
|
* Thu Apr 29 2004 Chip Turner <cturner@redhat.com> 0.45-3
|
|
|
|
- fix bug 122039 -- add filter-depends.sh to remove Win32 deps
|
|
|
|
|
|
|
|
* Fri Apr 23 2004 Chip Turner <cturner@redhat.com> 0.45-1
|
|
|
|
- bump, no longer noarch
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Chip Turner <cturner@redhat.com> 0.45-1
|
|
|
|
- update to 0.45
|
|
|
|
|
2004-09-09 10:14:46 +00:00
|
|
|
* Mon Oct 20 2003 Chip Turner <cturner@redhat.com> 0.31-3.2
|
|
|
|
- fix interactive build issue
|
|
|
|
|
2004-09-09 10:13:52 +00:00
|
|
|
* Mon Jan 27 2003 Chip Turner <cturner@redhat.com>
|
|
|
|
- version bump and rebuild
|
|
|
|
|
|
|
|
* Tue Dec 10 2002 Chip Turner <cturner@redhat.com>
|
|
|
|
- update to latest version from CPAN
|
|
|
|
|
2004-09-09 10:13:42 +00:00
|
|
|
* Tue Aug 6 2002 Chip Turner <cturner@redhat.com>
|
|
|
|
- automated release bump and build
|
|
|
|
|
|
|
|
* Tue Aug 6 2002 Chip Turner <cturner@localhost.localdomain>
|
|
|
|
- update to 0.26
|
|
|
|
|
|
|
|
* Thu Jun 27 2002 Chip Turner <cturner@redhat.com>
|
|
|
|
- description update
|
|
|
|
|
2004-09-09 10:13:39 +00:00
|
|
|
* Sat Jun 15 2002 cturner@redhat.com
|
|
|
|
- Specfile autogenerated
|
|
|
|
|