2bf5cd
# According to documentation, module using Coro is just:
2bf5cd
# A PROOF-OF-CONCEPT IMPLEMENTATION FOR EXPERIMENTATION.
2bf5cd
# Omit Coro support on bootsrap bacause perl-DBI is pulled in by core
2bf5cd
# perl-CPANPLUS.
2bf5cd
%if %{defined perl_bootstrap} || 0%{?rhel} >= 7
2bf5cd
%bcond_with perl_DBI_enables_coro
2bf5cd
%else
2bf5cd
%bcond_without perl_DBI_enables_coro
2bf5cd
%endif
2bf5cd
2bf5cd
%if 0%{?rhel}
2bf5cd
# Test with and suggest Clone Perl module for better multithreading
2bf5cd
%bcond_with perl_DBI_enables_Clone
2bf5cd
# Test with and suggest DB_File Perl module
2bf5cd
%bcond_with perl_DBI_enables_DB_File
2bf5cd
# Test with and suggest MLDBM Perl module for arbitrary mulicolumn databases
2bf5cd
%bcond_with perl_DBI_enables_MLDBM
2bf5cd
# Run optional tests
2bf5cd
%bcond_with perl_DBI_enables_optional_test
2bf5cd
%else
2bf5cd
%bcond_without perl_DBI_enables_Clone
2bf5cd
%bcond_without perl_DBI_enables_DB_File
2bf5cd
%bcond_without perl_DBI_enables_MLDBM
2bf5cd
%bcond_without perl_DBI_enables_optional_test
2bf5cd
%endif
2bf5cd
# Test with and suggest SQL::Statement Perl module for more serialization
2bf5cd
# formats
2bf5cd
# SQL::Statement is optional, and it is in build-cycle with DBI
2bf5cd
%if %{defined perl_bootstrap} || 0%{?rhel}
2bf5cd
%bcond_with perl_DBI_enables_SQL_Statement
2bf5cd
%else
2bf5cd
%bcond_without perl_DBI_enables_SQL_Statement
2bf5cd
%endif
2bf5cd
2bf5cd
Name:           perl-DBI
2bf5cd
Version:        1.641
5a7daf
Release:        4%{?dist}
2bf5cd
Summary:        A database access API for perl
2bf5cd
License:        GPL+ or Artistic
2bf5cd
URL:            http://dbi.perl.org/
2bf5cd
Source0:        http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
2bf5cd
BuildRequires:  coreutils
2bf5cd
BuildRequires:  findutils
2bf5cd
BuildRequires:  gcc
2bf5cd
BuildRequires:  glibc-common
2bf5cd
BuildRequires:  make
2bf5cd
BuildRequires:  perl-devel
2bf5cd
BuildRequires:  perl-generators
2bf5cd
BuildRequires:  perl-interpreter
2bf5cd
BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
2bf5cd
BuildRequires:  perl(File::Find)
2bf5cd
BuildRequires:  perl(strict)
2bf5cd
BuildRequires:  sed
2bf5cd
# Run-time:
2bf5cd
BuildRequires:  perl(base)
2bf5cd
BuildRequires:  perl(constant)
2bf5cd
BuildRequires:  perl(Carp)
2bf5cd
BuildRequires:  perl(Config)
2bf5cd
%if %{with perl_DBI_enables_coro}
2bf5cd
# Coro Not needed by tests
2bf5cd
# Coro::Handle not needed by tests
2bf5cd
# Coro::Select not needed by tests
2bf5cd
%endif
2bf5cd
BuildRequires:  perl(Cwd)
2bf5cd
BuildRequires:  perl(Data::Dumper)
2bf5cd
BuildRequires:  perl(DynaLoader)
2bf5cd
BuildRequires:  perl(Errno)
2bf5cd
BuildRequires:  perl(Exporter)
2bf5cd
BuildRequires:  perl(Fcntl)
5a7daf
BuildRequires:  perl(FileHandle)
2bf5cd
BuildRequires:  perl(File::Basename)
2bf5cd
BuildRequires:  perl(File::Spec)
2bf5cd
BuildRequires:  perl(Getopt::Long)
2bf5cd
BuildRequires:  perl(IO::Dir)
2bf5cd
BuildRequires:  perl(IO::File)
2bf5cd
BuildRequires:  perl(IO::Select)
2bf5cd
BuildRequires:  perl(IPC::Open3)
2bf5cd
BuildRequires:  perl(Math::BigInt)
2bf5cd
BuildRequires:  perl(Scalar::Util)
2bf5cd
BuildRequires:  perl(Storable)
2bf5cd
BuildRequires:  perl(Symbol)
2bf5cd
BuildRequires:  perl(threads)
2bf5cd
BuildRequires:  perl(Tie::Hash)
2bf5cd
BuildRequires:  perl(UNIVERSAL)
2bf5cd
BuildRequires:  perl(utf8)
2bf5cd
BuildRequires:  perl(vars)
2bf5cd
BuildRequires:  perl(warnings)
2bf5cd
# Optional run-time:
2bf5cd
%if %{with perl_DBI_enables_Clone}
2bf5cd
BuildRequires:  perl(Clone) >= 0.34
2bf5cd
%endif
2bf5cd
%if %{with perl_DBI_enables_DB_File}
2bf5cd
BuildRequires:  perl(DB_File)
2bf5cd
%endif
2bf5cd
%if %{with perl_DBI_enables_MLDBM}
2bf5cd
BuildRequires:  perl(MLDBM)
2bf5cd
%endif
2bf5cd
# Do not build-require optional Params::Util to test the fall-back code
2bf5cd
%if %{with perl_DBI_enables_SQL_Statement}
2bf5cd
BuildRequires:  perl(SQL::Statement) >= 1.402
2bf5cd
%endif
2bf5cd
# Tests
5a7daf
BuildRequires:  perl(blib)
2bf5cd
BuildRequires:  perl(B)
2bf5cd
BuildRequires:  perl(Benchmark)
2bf5cd
BuildRequires:  perl(Encode)
2bf5cd
BuildRequires:  perl(File::Copy)
2bf5cd
BuildRequires:  perl(File::Path)
2bf5cd
BuildRequires:  perl(lib)
2bf5cd
BuildRequires:  perl(overload)
2bf5cd
BuildRequires:  perl(Test::More)
2bf5cd
BuildRequires:  perl(Test::Simple) >= 0.90
2bf5cd
%if %{with perl_DBI_enables_optional_test}
2bf5cd
# Optional tests
2bf5cd
BuildRequires:  perl(Test::Pod) >= 1.00
2bf5cd
BuildRequires:  perl(Test::Pod::Coverage) >= 1.04
2bf5cd
%endif
2bf5cd
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
2bf5cd
%if %{with perl_DBI_enables_Clone}
2bf5cd
Suggests:       perl(Clone) >= 0.34
2bf5cd
%endif
2bf5cd
%if %{with perl_DBI_enables_DB_File}
2bf5cd
Suggests:       perl(DB_File)
2bf5cd
%endif
5a7daf
Requires:       perl(FileHandle)
2bf5cd
Requires:       perl(Math::BigInt)
2bf5cd
%if %{with perl_DBI_enables_MLDBM}
2bf5cd
Suggests:       perl(MLDBM)
2bf5cd
%endif
2bf5cd
%if %{with perl_DBI_enables_SQL_Statement}
2bf5cd
Suggests:       perl(SQL::Statement) >= 1.402
2bf5cd
%endif
2bf5cd
2bf5cd
# Filter unwanted dependencies
2bf5cd
%{?perl_default_filter}
2bf5cd
%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^perl\\(RPC::\\)
2bf5cd
2bf5cd
%description 
2bf5cd
DBI is a database access Application Programming Interface (API) for
2bf5cd
the Perl Language. The DBI API Specification defines a set of
2bf5cd
functions, variables and conventions that provide a consistent
2bf5cd
database interface independent of the actual database being used.
2bf5cd
2bf5cd
%if %{with perl_DBI_enables_coro}
2bf5cd
%package Coro
2bf5cd
Summary:        Asynchronous DBD::Gofer stream transport using Coro
2bf5cd
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
2bf5cd
2bf5cd
%description Coro
2bf5cd
This is an experimental asynchronous DBD::Gofer stream transport for DBI
2bf5cd
implemented on top of Coro. The BIG WIN from using Coro is that it enables
2bf5cd
the use of existing DBI frameworks like DBIx::Class.
2bf5cd
%endif
2bf5cd
2bf5cd
%prep
2bf5cd
%setup -q -n DBI-%{version} 
2bf5cd
for F in lib/DBD/Gofer.pm; do
2bf5cd
    iconv -f ISO-8859-1 -t UTF-8 < "$F" > "${F}.utf8"
2bf5cd
    touch -r "$F" "${F}.utf8"
2bf5cd
    mv "${F}.utf8" "$F"
2bf5cd
done
2bf5cd
chmod 644 ex/*
2bf5cd
chmod 744 dbixs_rev.pl
2bf5cd
# Fix shell bangs
2bf5cd
for F in dbixs_rev.pl ex/corogofer.pl; do
2bf5cd
    perl -MExtUtils::MakeMaker -e "ExtUtils::MM_Unix->fixin(q{$F})"
2bf5cd
done
2bf5cd
%if %{without perl_DBI_enables_coro}
2bf5cd
rm lib/DBD/Gofer/Transport/corostream.pm
2bf5cd
sed -i -e '/^lib\/DBD\/Gofer\/Transport\/corostream.pm$/d' MANIFEST
2bf5cd
%endif
2bf5cd
# Remove RPC::Pl* reverse dependencies due to security concerns,
2bf5cd
# CVE-2013-7284, bug #1051110
2bf5cd
for F in lib/Bundle/DBI.pm lib/DBD/Proxy.pm lib/DBI/ProxyServer.pm \
2bf5cd
        dbiproxy.PL t/80proxy.t; do
2bf5cd
    rm "$F"
2bf5cd
    sed -i -e '\|^'"$F"'|d' MANIFEST
2bf5cd
done
2bf5cd
sed -i -e 's/"dbiproxy$ext_pl",//' Makefile.PL
2bf5cd
# Remove Win32 specific files to avoid unwanted dependencies
2bf5cd
for F in lib/DBI/W32ODBC.pm lib/Win32/DBIODBC.pm; do
2bf5cd
    rm "$F"
2bf5cd
    sed -i -e '\|^'"$F"'|d' MANIFEST
2bf5cd
done
2bf5cd
2bf5cd
%build
2bf5cd
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 OPTIMIZE="%{optflags}"
2bf5cd
make %{?_smp_mflags}
2bf5cd
2bf5cd
%install
2bf5cd
make pure_install DESTDIR=%{buildroot}
2bf5cd
find %{buildroot} -type f -name '*.bs' -empty -delete
2bf5cd
%{_fixperms} '%{buildroot}'/*
2bf5cd
2bf5cd
%check
2bf5cd
make test
2bf5cd
2bf5cd
%files
2bf5cd
# Changes already packaged as DBI::Changes
2bf5cd
%doc README.md ex/perl_dbi_nulls_test.pl ex/profile.pl
2bf5cd
%{_bindir}/dbipro*
2bf5cd
%{_bindir}/dbilogstrip
2bf5cd
%{perl_vendorarch}/*.p*
2bf5cd
%{perl_vendorarch}/DBD/
2bf5cd
%if %{with perl_DBI_enables_coro}
2bf5cd
%exclude %{perl_vendorarch}/DBD/Gofer/Transport/corostream.pm
2bf5cd
%endif
2bf5cd
%{perl_vendorarch}/DBI/
2bf5cd
%{perl_vendorarch}/auto/DBI/
2bf5cd
%{_mandir}/man1/*.1*
2bf5cd
%{_mandir}/man3/*.3*
2bf5cd
2bf5cd
%if %{with perl_DBI_enables_coro}
2bf5cd
%files Coro
2bf5cd
%doc ex/corogofer.pl
2bf5cd
%{perl_vendorarch}/DBD/Gofer/Transport/corostream.pm
2bf5cd
%endif
2bf5cd
2bf5cd
%changelog
5a7daf
* Mon Nov 22 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.641-4
5a7daf
- BR: perl(blib), perl(FileHandle) for tests
5a7daf
5a7daf
* Fri Mar 29 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.641-3
5a7daf
- Rebuild with enable hardening (bug #1636329)
5a7daf
2bf5cd
* Wed Jan 16 2019 Petr Šabata <contyk@redhat.com> - 1.641-2
2bf5cd
- Rebuilding for multicontext errata test purposes (rhbz#1666480)
2bf5cd
2bf5cd
* Tue Mar 20 2018 Petr Pisar <ppisar@redhat.com> - 1.641-1
2bf5cd
- 1.641 bump
2bf5cd
2bf5cd
* Mon Feb 19 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.640-3
2bf5cd
- Add build-require gcc
2bf5cd
2bf5cd
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.640-2
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2bf5cd
2bf5cd
* Mon Jan 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.640-1
2bf5cd
- 1.640 bump
2bf5cd
2bf5cd
* Mon Jan 01 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.639-1
2bf5cd
- 1.639 bump
2bf5cd
2bf5cd
* Thu Aug 17 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.637-1
2bf5cd
- 1.637 bump
2bf5cd
2bf5cd
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.636-8
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2bf5cd
2bf5cd
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.636-7
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2bf5cd
2bf5cd
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.636-6
2bf5cd
- Perl 5.26 re-rebuild of bootstrapped packages
2bf5cd
2bf5cd
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.636-5
2bf5cd
- Perl 5.26 rebuild
2bf5cd
2bf5cd
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.636-4
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2bf5cd
2bf5cd
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.636-3
2bf5cd
- Perl 5.24 re-rebuild of bootstrapped packages
2bf5cd
2bf5cd
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.636-2
2bf5cd
- Perl 5.24 rebuild
2bf5cd
2bf5cd
* Tue Apr 26 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.636-1
2bf5cd
- 1.636 bump
2bf5cd
2bf5cd
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.634-3
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2bf5cd
2bf5cd
* Fri Oct 23 2015 Petr Pisar <ppisar@redhat.com> - 1.634-2
2bf5cd
- Correct dependency filter
2bf5cd
2bf5cd
* Tue Aug 04 2015 Petr Pisar <ppisar@redhat.com> - 1.634-1
2bf5cd
- 1.634 bump
2bf5cd
2bf5cd
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.633-6
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2bf5cd
2bf5cd
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.633-5
2bf5cd
- Perl 5.22 re-rebuild of bootstrapped packages
2bf5cd
2bf5cd
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.633-4
2bf5cd
- Perl 5.22 rebuild
2bf5cd
2bf5cd
* Thu Mar 12 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.633-3
2bf5cd
- Remove script strip_FAQ.sh from sources
2bf5cd
2bf5cd
* Mon Mar 09 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.633-2
2bf5cd
- Repackage source tarball to remove non-free DBI/FAQ.pm (bug #1199532)
2bf5cd
2bf5cd
* Tue Jan 13 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.633-1
2bf5cd
- 1.633 bump
2bf5cd
2bf5cd
* Fri Dec 12 2014 Petr Pisar <ppisar@redhat.com> - 1.632-2
2bf5cd
- Improve specification file
2bf5cd
2bf5cd
* Wed Nov 12 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.632-1
2bf5cd
- 1.632 bump
2bf5cd
2bf5cd
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.631-7
2bf5cd
- Perl 5.20 re-rebuild of bootstrapped packages
2bf5cd
2bf5cd
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.631-6
2bf5cd
- Perl 5.20 rebuild
2bf5cd
2bf5cd
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.631-5
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2bf5cd
2bf5cd
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.631-4
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2bf5cd
2bf5cd
* Mon Jun 02 2014 Petr Pisar <ppisar@redhat.com> - 1.631-3
2bf5cd
- Remove RPC::Pl* reverse dependencies due to security concerns (CVE-2013-7284)
2bf5cd
  (bug #1051110)
2bf5cd
2bf5cd
* Wed Jan 22 2014 Petr Pisar <ppisar@redhat.com> - 1.631-2
2bf5cd
- Split DBD::Gofer::Transport::corostream into sub-package
2bf5cd
2bf5cd
* Tue Jan 21 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.631-1
2bf5cd
- 1.631 bump
2bf5cd
2bf5cd
* Tue Nov 26 2013 Petr Pisar <ppisar@redhat.com> - 1.630-2
2bf5cd
- Add a security warning about use of RPC::PlClient (bug #1030578)
2bf5cd
2bf5cd
* Tue Oct 29 2013 Jitka Plesnikova <jplesnik@redhat.com> - 1.630-1
2bf5cd
- 1.630 bump
2bf5cd
2bf5cd
* Wed Aug 14 2013 Jitka Plesnikova <jplesnik@redhat.com> - 1.628-3
2bf5cd
- Perl 5.18 re-rebuild of bootstrapped packages
2bf5cd
2bf5cd
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.628-2
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2bf5cd
2bf5cd
* Thu Jul 25 2013 Petr Pisar <ppisar@redhat.com> - 1.628-1
2bf5cd
- 1.628 bump
2bf5cd
2bf5cd
* Wed Jul 24 2013 Petr Pisar <ppisar@redhat.com> - 1.627-2
2bf5cd
- Perl 5.18 rebuild
2bf5cd
2bf5cd
* Mon May 20 2013 Petr Pisar <ppisar@redhat.com> - 1.627-1
2bf5cd
- 1.627 bump
2bf5cd
2bf5cd
* Thu May 16 2013 Petr Pisar <ppisar@redhat.com> - 1.626-1
2bf5cd
- 1.626 bump
2bf5cd
2bf5cd
* Tue Apr 02 2013 Petr Šabata <contyk@redhat.com> - 1.625-1
2bf5cd
- 1.625 bump, perl5.17 fixes
2bf5cd
2bf5cd
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.623-2
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2bf5cd
2bf5cd
* Thu Jan 03 2013 Petr Šabata <contyk@redhat.com> - 1.623-1
2bf5cd
- 1.623 bump
2bf5cd
2bf5cd
* Mon Aug 27 2012 Petr Pisar <ppisar@redhat.com> - 1.622-6
2bf5cd
- Disable Coro properly
2bf5cd
2bf5cd
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.622-5
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2bf5cd
2bf5cd
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 1.622-4
2bf5cd
- Perl 5.16 re-rebuild of bootstrapped packages
2bf5cd
2bf5cd
* Wed Jun 27 2012 Marcela Mašláňová <mmaslano@redhat.com> - 1.622-3
2bf5cd
- Conditionalize usage of Coro, which is used in experimental module
2bf5cd
  and MLDB and SLQ::Statement. 
2bf5cd
 
2bf5cd
* Sat Jun 16 2012 Petr Pisar <ppisar@redhat.com> - 1.622-2
2bf5cd
- Perl 5.16 rebuild
2bf5cd
2bf5cd
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 1.622-1
2bf5cd
- 1.622 bump
2bf5cd
2bf5cd
* Fri Apr 27 2012 Petr Šabata <contyk@redhat.com> - 1.620-1
2bf5cd
- 1.620 bump
2bf5cd
- Removing some perl-provided explicit dependencies
2bf5cd
2bf5cd
* Fri Apr  6 2012 Marcela Mašláňová <mmaslano@redhat.com> - 1.618-3
2bf5cd
- 810370 apply Paul's bootstrap macro
2bf5cd
2bf5cd
* Mon Feb 27 2012 Petr Pisar <ppisar@redhat.com> - 1.618-2
2bf5cd
- Build-require optional Test::Pod::Coverage
2bf5cd
2bf5cd
* Mon Feb 27 2012 Petr Pisar <ppisar@redhat.com> - 1.618-1
2bf5cd
- 1.618 bump
2bf5cd
2bf5cd
* Tue Jan 31 2012 Petr Šabata <contyk@redhat.com> - 1.617-1
2bf5cd
- 1.617 bump
2bf5cd
- Modernize spec
2bf5cd
- Remove now obsolete perl(DBI) Provides
2bf5cd
2bf5cd
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.616-5
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2bf5cd
2bf5cd
* Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.616-4
2bf5cd
- Perl mass rebuild
2bf5cd
2bf5cd
* Tue Mar 15 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.616-3
2bf5cd
- Adapt dependency filtering for rpmbuild >= 4.9.
2bf5cd
2bf5cd
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.616-2
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2bf5cd
2bf5cd
* Tue Jan  4 2011 Petr Sabata <psabata@redhat.com> - 1.616-1
2bf5cd
- 1.616 version bump
2bf5cd
2bf5cd
* Wed Sep 29 2010 jkeating - 1.615-2
2bf5cd
- Rebuilt for gcc bug 634757
2bf5cd
2bf5cd
* Thu Sep 23 2010 Petr Sabata <psabata@redhat.com> - 1.615-1
2bf5cd
- 1.615 version bump
2bf5cd
2bf5cd
* Mon Sep 20 2010 Petr Sabata <psabata@redhat.com> - 1.614-1
2bf5cd
- 1.614 version bump
2bf5cd
2bf5cd
* Mon Aug  2 2010 Petr Sabata <psabata@redhat.com> - 1.613-1
2bf5cd
- 1.613 version bump
2bf5cd
2bf5cd
* Mon Jun  7 2010 Petr Pisar <ppisar@redhat.com> - 1.611-1
2bf5cd
- 1.611 bump
2bf5cd
- Add BuildRequires perl(RPC::PlClient) to cover some optional tests
2bf5cd
- Fix indentation
2bf5cd
2bf5cd
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.609-5
2bf5cd
- Mass rebuild with perl-5.12.0
2bf5cd
2bf5cd
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.609-4
2bf5cd
- rebuild against perl 5.10.1
2bf5cd
2bf5cd
* Thu Sep 24 2009 Stepan Kasal <skasal@redhat.com> - 1.609-3
2bf5cd
- provide versioned perl(DBI)
2bf5cd
2bf5cd
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.609-2
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2bf5cd
2bf5cd
* Wed Jun 10 2009 Stepan Kasal <skasal@redhat.com> - 1.609-1
2bf5cd
- new upstream version
2bf5cd
- drop unneeded build patch
2bf5cd
- move the iconv to convert the source
2bf5cd
2bf5cd
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.607-2
2bf5cd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2bf5cd
2bf5cd
* Mon Jul 28 2008 Marcela Maslanova <mmaslano@redhat.com> - 1.607-1
2bf5cd
- update
2bf5cd
2bf5cd
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.601-4
2bf5cd
- Rebuild for perl 5.10 (again)
2bf5cd
2bf5cd
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.601-3
2bf5cd
- Autorebuild for GCC 4.3
2bf5cd
2bf5cd
* Tue Jan 15 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.601-2
2bf5cd
- rebuild for new perl
2bf5cd
2bf5cd
* Fri Oct 26 2007 Robin Norwood <rnorwood@redhat.com> - 1.601-1
2bf5cd
- Update to latest CPAN version: 1.601
2bf5cd
- Fix some issues from package review:
2bf5cd
  - patch to change #! line in script
2bf5cd
  - make script executable
2bf5cd
  - fix requires and buildrequires
2bf5cd
2bf5cd
* Mon Aug 27 2007 Robin Norwood <rnorwood@redhat.com> - 1.58-2
2bf5cd
- Rebuild
2bf5cd
2bf5cd
* Mon Aug 13 2007 Robin Norwood <rnorwood@redhat.com> - 1.58-1
2bf5cd
- Update to latest CPAN version: 1.58
2bf5cd
2bf5cd
* Thu Jun 07 2007 Robin Norwood <rnorwood@redhat.com> - 1.56-1
2bf5cd
- Update to latest CPAN version: 1.56
2bf5cd
- Move the filter requires step into %%prep
2bf5cd
- Remove very old patch (for perl 5.8.1)
2bf5cd
- Fix a couple of rpmlint issues (non-UTF8 manpage and script with
2bf5cd
  incorrect shebang line
2bf5cd
2bf5cd
* Sat Dec 02 2006 Robin Norwood <rnorwood@redhat.com> - 1.53-1
2bf5cd
- Upgrade to latest CPAN version: 1.53
2bf5cd
2bf5cd
* Thu Aug 24 2006 Robin Norwood <rnorwood@redhat.com> - 1.52-1
2bf5cd
- Upgrade to 1.52 for bug #202310
2bf5cd
        
2bf5cd
* Mon Jul 17 2006 Jason Vas Dias <jvdias@redhat.com> - 1.51-1
2bf5cd
- Upgrade to 1.51
2bf5cd
2bf5cd
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.50-3
2bf5cd
- rebuild
2bf5cd
2bf5cd
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.50-2.2
2bf5cd
- bump again for double-long bug on ppc(64)
2bf5cd
2bf5cd
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.50-2.1
2bf5cd
- rebuilt for new gcc4.1 snapshot and glibc changes
2bf5cd
2bf5cd
* Fri Feb 03 2006 Jason Vas Dias <jvdias@redhat.com> - 1.50-2
2bf5cd
- rebuild for new perl-5.8.8 / gcc / glibc
2bf5cd
2bf5cd
* Mon Dec 19 2005 Jason Vas Dias<jvdias@redhat.com> - 1.50-1
2bf5cd
- upgrade to 1.50
2bf5cd
2bf5cd
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
2bf5cd
- rebuilt for new gcc
2bf5cd
2bf5cd
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
2bf5cd
- rebuilt for new gcj
2bf5cd
2bf5cd
* Wed Apr 13 2005 Jose Pedro Oliveira <jpo@di.uminho.pt> - 1.48-4
2bf5cd
- (#154762)
2bf5cd
- License information: GPL or Artistic
2bf5cd
- Removed the Time::HiRes building requirement (see Changes)
2bf5cd
- Removed the empty .bs file
2bf5cd
- Corrected file permissions
2bf5cd
2bf5cd
* Mon Apr 04 2005 Warren Togami <wtogami@redhat.com> 1.48-3
2bf5cd
- filter perl(Apache) (#153673)
2bf5cd
2bf5cd
* Fri Apr 01 2005 Robert Scheck <redhat@linuxnetz.de> 1.48-2
2bf5cd
- spec file cleanup (#153164)
2bf5cd
2bf5cd
* Thu Mar 31 2005 Warren Togami <wtogami@redhat.com> 1.48-1
2bf5cd
- 1.48
2bf5cd
2bf5cd
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
2bf5cd
- rebuilt
2bf5cd
2bf5cd
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
2bf5cd
- rebuilt
2bf5cd
2bf5cd
* Fri Feb 13 2004 Chip Turner <cturner@redhat.com> 1.40-1
2bf5cd
- update to 1.40
2bf5cd
2bf5cd
* Fri Dec 19 2003 Chip Turner <cturner@redhat.com> 1.39-1
2bf5cd
- update to 1.39
2bf5cd
2bf5cd
* Mon Jul  7 2003 Chip Turner <cturner@redhat.com> 1.37-1
2bf5cd
- upgrade to 1.37
2bf5cd
2bf5cd
* Wed Apr  2 2003 Chip Turner <cturner@redhat.com> 1.32-6
2bf5cd
- add buildrequires on perl-Time-HiRes
2bf5cd
2bf5cd
* Tue Feb 18 2003 Chip Turner <cturner@redhat.com>
2bf5cd
- update dependency filter to remove dependency on perl(Apache) that
2bf5cd
- crept in (#82927)
2bf5cd
2bf5cd
* Mon Jan 27 2003 Chip Turner <cturner@redhat.com>
2bf5cd
- version bump and rebuild
2bf5cd
2bf5cd
* Sat Dec 14 2002 Chip Turner <cturner@redhat.com>
2bf5cd
- don't use rpm internal dep generator
2bf5cd
2bf5cd
* Wed Nov 20 2002 Chip Turner <cturner@redhat.com>
2bf5cd
- rebuild
2bf5cd
2bf5cd
* Wed Aug  7 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.30-1
2bf5cd
- 1.30. 
2bf5cd
2bf5cd
* Tue Jun 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.28-1
2bf5cd
- 1.28
2bf5cd
- Building it also fixes #66304
2bf5cd
2bf5cd
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
2bf5cd
- automated rebuild
2bf5cd
2bf5cd
* Wed Jun  5 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.23-2
2bf5cd
- Tweak dependency finder - filter out a dependency found within the 
2bf5cd
  doc section of a module
2bf5cd
2bf5cd
* Tue Jun  4 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.23-1
2bf5cd
- 1.23
2bf5cd
- Some changes to integrate with new Perl
2bf5cd
- Update URL
2bf5cd
2bf5cd
* Thu May 23 2002 Tim Powers <timp@redhat.com>
2bf5cd
- automated rebuild
2bf5cd
2bf5cd
* Tue May  7 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.21-2
2bf5cd
- Rebuild
2bf5cd
2bf5cd
* Fri Feb 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.21-1
2bf5cd
- 1.21
2bf5cd
2bf5cd
* Fri Feb  8 2002 Chip Turner <cturner@redhat.com>
2bf5cd
- filter out "soft" dependencies: perl(RPC::PlClient) and perl(Win32::ODBC)
2bf5cd
2bf5cd
* Thu Feb  7 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.201-2
2bf5cd
- Rebuild
2bf5cd
2bf5cd
* Tue Jan 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.201-1
2bf5cd
- 1.201
2bf5cd
2bf5cd
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
2bf5cd
- automated rebuild
2bf5cd
2bf5cd
* Tue Jan  8 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.20-1
2bf5cd
- 1.20
2bf5cd
- Proper URL
2bf5cd
2bf5cd
* Sat Jun 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
2bf5cd
- 1.18
2bf5cd
2bf5cd
* Wed May 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
2bf5cd
- 1.16
2bf5cd
- change group to Applications/Databases from Applications/CPAN
2bf5cd
2bf5cd
* Tue May  1 2001 Trond Eivind Glomsrød <teg@redhat.com>
2bf5cd
- 1.15
2bf5cd
2bf5cd
* Tue Feb 27 2001 Trond Eivind Glomsrød <teg@redhat.com>
2bf5cd
- Cleanups
2bf5cd
2bf5cd
* Thu Nov 30 2000 Trond Eivind Glomsrød <teg@redhat.com>
2bf5cd
- build for main distribution
2bf5cd
- use %%{_tmppath}
2bf5cd
- change name of specfile
2bf5cd
- don't use a find script to generate file lists
2bf5cd
- general cleanup
2bf5cd
- add descriptive summary and description
2bf5cd
2bf5cd
* Mon Aug 14 2000 Tim Powers <timp@redhat.com>
2bf5cd
- Spec file was autogenerated.