12ba5a
Name:          perl-Net-DNS
12ba5a
Version:       1.15
12ba5a
Release:       1%{?dist}
12ba5a
Summary:       DNS resolver modules for Perl
12ba5a
# lib/Net/DNS/RR/RT.pm: GPL+ or Artistic
12ba5a
License:       (GPL+ or Artistic) and MIT
12ba5a
Group:         Development/Libraries
12ba5a
URL:           http://www.net-dns.org/
12ba5a
Source0:       http://search.cpan.org/CPAN/authors/id/N/NL/NLNETLABS/Net-DNS-%{version}.tar.gz
12ba5a
BuildArch:     noarch
12ba5a
# Build
12ba5a
BuildRequires: coreutils
12ba5a
BuildRequires: findutils
12ba5a
BuildRequires: glibc-common
12ba5a
BuildRequires: make
12ba5a
BuildRequires: sed
12ba5a
BuildRequires: perl-generators
12ba5a
BuildRequires: perl-interpreter
12ba5a
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
12ba5a
BuildRequires: perl(Getopt::Long)
12ba5a
BuildRequires: perl(IO::Socket)
12ba5a
# Runtime
12ba5a
BuildRequires: perl(base)
12ba5a
BuildRequires: perl(Carp)
12ba5a
# Config not used
12ba5a
BuildRequires: perl(constant)
12ba5a
BuildRequires: perl(Data::Dumper)
12ba5a
%if ! (0%{?rhel} >= 7)
12ba5a
# Digest::BubbleBabble is optional
12ba5a
BuildRequires: perl(Digest::BubbleBabble)
12ba5a
%endif
12ba5a
# Digest::GOST is optional and intentionally unavailable
12ba5a
# Digest::GOST::CryptoPro is optional and intentionally unavailable
12ba5a
BuildRequires: perl(Digest::HMAC) >= 1.03
12ba5a
BuildRequires: perl(Digest::MD5) >= 2.13
12ba5a
BuildRequires: perl(Digest::SHA) >= 5.23
12ba5a
BuildRequires: perl(Encode)
12ba5a
BuildRequires: perl(Exporter)
12ba5a
BuildRequires: perl(File::Spec)
12ba5a
BuildRequires: perl(FileHandle)
12ba5a
BuildRequires: perl(integer)
12ba5a
BuildRequires: perl(IO::File)
12ba5a
# IO::Select is not used
12ba5a
BuildRequires: perl(IO::Socket::INET)
12ba5a
# IO::Socket::INET6 is optional
12ba5a
BuildRequires: perl(MIME::Base64) >= 2.11
12ba5a
# Net::LibIDN is optional
12ba5a
# Net::LibIDN2 is optional
12ba5a
BuildRequires: perl(overload)
12ba5a
# PerlIO is optional
12ba5a
# Scalar::Util is optional
12ba5a
BuildRequires: perl(Socket)
12ba5a
BuildRequires: perl(strict)
12ba5a
BuildRequires: perl(Time::Local)
12ba5a
BuildRequires: perl(warnings)
12ba5a
# Win32::IPHelper is not needed
12ba5a
# Win32::TieRegistry is not needed
12ba5a
# Tests only
12ba5a
BuildRequires: perl(File::Find)
12ba5a
BuildRequires: perl(Test::Builder)
12ba5a
BuildRequires: perl(Test::More)
12ba5a
# Optional tests:
12ba5a
BuildRequires: perl(Test::Pod) >= 1.45
12ba5a
Requires:      perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
12ba5a
Requires:      perl(Data::Dumper)
12ba5a
Requires:      perl(Digest::HMAC) >= 1.03
12ba5a
Requires:      perl(Digest::MD5) >= 2.13
12ba5a
Requires:      perl(Digest::SHA) >= 5.23
12ba5a
Requires:      perl(Encode)
12ba5a
Requires:      perl(MIME::Base64) >= 2.11
12ba5a
12ba5a
%{?perl_default_filter}
12ba5a
12ba5a
# Do not export under-specified dependencies
12ba5a
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Digest::HMAC\\)$
12ba5a
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Digest::MD5\\)$
12ba5a
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Digest::SHA\\)$
12ba5a
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(MIME::Base64\\)$
12ba5a
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(CONFIG\\)$
12ba5a
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(OS_CONF\\)$
12ba5a
# Do not export under-specified provides
12ba5a
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\((Net::DNS::Text)\\)$
12ba5a
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\((Net::DNS::RR::OPT)\\)$
12ba5a
12ba5a
%description
12ba5a
Net::DNS is a collection of Perl modules that act as a Domain Name System
12ba5a
(DNS) resolver. It allows the programmer to perform DNS queries that are
12ba5a
beyond the capabilities of gethostbyname and gethostbyaddr.
12ba5a
12ba5a
The programmer should be somewhat familiar with the format of a DNS packet and
12ba5a
its various sections. See RFC 1035 or DNS and BIND (Albitz & Liu) for details.
12ba5a
12ba5a
%package Nameserver
12ba5a
Summary:        DNS server for Perl
12ba5a
Group:          Development/Libraries
12ba5a
License:        GPL+ or Artistic
12ba5a
12ba5a
%description Nameserver
12ba5a
Instances of the "Net::DNS::Nameserver" class represent DNS server objects.
12ba5a
12ba5a
%prep
12ba5a
%setup -q -n Net-DNS-%{version} 
12ba5a
chmod -x demo/*
12ba5a
sed -i -e '1 s,^#!/usr/local/bin/perl,#!%{__perl},' demo/*
12ba5a
for i in Changes; do
12ba5a
    iconv -f iso8859-1 -t utf-8 "$i" > "${i}.conv"
12ba5a
    touch -r "$i" "${i}.iconv"
12ba5a
    mv -f "${i}.conv" "$i"
12ba5a
done
12ba5a
12ba5a
%build
12ba5a
export PERL_MM_USE_DEFAULT=yes
12ba5a
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 --no-online-tests
12ba5a
make %{?_smp_mflags} OPTIMIZE="%{optflags}"
12ba5a
12ba5a
%install
12ba5a
make pure_install DESTDIR=%{buildroot}
12ba5a
find %{buildroot} -type f -name '*.bs' -a -size 0 -delete
12ba5a
chmod -R u+w %{buildroot}/*
12ba5a
12ba5a
%check
12ba5a
make test
12ba5a
12ba5a
%files
12ba5a
%doc README Changes demo
12ba5a
%{perl_vendorlib}/Net/
12ba5a
%exclude %{perl_vendorlib}/Net/DNS/Resolver/cygwin.pm
12ba5a
%exclude %{perl_vendorlib}/Net/DNS/Resolver/MSWin32.pm
12ba5a
%{_mandir}/man3/Net::DNS*.3*
12ba5a
%exclude %{_mandir}/man3/Net::DNS::Resolver::cygwin.3*
12ba5a
%exclude %{_mandir}/man3/Net::DNS::Resolver::MSWin32.3*
12ba5a
# perl-Net-DNS-Nameserver
12ba5a
%exclude %{perl_vendorlib}/Net/DNS/Nameserver.pm
12ba5a
%exclude %{_mandir}/man3/Net::DNS::Nameserver*
12ba5a
12ba5a
%files Nameserver
12ba5a
%{perl_vendorlib}/Net/DNS/Nameserver.pm
12ba5a
%{_mandir}/man3/Net::DNS::Nameserver*
12ba5a
12ba5a
%changelog
12ba5a
* Wed Feb 14 2018 Paul Wouters <pwouters@redhat.com> - 1.15
12ba5a
- Resolves rhbz#1544065 Update to 1.15 - Maintenance only
12ba5a
12ba5a
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.14-2
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
12ba5a
12ba5a
* Tue Dec 26 2017 Paul Wouters <pwouters@redhat.com> - 1.14-1
12ba5a
- Updated to 1.14
12ba5a
12ba5a
* Tue Oct 31 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.13-1
12ba5a
- Updated to 1.13
12ba5a
12ba5a
* Fri Aug 18 2017 Paul Wouters <pwouters@redhat.com> - 1.12-1
12ba5a
- Updated to 1.12
12ba5a
12ba5a
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-3
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
12ba5a
12ba5a
* Tue Jun 06 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.10-2
12ba5a
- Perl 5.26 rebuild
12ba5a
12ba5a
* Tue May 09 2017 Paul Wouters <pwouters@redhat.com> - 1.10-1
12ba5a
- Resolves: rhbz#1448614 perl-Net-DNS-1.10 is available
12ba5a
12ba5a
* Tue Apr 11 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-1
12ba5a
- 1.09 bump
12ba5a
12ba5a
* Tue Mar 21 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.08-1
12ba5a
- 1.08 bump
12ba5a
12ba5a
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.07-2
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
12ba5a
12ba5a
* Sun Jan 01 2017 Paul Wouters <pwouters@redhat.com> - 1.07-1
12ba5a
- Update to 1.07 (Net::DNS::Nameserver EDNS reply fixes, Net::DNS::Zonefile parse fixes)
12ba5a
12ba5a
* Wed Jun 01 2016 Paul Wouters <pwouters@redhat.com> - 1.06-3
12ba5a
- Remove dependancy on perl-Net-DNS-SEC (required code was moved in here)
12ba5a
12ba5a
* Tue May 31 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.06-2
12ba5a
- Remove OS_CONF from requires
12ba5a
12ba5a
* Mon May 30 2016 Paul Wouters <pwouters@redhat.com> - 1.06-1
12ba5a
- Update to 1.06 (rhbz#1315525)
12ba5a
12ba5a
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.04-5
12ba5a
- Perl 5.24 re-rebuild of bootstrapped packages
12ba5a
12ba5a
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.04-4
12ba5a
- Perl 5.24 rebuild
12ba5a
12ba5a
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.04-3
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
12ba5a
12ba5a
* Thu Dec 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.04-2
12ba5a
- Filter perl(CONFIG) from requires
12ba5a
12ba5a
* Thu Dec 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.04-1
12ba5a
- 1.04 bump
12ba5a
12ba5a
* Tue Oct 20 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.02-1
12ba5a
- 1.02 bump
12ba5a
12ba5a
* Mon Sep 21 2015 Petr Pisar <ppisar@redhat.com> - 1.01-3
12ba5a
- Build-require Time::Local (bug #1264751)
12ba5a
12ba5a
* Tue Sep 01 2015 Petr Pisar <ppisar@redhat.com> - 1.01-2
12ba5a
- Break build cycle: perl-Net-DNS-SEC → perl-Net-DNS → perl-Net-DNS-SEC
12ba5a
12ba5a
* Fri Aug 07 2015 Petr Šabata <contyk@redhat.com> - 1.01-1
12ba5a
- 1.01 bump
12ba5a
- The package is now noarch as the binary bits were dropped
12ba5a
- Furthermore, the license was changed to Perl and MIT
12ba5a
12ba5a
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.83-3
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
12ba5a
12ba5a
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.83-2
12ba5a
- Perl 5.22 rebuild
12ba5a
12ba5a
* Fri Feb 27 2015 Petr Šabata <contyk@redhat.com> - 0.83-1
12ba5a
- 0.83 bump
12ba5a
- Correct the dependency list
12ba5a
- Modernize the spec a bit
12ba5a
12ba5a
* Tue Jan 20 2015 Paul Wouters <pwouters@redhat.com> - 0.82-1
12ba5a
- Updated to 0.82 Support for IPv6 link-local addresses with scope_id
12ba5a
12ba5a
* Wed Oct 29 2014 Paul Wouters <pwouters@redhat.com> - 0.81-1
12ba5a
- Updated to 0.81, Fixes AXFR BADSIG and infinite recursion in Net::DNS::Resolver
12ba5a
- Resolves rhbz#1151572
12ba5a
12ba5a
* Mon Sep 22 2014 Paul Wouters <pwouters@redhat.com> - 0.80-1
12ba5a
- Updated to 0.80 with "Too late to run INIT block" fix and new force_v6 option
12ba5a
12ba5a
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.79-2
12ba5a
- Perl 5.20 rebuild
12ba5a
12ba5a
* Sun Aug 24 2014 Paul Wouters <pwouters@redhat.com> - 0.79-1
12ba5a
- Updated to 0.79 with OPENPGPKEY RRtype support
12ba5a
12ba5a
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.78-2
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
12ba5a
12ba5a
* Sat Jul 12 2014 Paul Wouters <pwouters@redhat.com> - 0.78-1
12ba5a
- Updated to 0.78, various bugfixes and multiline TXT rdata printing support
12ba5a
12ba5a
* Sat Jun 14 2014 Paul Wouters <pwouters@redhat.com> - 0.77-1
12ba5a
- Updated to 0.77, a "quickfix release" fixing AXFR support
12ba5a
12ba5a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.76-2
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
12ba5a
12ba5a
* Tue May 27 2014 Petr Šabata <contyk@redhat.com> - 0.76-1
12ba5a
- More fixes related to spamassassin
12ba5a
12ba5a
* Fri May 23 2014 Petr Šabata <contyk@redhat.com> - 0.75_1-1
12ba5a
- Update to the latest development release, fixing a number of
12ba5a
  regressions introduced with 0.75
12ba5a
12ba5a
* Mon May 12 2014 Petr Šabata <contyk@redhat.com> - 0.75-1
12ba5a
- 0.75 bump
12ba5a
12ba5a
* Mon Jan 20 2014 Petr Šabata <contyk@redhat.com> - 0.74-1
12ba5a
- 0.74 bump, fixes the server crash on malformed queries
12ba5a
12ba5a
* Fri Nov 29 2013 Paul Wouters <pwouters@redhat.com> - 0.73-1
12ba5a
- Updated to 0.73
12ba5a
12ba5a
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.72-6
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
12ba5a
12ba5a
* Tue Jul 30 2013 Petr Pisar <ppisar@redhat.com> - 0.72-5
12ba5a
- Specify more dependencies
12ba5a
12ba5a
* Mon Jul 22 2013 Petr Pisar <ppisar@redhat.com> - 0.72-4
12ba5a
- Perl 5.18 rebuild
12ba5a
12ba5a
* Wed May 22 2013 Petr Pisar <ppisar@redhat.com> - 0.72-3
12ba5a
- Add BSD, ISC, and MIT to licenses
12ba5a
- Specify all dependencies
12ba5a
12ba5a
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.72-2
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
12ba5a
12ba5a
* Thu Jan 03 2013 Petr Pisar <ppisar@redhat.com> - 0.72-1
12ba5a
- 0.72 bump
12ba5a
12ba5a
* Mon Dec 17 2012 Petr Šabata <contyk@redhat.com> - 0.71-1
12ba5a
- 0.71 bump
12ba5a
12ba5a
* Fri Dec 07 2012 Petr Pisar <ppisar@redhat.com> - 0.70-1
12ba5a
- 0.70 bump
12ba5a
12ba5a
* Thu Dec 06 2012 Paul Howarth <paul@city-fan.org> - 0.69-2
12ba5a
- Fix renamed Win32 excludes
12ba5a
12ba5a
* Thu Dec 06 2012 Petr Šabata <contyk@redhat.com> - 0.69-1
12ba5a
- 0.69 bump
12ba5a
- Update source URL
12ba5a
12ba5a
* Fri Aug 10 2012 Petr Pisar <ppisar@redhat.com> - 0.68-5
12ba5a
- Digest::BubbleBabble is not available in RHEL >= 7
12ba5a
12ba5a
* Fri Aug 10 2012 Petr Pisar <ppisar@redhat.com> - 0.68-4
12ba5a
- Correct dependencies
12ba5a
12ba5a
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.68-3
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
12ba5a
12ba5a
* Wed Jun 13 2012 Petr Pisar <ppisar@redhat.com> - 0.68-2
12ba5a
- Perl 5.16 rebuild
12ba5a
12ba5a
* Thu Feb 02 2012 Petr Šabata <contyk@redhat.com> - 0.68-1
12ba5a
- 0.68 bump
12ba5a
- Spec cleanup
12ba5a
- Package 'demo' as documentation
12ba5a
12ba5a
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.67-2
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
12ba5a
12ba5a
* Wed Nov 16 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.67-1
12ba5a
- update to 0.67
12ba5a
12ba5a
* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 0.66-4
12ba5a
- Perl mass rebuild
12ba5a
12ba5a
* Fri Jun 03 2011 Petr Sabata <contyk@redhat.com> - 0.66-3
12ba5a
- Introduce IPv6 support and prevent interactive build (#710375)
12ba5a
12ba5a
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.66-2
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
12ba5a
12ba5a
* Mon Oct 25 2010 Marcela Mašláňová <mmaslano@redhat.com> - 0.66-1
12ba5a
- update
12ba5a
12ba5a
* Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.65-3
12ba5a
- Mass rebuild with perl-5.12.0
12ba5a
12ba5a
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.65-2
12ba5a
- rebuild against perl 5.10.1
12ba5a
12ba5a
* Thu Sep 17 2009 Warren Togami <wtogami@redhat.com> - 0.65-1
12ba5a
- 0.65
12ba5a
12ba5a
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.63-6
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
12ba5a
12ba5a
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.63-5
12ba5a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
12ba5a
12ba5a
* Mon May 12 2008 Marcela Maslanova <mmaslano@redhat.com> - 0.63-4
12ba5a
- 437681 remove previous patch and use upstream patch, which should solve
12ba5a
        all problems with noisy logs.
12ba5a
12ba5a
* Wed Apr  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.63-3
12ba5a
- fix patch to not require Socket6
12ba5a
12ba5a
* Wed Apr  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.63-2
12ba5a
- fix AF_INET6/PF_INET6 redefine noise (bz 437681)
12ba5a
12ba5a
* Wed Mar 19 2008 Marcela Maslanova <mmaslano@redhat.com> - 0.63-1
12ba5a
- upgrade on new upstream version which fix CVE-2007-6341 - no security impact.
12ba5a
12ba5a
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.61-7
12ba5a
- Rebuild for perl 5.10 (again)
12ba5a
12ba5a
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.61-6
12ba5a
- Autorebuild for GCC 4.3
12ba5a
12ba5a
* Thu Jan 31 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.61-5
12ba5a
- rebuild for new perl
12ba5a
12ba5a
* Fri Dec 21 2007 Paul Howarth <paul@city-fan.org> - 0.61-4
12ba5a
- Fix file ownership for Nameserver subpackage
12ba5a
- Fix argument order for find with -depth
12ba5a
12ba5a
* Fri Dec 14 2007 Robin Norwood <rnorwood@redhat.com> - 0.61-3
12ba5a
- Split Nameserver.pm into subpackage, per recommendation from
12ba5a
  upstream maintainer Dick Franks.
12ba5a
  - Separates the server bits from the client bits.
12ba5a
  - Removes the dependancy on perl(Net::IP) from perl-Net-DNS
12ba5a
- Add BR for perl(Test::Pod) and perl(Digest::BubbleBabble)
12ba5a
12ba5a
* Wed Oct 24 2007 Robin Norwood <rnorwood@redhat.com> - 0.61-2
12ba5a
- Update license tag
12ba5a
- Convert Changes to utf-8
12ba5a
12ba5a
* Thu Aug 09 2007 Robin Norwood <rnorwood@redhat.com> - 0.61-1
12ba5a
- Update to latest upstream version
12ba5a
12ba5a
* Sat Jun 23 2007 Robin Norwood <rnorwood@redhat.com> - 0.60-1
12ba5a
- Upgrade to latest upstream version - 0.60
12ba5a
12ba5a
* Thu Apr 05 2007 Robin Norwood <rnorwood@redhat.com> - 0.59-2
12ba5a
- Resolves: bz#226270
12ba5a
- Fixed issues brought up during package review
12ba5a
- BuildRequires should not require perl, and fixed the format.
12ba5a
- Fixed the BuildRoot
12ba5a
12ba5a
* Wed Sep 27 2006 Robin Norwood <rnorwood@redhat.com> - 0.59-1
12ba5a
- Upgrade to upstream version 0.59 per bug #208315
12ba5a
12ba5a
* Mon Jul 17 2006 Jason Vas Dias <jvdias@redhat.com> - 0.58-1.fc6
12ba5a
- Upgrade to upstream version 0.58
12ba5a
12ba5a
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.57-1.1
12ba5a
- rebuild
12ba5a
12ba5a
* Wed Mar 08 2006 Jason Vas Dias <jvdias@redhat.com> - 0.57-1
12ba5a
- Upgrade to upstream version 0.57
12ba5a
12ba5a
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.55-1.1.2
12ba5a
- bump again for double-long bug on ppc(64)
12ba5a
12ba5a
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.55-1.1.1
12ba5a
- rebuilt for new gcc4.1 snapshot and glibc changes
12ba5a
12ba5a
* Fri Feb 03 2006 Jason Vas Dias <jvdias@redhat.com> - 0.55-1.1
12ba5a
- rebuild for new perl-5.8.8
12ba5a
12ba5a
* Mon Dec 19 2005 Jason Vas Dias <jvdias@redhat.com> - 0.55-1
12ba5a
- Upgrade to upstream version 0.55
12ba5a
12ba5a
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
12ba5a
- rebuilt for new gcc
12ba5a
12ba5a
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
12ba5a
- rebuilt for new gcj
12ba5a
12ba5a
* Sun Oct 30 2005 Warren Togami <wtogami@redhat.com> - 0.53-1
12ba5a
- 0.53 buildreq perl-Net-IP
12ba5a
12ba5a
* Sat Apr  9 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.49-2
12ba5a
- Explicitly disable tests requiring network access at build time.
12ba5a
- Exclude Win32 and Cygwin specific modules.
12ba5a
- More specfile cleanups.
12ba5a
- Honor $RPM_OPT_FLAGS.
12ba5a
12ba5a
* Sat Apr 02 2005 Robert Scheck <redhat@linuxnetz.de> 0.49-1
12ba5a
- upgrade to 0.49 and spec file cleanup (#153186)
12ba5a
12ba5a
* Thu Mar 17 2005 Warren Togami <wtogami@redhat.com> 0.48-3
12ba5a
- reinclude ia64, thanks jvdias
12ba5a
12ba5a
* Tue Mar 15 2005 Warren Togami <wtogami@redhat.com> 0.48-2
12ba5a
- exclude ia64 for now due to Bug #151127
12ba5a
12ba5a
* Mon Oct 11 2004 Warren Togami <wtogami@redhat.com> 0.48-1
12ba5a
- #119983 0.48 fixes bugs
12ba5a
12ba5a
* Wed Sep 22 2004 Chip Turner <cturner@redhat.com> 0.45-4
12ba5a
- rebuild
12ba5a
12ba5a
* Thu Apr 29 2004 Chip Turner <cturner@redhat.com> 0.45-3
12ba5a
- fix bug 122039 -- add filter-depends.sh to remove Win32 deps
12ba5a
12ba5a
* Fri Apr 23 2004 Chip Turner <cturner@redhat.com> 0.45-1
12ba5a
- bump, no longer noarch
12ba5a
12ba5a
* Fri Feb 13 2004 Chip Turner <cturner@redhat.com> 0.45-1
12ba5a
- update to 0.45
12ba5a
12ba5a
* Mon Oct 20 2003 Chip Turner <cturner@redhat.com> 0.31-3.2
12ba5a
- fix interactive build issue
12ba5a
12ba5a
* Mon Jan 27 2003 Chip Turner <cturner@redhat.com>
12ba5a
- version bump and rebuild
12ba5a
12ba5a
* Tue Dec 10 2002 Chip Turner <cturner@redhat.com>
12ba5a
- update to latest version from CPAN
12ba5a
12ba5a
* Tue Aug  6 2002 Chip Turner <cturner@redhat.com>
12ba5a
- automated release bump and build
12ba5a
12ba5a
* Tue Aug  6 2002 Chip Turner <cturner@localhost.localdomain>
12ba5a
- update to 0.26
12ba5a
12ba5a
* Thu Jun 27 2002 Chip Turner <cturner@redhat.com>
12ba5a
- description update
12ba5a
12ba5a
* Sat Jun 15 2002 cturner@redhat.com
12ba5a
- Specfile autogenerated
12ba5a