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