2005-04-14 00:27:41 +00:00
|
|
|
Name: perl-DBI
|
2007-08-13 19:42:35 +00:00
|
|
|
Version: 1.58
|
2007-08-27 15:43:19 +00:00
|
|
|
Release: 2%{?dist}
|
2005-04-14 00:27:41 +00:00
|
|
|
Summary: A database access API for perl
|
|
|
|
|
|
|
|
Group: Development/Libraries
|
2007-08-13 19:42:35 +00:00
|
|
|
License: GPL+ or Artistic
|
2005-04-14 00:27:41 +00:00
|
|
|
URL: http://dbi.perl.org/
|
|
|
|
Source0: http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
2007-06-07 19:41:07 +00:00
|
|
|
BuildRequires: perl, perl(ExtUtils::MakeMaker), perl(Test::Pod)
|
2005-04-14 00:27:41 +00:00
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
2004-09-09 10:04:26 +00:00
|
|
|
|
2005-04-01 22:12:46 +00:00
|
|
|
%description
|
2004-09-09 10:04:26 +00:00
|
|
|
DBI is a database access Application Programming Interface (API) for
|
|
|
|
the Perl Language. The DBI API Specification defines a set of
|
|
|
|
functions, variables and conventions that provide a consistent
|
|
|
|
database interface independent of the actual database being used.
|
|
|
|
|
2005-04-14 00:27:41 +00:00
|
|
|
|
2004-09-09 10:04:26 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n DBI-%{version}
|
2005-04-14 00:27:41 +00:00
|
|
|
chmod 644 ex/*
|
2004-09-09 10:04:26 +00:00
|
|
|
|
2007-06-07 19:41:07 +00:00
|
|
|
# Filter unwanted Requires:
|
|
|
|
cat << EOF > %{name}-req
|
|
|
|
#!/bin/sh
|
|
|
|
%{__perl_requires} $* |\
|
|
|
|
sed -e '/perl(RPC::/d'
|
|
|
|
EOF
|
|
|
|
|
|
|
|
%define __perl_requires %{_builddir}/DBI-%{version}/%{name}-req
|
|
|
|
chmod +x %{__perl_requires}
|
|
|
|
|
2004-09-09 10:04:26 +00:00
|
|
|
%build
|
2007-06-07 19:41:07 +00:00
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
|
|
|
|
make %{?_smp_mflags}
|
2004-09-09 10:04:26 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2005-04-14 00:27:41 +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' -empty -exec rm -f {} ';'
|
|
|
|
find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
|
|
|
|
chmod -R u+w $RPM_BUILD_ROOT/*
|
2005-03-31 23:43:30 +00:00
|
|
|
|
2005-04-01 22:12:46 +00:00
|
|
|
# Remove Win32 specific files and man pages to avoid unwanted dependencies
|
|
|
|
rm -rf $RPM_BUILD_ROOT%{perl_vendorarch}/{Win32,DBI/W32ODBC.pm}
|
2005-04-14 00:27:41 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_mandir}/man3/{DBI::W32ODBC.3pm,Win32::DBIODBC.3pm}
|
|
|
|
|
2007-06-07 19:41:07 +00:00
|
|
|
# This particular man page is not UTF8 for some reason
|
|
|
|
pushd $RPM_BUILD_ROOT%{_mandir}/man3/
|
|
|
|
/usr/bin/iconv -f iso8859-1 -t utf-8 DBD::Gofer.3pm > DBD::Gofer.3pm.conv && /bin/mv -f DBD::Gofer.3pm.conv DBD::Gofer.3pm
|
|
|
|
popd
|
|
|
|
|
|
|
|
perl -pi -e 's"#!perl -w"#!/usr/bin/perl"' $RPM_BUILD_ROOT%{perl_vendorarch}/goferperf.pl
|
|
|
|
|
|
|
|
|
|
|
|
%check
|
2005-04-14 00:27:41 +00:00
|
|
|
make test
|
2004-09-09 10:06:50 +00:00
|
|
|
|
2005-04-01 22:12:46 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2004-09-09 10:06:50 +00:00
|
|
|
|
2005-04-14 00:27:41 +00:00
|
|
|
|
2005-04-01 22:12:46 +00:00
|
|
|
%files
|
2005-04-14 00:27:41 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc README ex/
|
2005-04-01 22:12:46 +00:00
|
|
|
%{_bindir}/dbipro*
|
2007-06-07 19:41:07 +00:00
|
|
|
%{_bindir}/dbilogstrip
|
2005-04-01 22:12:46 +00:00
|
|
|
%{perl_vendorarch}/*.p*
|
|
|
|
%{perl_vendorarch}/Bundle/
|
|
|
|
%{perl_vendorarch}/DBD/
|
|
|
|
%{perl_vendorarch}/DBI/
|
|
|
|
%{perl_vendorarch}/auto/DBI/
|
2005-04-14 00:27:41 +00:00
|
|
|
%{_mandir}/man1/*.1*
|
|
|
|
%{_mandir}/man3/*.3*
|
|
|
|
|
2004-09-09 10:04:26 +00:00
|
|
|
|
|
|
|
%changelog
|
2007-08-27 15:43:19 +00:00
|
|
|
* Mon Aug 27 2007 Robin Norwood <rnorwood@redhat.com> - 1.58-2
|
|
|
|
- Rebuild
|
|
|
|
|
2007-08-13 19:42:35 +00:00
|
|
|
* Mon Aug 13 2007 Robin Norwood <rnorwood@redhat.com> - 1.58-1
|
|
|
|
- Update to latest CPAN version: 1.58
|
|
|
|
|
2007-06-07 19:41:07 +00:00
|
|
|
* Thu Jun 07 2007 Robin Norwood <rnorwood@redhat.com> - 1.56-1
|
|
|
|
- Update to latest CPAN version: 1.56
|
|
|
|
- Move the filter requires step into %%prep
|
|
|
|
- Remove very old patch (for perl 5.8.1)
|
|
|
|
- Fix a couple of rpmlint issues (non-UTF8 manpage and script with
|
|
|
|
incorrect shebang line
|
|
|
|
|
2006-12-02 18:29:28 +00:00
|
|
|
* Sat Dec 02 2006 Robin Norwood <rnorwood@redhat.com> - 1.53-1
|
|
|
|
- Upgrade to latest CPAN version: 1.53
|
|
|
|
|
2006-08-24 16:48:37 +00:00
|
|
|
* Thu Aug 24 2006 Robin Norwood <rnorwood@redhat.com> - 1.52-1
|
|
|
|
- Upgrade to 1.52 for bug #202310
|
2007-04-05 16:22:19 +00:00
|
|
|
|
2006-07-17 18:44:40 +00:00
|
|
|
* Mon Jul 17 2006 Jason Vas Dias <jvdias@redhat.com> - 1.51-1
|
|
|
|
- Upgrade to 1.51
|
|
|
|
|
2006-07-12 16:59:55 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.50-3
|
2006-07-12 07:45:00 +00:00
|
|
|
- rebuild
|
|
|
|
|
2006-02-11 05:04:13 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.50-2.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 13:26:58 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.50-2.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-02-03 18:54:26 +00:00
|
|
|
* Fri Feb 03 2006 Jason Vas Dias <jvdias@redhat.com> - 1.50-2
|
|
|
|
- rebuild for new perl-5.8.8 / gcc / glibc
|
|
|
|
|
2005-12-19 18:48:12 +00:00
|
|
|
* Mon Dec 19 2005 Jason Vas Dias<jvdias@redhat.com> - 1.50-1
|
|
|
|
- upgrade to 1.50
|
|
|
|
|
2005-12-17 02:11:01 +00:00
|
|
|
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt for new gcc
|
|
|
|
|
2005-12-16 23:22:39 +00:00
|
|
|
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt for new gcj
|
|
|
|
|
2005-04-14 00:27:41 +00:00
|
|
|
* Wed Apr 13 2005 Jose Pedro Oliveira <jpo@di.uminho.pt> - 1.48-4
|
|
|
|
- (#154762)
|
|
|
|
- License information: GPL or Artistic
|
|
|
|
- Removed the Time::HiRes building requirement (see Changes)
|
|
|
|
- Removed the empty .bs file
|
|
|
|
- Corrected file permissions
|
|
|
|
|
2005-04-04 22:38:27 +00:00
|
|
|
* Mon Apr 04 2005 Warren Togami <wtogami@redhat.com> 1.48-3
|
|
|
|
- filter perl(Apache) (#153673)
|
|
|
|
|
2005-04-01 22:12:46 +00:00
|
|
|
* Fri Apr 01 2005 Robert Scheck <redhat@linuxnetz.de> 1.48-2
|
|
|
|
- spec file cleanup (#153164)
|
|
|
|
|
2005-03-31 23:43:30 +00:00
|
|
|
* Thu Mar 31 2005 Warren Togami <wtogami@redhat.com> 1.48-1
|
|
|
|
- 1.48
|
2005-03-31 09:27:48 +00:00
|
|
|
|
2004-09-09 10:09:29 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 10:08:54 +00:00
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Chip Turner <cturner@redhat.com> 1.40-1
|
|
|
|
- update to 1.40
|
|
|
|
|
2004-09-09 10:08:02 +00:00
|
|
|
* Fri Dec 19 2003 Chip Turner <cturner@redhat.com> 1.39-1
|
|
|
|
- update to 1.39
|
|
|
|
|
2004-09-09 10:07:55 +00:00
|
|
|
* Mon Jul 7 2003 Chip Turner <cturner@redhat.com> 1.37-1
|
|
|
|
- upgrade to 1.37
|
|
|
|
|
|
|
|
* Wed Apr 2 2003 Chip Turner <cturner@redhat.com> 1.32-6
|
|
|
|
- add buildrequires on perl-Time-HiRes
|
|
|
|
|
2004-09-09 10:07:06 +00:00
|
|
|
* Tue Feb 18 2003 Chip Turner <cturner@redhat.com>
|
|
|
|
- update dependency filter to remove dependency on perl(Apache) that
|
|
|
|
- crept in (#82927)
|
|
|
|
|
|
|
|
* Mon Jan 27 2003 Chip Turner <cturner@redhat.com>
|
|
|
|
- version bump and rebuild
|
|
|
|
|
|
|
|
* Sat Dec 14 2002 Chip Turner <cturner@redhat.com>
|
|
|
|
- don't use rpm internal dep generator
|
|
|
|
|
|
|
|
* Wed Nov 20 2002 Chip Turner <cturner@redhat.com>
|
|
|
|
- rebuild
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Wed Aug 7 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.30-1
|
2004-09-09 10:06:23 +00:00
|
|
|
- 1.30.
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Tue Jun 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.28-1
|
2004-09-09 10:06:04 +00:00
|
|
|
- 1.28
|
|
|
|
- Building it also fixes #66304
|
|
|
|
|
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Wed Jun 5 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.23-2
|
2004-09-09 10:06:04 +00:00
|
|
|
- Tweak dependency finder - filter out a dependency found within the
|
|
|
|
doc section of a module
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Tue Jun 4 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.23-1
|
2004-09-09 10:06:04 +00:00
|
|
|
- 1.23
|
|
|
|
- Some changes to integrate with new Perl
|
|
|
|
- Update URL
|
|
|
|
|
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Tue May 7 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.21-2
|
2004-09-09 10:06:04 +00:00
|
|
|
- Rebuild
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Fri Feb 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.21-1
|
2004-09-09 10:05:49 +00:00
|
|
|
- 1.21
|
|
|
|
|
|
|
|
* Fri Feb 8 2002 Chip Turner <cturner@redhat.com>
|
|
|
|
- filter out "soft" dependencies: perl(RPC::PlClient) and perl(Win32::ODBC)
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Thu Feb 7 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.201-2
|
2004-09-09 10:05:49 +00:00
|
|
|
- Rebuild
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Tue Jan 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.201-1
|
2004-09-09 10:05:49 +00:00
|
|
|
- 1.201
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Tue Jan 8 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.20-1
|
2004-09-09 10:05:49 +00:00
|
|
|
- 1.20
|
|
|
|
- Proper URL
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Sat Jun 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 10:05:23 +00:00
|
|
|
- 1.18
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Wed May 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 10:04:42 +00:00
|
|
|
- 1.16
|
|
|
|
- change group to Applications/Databases from Applications/CPAN
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Tue May 1 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 10:04:42 +00:00
|
|
|
- 1.15
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Tue Feb 27 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 10:04:26 +00:00
|
|
|
- Cleanups
|
|
|
|
|
2007-04-05 16:22:19 +00:00
|
|
|
* Thu Nov 30 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
2004-09-09 10:04:26 +00:00
|
|
|
- build for main distribution
|
|
|
|
- use %%{_tmppath}
|
|
|
|
- change name of specfile
|
|
|
|
- don't use a find script to generate file lists
|
|
|
|
- general cleanup
|
|
|
|
- add descriptive summary and description
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Aug 14 2000 Tim Powers <timp@redhat.com>
|
|
|
|
- Spec file was autogenerated.
|