Compare commits
No commits in common. "c8s" and "c9-beta" have entirely different histories.
26
.gitignore
vendored
26
.gitignore
vendored
@ -1,25 +1 @@
|
||||
DBI-1.611.tar.gz
|
||||
DBI-1.613.tar.gz
|
||||
/DBI-1.614.tar.gz
|
||||
/DBI-1.615.tar.gz
|
||||
/DBI-1.616.tar.gz
|
||||
/DBI-1.617.tar.gz
|
||||
/DBI-1.618.tar.gz
|
||||
/DBI-1.620.tar.gz
|
||||
/DBI-1.622.tar.gz
|
||||
/DBI-1.623.tar.gz
|
||||
/DBI-1.625.tar.gz
|
||||
/DBI-1.626.tar.gz
|
||||
/DBI-1.627.tar.gz
|
||||
/DBI-1.628.tar.gz
|
||||
/DBI-1.630.tar.gz
|
||||
/DBI-1.631.tar.gz
|
||||
/DBI-1.632.tar.gz
|
||||
/DBI-1.633.tar.gz
|
||||
/DBI-1.633_repackaged.tar.gz
|
||||
/DBI-1.634_repackaged.tar.gz
|
||||
/DBI-1.636.tar.gz
|
||||
/DBI-1.637.tar.gz
|
||||
/DBI-1.639.tar.gz
|
||||
/DBI-1.640.tar.gz
|
||||
/DBI-1.641.tar.gz
|
||||
SOURCES/DBI-1.643.tar.gz
|
||||
|
||||
1
.perl-DBI.metadata
Normal file
1
.perl-DBI.metadata
Normal file
@ -0,0 +1 @@
|
||||
fdbe7a86873eed196be5f9753aabed5c1e22f2cb SOURCES/DBI-1.643.tar.gz
|
||||
2
.rpmlint
2
.rpmlint
@ -1,2 +0,0 @@
|
||||
from Config import *
|
||||
addFilter("devel-file-in-non-devel-package .*/auto/DBI");
|
||||
@ -33,12 +33,12 @@
|
||||
%endif
|
||||
|
||||
Name: perl-DBI
|
||||
Version: 1.641
|
||||
Release: 1%{?dist}
|
||||
Version: 1.643
|
||||
Release: 9%{?dist}
|
||||
Summary: A database access API for perl
|
||||
License: GPL+ or Artistic
|
||||
URL: http://dbi.perl.org/
|
||||
Source0: http://www.cpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
|
||||
Source0: https://cpan.metacpan.org/authors/id/T/TI/TIMB/DBI-%{version}.tar.gz
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: gcc
|
||||
@ -67,6 +67,7 @@ BuildRequires: perl(DynaLoader)
|
||||
BuildRequires: perl(Errno)
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(Fcntl)
|
||||
BuildRequires: perl(FileHandle)
|
||||
BuildRequires: perl(File::Basename)
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(Getopt::Long)
|
||||
@ -99,6 +100,7 @@ BuildRequires: perl(MLDBM)
|
||||
BuildRequires: perl(SQL::Statement) >= 1.402
|
||||
%endif
|
||||
# Tests
|
||||
BuildRequires: perl(blib)
|
||||
BuildRequires: perl(B)
|
||||
BuildRequires: perl(Benchmark)
|
||||
BuildRequires: perl(Encode)
|
||||
@ -120,6 +122,7 @@ Suggests: perl(Clone) >= 0.34
|
||||
%if %{with perl_DBI_enables_DB_File}
|
||||
Suggests: perl(DB_File)
|
||||
%endif
|
||||
Requires: perl(FileHandle)
|
||||
Requires: perl(Math::BigInt)
|
||||
%if %{with perl_DBI_enables_MLDBM}
|
||||
Suggests: perl(MLDBM)
|
||||
@ -156,12 +159,12 @@ for F in lib/DBD/Gofer.pm; do
|
||||
touch -r "$F" "${F}.utf8"
|
||||
mv "${F}.utf8" "$F"
|
||||
done
|
||||
chmod 644 ex/*
|
||||
chmod 744 dbixs_rev.pl
|
||||
# Fix shell bangs
|
||||
for F in dbixs_rev.pl ex/corogofer.pl; do
|
||||
perl -MExtUtils::MakeMaker -e "ExtUtils::MM_Unix->fixin(q{$F})"
|
||||
done
|
||||
chmod 0644 ex/*
|
||||
chmod 0755 dbixs_rev.pl
|
||||
%if %{without perl_DBI_enables_coro}
|
||||
rm lib/DBD/Gofer/Transport/corostream.pm
|
||||
sed -i -e '/^lib\/DBD\/Gofer\/Transport\/corostream.pm$/d' MANIFEST
|
||||
@ -181,11 +184,12 @@ for F in lib/DBI/W32ODBC.pm lib/Win32/DBIODBC.pm; do
|
||||
done
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 OPTIMIZE="%{optflags}"
|
||||
make %{?_smp_mflags}
|
||||
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" \
|
||||
NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||
%{make_build}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
%{make_install}
|
||||
find %{buildroot} -type f -name '*.bs' -empty -delete
|
||||
%{_fixperms} '%{buildroot}'/*
|
||||
|
||||
@ -214,6 +218,66 @@ make test
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.643-9
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.643-8
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.643-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.643-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.643-5
|
||||
- Perl 5.32 re-rebuild of bootstrapped packages
|
||||
|
||||
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.643-4
|
||||
- Perl 5.32 rebuild
|
||||
|
||||
* Thu Mar 12 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.643-3
|
||||
- Add BR: perl(FileHandle)
|
||||
|
||||
* Mon Feb 10 2020 Petr Pisar <ppisar@redhat.com> - 1.643-2
|
||||
- Build-require blib for tests
|
||||
|
||||
* Wed Feb 05 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.643-1
|
||||
- 1.643 bump
|
||||
|
||||
* Tue Feb 04 2020 Tom Stellard <tstellar@redhat.com> - 1.642-7
|
||||
- Spec file cleanups: Use make_build and make_install macros
|
||||
- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
|
||||
- https://fedoraproject.org/wiki/Perl/Tips#ExtUtils::MakeMake
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.642-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.642-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.642-4
|
||||
- Perl 5.30 re-rebuild of bootstrapped packages
|
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.642-3
|
||||
- Perl 5.30 rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.642-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Tue Oct 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.642-1
|
||||
- 1.642 bump
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.641-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sun Jul 01 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.641-3
|
||||
- Perl 5.28 re-rebuild of bootstrapped packages
|
||||
|
||||
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.641-2
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Tue Mar 20 2018 Petr Pisar <ppisar@redhat.com> - 1.641-1
|
||||
- 1.641 bump
|
||||
|
||||
Loading…
Reference in New Issue
Block a user