1d864be
# We have db4 up to Fedora 13, then db5 (in the libdb package)
ee682e2
%if 0%{?fedora} > 13 || 0%{?rhel} > 6
1d864be
%global db_pkg libdb
1d864be
%else
1d864be
%global db_pkg db4
1d864be
%endif
1d864be
d8cc181
# Run optional test
d8cc181
%if ! 0%{?rhel}
d8cc181
%bcond_without perl_BerkeleyDB_enables_optional_test
d8cc181
%else
d8cc181
%bcond_with perl_BerkeleyDB_enables_optional_test
d8cc181
%endif
d8cc181
d8cc181
1d864be
# We need to know the exact DB version we're built against
1d864be
%global db_ver %(sed '/DB_VERSION_STRING/!d;s/.*Berkeley DB[[:space:]]*\\([^:]*\\):.*/\\1/' /usr/include/db.h 2>/dev/null || echo 4.0.0)
08279d0
1068f6b
Name:           perl-BerkeleyDB
d894cbc
Version:        0.64
d894cbc
Release:        1%{?dist}
1d864be
Summary:        Interface to Berkeley DB
216d468
License:        GPL+ or Artistic
3f2afb6
URL:            https://metacpan.org/release/BerkeleyDB
3f2afb6
Source0:        https://cpan.metacpan.org/authors/id/P/PM/PMQS/BerkeleyDB-%{version}.tar.gz
96d66cf
# Module Build
1d864be
BuildRequires:  %{db_pkg}-devel
7579d57
BuildRequires:  coreutils
7579d57
BuildRequires:  findutils
7579d57
BuildRequires:  gcc
7579d57
BuildRequires:  make
7579d57
BuildRequires:  perl-devel
5826a0f
BuildRequires:  perl-generators
b228432
BuildRequires:  perl-interpreter
96d66cf
BuildRequires:  perl(Config)
5028339
BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
b228432
BuildRequires:  sed
96d66cf
# Module Runtime
96d66cf
BuildRequires:  perl(Exporter)
ee682e2
BuildRequires:  perl(IO::File)
96d66cf
BuildRequires:  perl(strict)
96d66cf
BuildRequires:  perl(UNIVERSAL)
96d66cf
BuildRequires:  perl(vars)
96d66cf
BuildRequires:  perl(XSLoader)
96d66cf
# Test Suite
96d66cf
BuildRequires:  perl(Carp)
96d66cf
BuildRequires:  perl(charnames)
96d66cf
BuildRequires:  perl(constant)
96d66cf
BuildRequires:  perl(Cwd)
96d66cf
BuildRequires:  perl(File::Path)
96d66cf
BuildRequires:  perl(lib)
96d66cf
BuildRequires:  perl(overload)
96d66cf
BuildRequires:  perl(Symbol)
d8cc181
BuildRequires:  perl(Test::More)
96d66cf
BuildRequires:  perl(threads::shared)
d8cc181
%if %{with perl_BerkeleyDB_enables_optional_test}
3875cd0
# Optional Tests
3875cd0
BuildRequires:  perl(Data::Dumper)
3875cd0
BuildRequires:  perl(Encode)
3875cd0
BuildRequires:  perl(MLDBM)
3875cd0
BuildRequires:  perl(Test::CPAN::Meta)
3875cd0
BuildRequires:  perl(Test::CPAN::Meta::JSON)
5028339
BuildRequires:  perl(Test::NoWarnings)
3875cd0
BuildRequires:  perl(Test::Pod) >= 1.00
d8cc181
%endif
96d66cf
# Runtime
ee682e2
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
08279d0
# Hard-code Berkeley DB requirement to avoid problems like #592209
1d864be
Requires:       %{db_pkg} = %{db_ver}
96d66cf
Requires:       perl(XSLoader)
08279d0
08279d0
# Don't "provide" private Perl libs
08279d0
%{?perl_default_filter}
1068f6b
1068f6b
%description
1068f6b
BerkeleyDB is a module that allows Perl programs to make use of the
ee682e2
facilities provided by Berkeley DB version 2 or greater (note: if
ee682e2
you want to use version 1 of Berkeley DB with Perl you need the DB_File
ee682e2
module).
ee682e2
ee682e2
Berkeley DB is a C library that provides a consistent interface to a
ee682e2
number of database formats. BerkeleyDB provides an interface to all
ee682e2
four of the database types (hash, btree, queue and recno) currently
ee682e2
supported by Berkeley DB.
1068f6b
1068f6b
%prep
1068f6b
%setup -q -n BerkeleyDB-%{version}
3875cd0
ee682e2
perl -pi -e 's,/local/,/, if ($. == 1)' dbinfo
ee682e2
chmod -c -x Changes README
1068f6b
1068f6b
%build
d894cbc
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" NO_PACKLIST=1 NO_PERLLOCAL=1
d894cbc
%{make_build}
1068f6b
1068f6b
%install
d894cbc
%{make_install}
7579d57
find %{buildroot} -type f -name '*.bs' -empty -delete
b228432
%{_fixperms} -c %{buildroot}
7579d57
install -D -m755 dbinfo %{buildroot}%{_bindir}/dbinfo
1068f6b
d02c170
# Remove files we don't want packaged
7579d57
rm %{buildroot}%{perl_vendorarch}/{mkconsts,scan}.pl
d02c170
a962847
%check
1068f6b
make test
1068f6b
1068f6b
%files
1d864be
%doc README Changes Todo
1d864be
%{_bindir}/dbinfo
1d864be
%{perl_vendorarch}/BerkeleyDB/
1d864be
%{perl_vendorarch}/BerkeleyDB.pm
1d864be
%doc %{perl_vendorarch}/BerkeleyDB.pod
1d864be
%{perl_vendorarch}/auto/BerkeleyDB/
96d66cf
%{_mandir}/man3/BerkeleyDB.3*
1068f6b
1068f6b
%changelog
d894cbc
* Thu Sep 17 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.64-1
d894cbc
- 0.64 bump
d894cbc
cb04ccb
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.63-5
cb04ccb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
cb04ccb
e4f4a3d
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.63-4
e4f4a3d
- Perl 5.32 rebuild
e4f4a3d
89fcb44
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.63-3
89fcb44
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
89fcb44
45ade29
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.63-2
45ade29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
45ade29
5028339
* Mon Jul 22 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.63-1
5028339
- 0.63 bump
5028339
441230f
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.61-2
441230f
- Perl 5.30 rebuild
441230f
b228432
* Sun Mar 31 2019 Paul Howarth <paul@city-fan.org> - 0.61-1
b228432
- Update to 0.61
b228432
  - Fix a couple of typos (GH#1)
b228432
b228432
* Sat Mar 30 2019 Paul Howarth <paul@city-fan.org> - 0.60-1
3875cd0
- Update to 0.60
3875cd0
  - Updates for BDB 6.2 and BDB 6.3
3875cd0
  - Expose set_lg_filemode (CPAN RT#124979)
3875cd0
  - Added meta-json.t and meta-yaml.t
3875cd0
  - Moved source to github: https://github.com/pmqs/BerkeleyDB
3875cd0
  - Add META_MERGE to Makefile.PL
3875cd0
- Add patch to fix a couple of typos
3875cd0
  https://github.com/pmqs/BerkeleyDB/pull/1
3875cd0
9b849ee
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.55-14
9b849ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
9b849ee
a5d25ed
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.55-13
a5d25ed
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a5d25ed
a6d0661
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.55-12
a6d0661
- Perl 5.28 rebuild
a6d0661
d1ab5c6
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.55-11
d1ab5c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d1ab5c6
6f59f26
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.55-10
6f59f26
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
6f59f26
809853d
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.55-9
809853d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
809853d
43e21dd
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.55-8
43e21dd
- Perl 5.26 rebuild
43e21dd
9fe32e9
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.55-7
9fe32e9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
9fe32e9
172d51e
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.55-6
172d51e
- Perl 5.24 rebuild
172d51e
7579d57
* Thu Apr 21 2016 Paul Howarth <paul@city-fan.org> - 0.55-5
7579d57
- Fix FTBFS due to missing buildreq perl-devel
7579d57
- Simplify find commands using -empty and -delete
7579d57
78da6ce
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.55-4
78da6ce
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
78da6ce
2e95f4a
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.55-3
2e95f4a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2e95f4a
e7ec7aa
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.55-2
e7ec7aa
- Perl 5.22 rebuild
e7ec7aa
96d66cf
* Sun Feb 22 2015 Paul Howarth <paul@city-fan.org> - 0.55-1
96d66cf
- Update to 0.55
96d66cf
  - Error opening ErrFile with PerlIO_findFILE (CPAN RT#101883)
96d66cf
  - Minor updates for BDB 6.1
96d66cf
- Classify buildreqs by usage
96d66cf
070e974
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.54-4
070e974
- Perl 5.20 rebuild
070e974
c8010ee
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.54-3
c8010ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c8010ee
54d8231
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.54-2
54d8231
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
54d8231
c863867
* Sun Nov 10 2013 Paul Howarth <paul@city-fan.org> - 0.54-1
c863867
- Update to 0.54
c863867
  - Fix memory leak in CDS locking routines (CPAN RT#90134)
c863867
d95f407
* Wed Oct 09 2013 Jitka Plesnikova <jplesnik@redhat.com> - 0.53-2
d95f407
- Rebuild against libdb 5.3.28
d95f407
e15aa9b
* Fri Aug 16 2013 Paul Howarth <paul@city-fan.org> 0.53-1
e15aa9b
- Update to 0.53
e15aa9b
  - BerkeleyDB 0.52 failed to build on 5.18.1RC3 (CPAN RT#87771)
e15aa9b
  - Typo fixes (CPAN RT#86705)
e15aa9b
0bbd0c8
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.52-3
0bbd0c8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0bbd0c8
6912962
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 0.52-2
6912962
- Perl 5.18 rebuild
6912962
3ca9f5c
* Tue Jun 11 2013 Paul Howarth <paul@city-fan.org> 0.52-1
3ca9f5c
- Update to 0.52
3ca9f5c
  - Updates for BDB 6.0 - added Blob support
3ca9f5c
    - Added BerkeleyDB::DbStream class to interface to Blobs
3ca9f5c
    - Added BlobThreshold and BlobDir options to BerkeleyDB::Env constructor
3ca9f5c
    - Added BlobThreshold and BlobDir options to Hash, Btree and Heap
3ca9f5c
      constructors
3ca9f5c
    - Added get_blob_threshold method to BerkeleyDB::Env
3ca9f5c
    - Added get_blob_dir method to BerkeleyDB::Env
3ca9f5c
    - Added get_blob_threshold method to Hash, Btree and Heap
3ca9f5c
    - Added get_blob_dir method to Hash, Btree and Heap
3ca9f5c
  - Added method $cursor->set_partial
3ca9f5c
  - Added method $cursor->partial_clear
3ca9f5c
  - Fixed $env->lock_detect dies due to incorrect version check (CPAN RT#84179)
3ca9f5c
  - Fixed memory leak in db_verify() method with libdb < 4.2 (CPAN RT##84409)
3ca9f5c
  - Fixed a few croaks
3ca9f5c
- Drop %%defattr, redundant since rpm 4.4
3ca9f5c
ad317af
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.51-4
ad317af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
ad317af
e2f88d7
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.51-3
e2f88d7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e2f88d7
b297207
* Mon Jul 09 2012 Petr Pisar <ppisar@redhat.com> - 0.51-2
b297207
- Perl 5.16 rebuild
b297207
ee682e2
* Thu Jul  5 2012 Paul Howarth <paul@city-fan.org> - 0.51-1
ee682e2
- Update to 0.51
ee682e2
  - Documentation updated courtesy of Mike Caron
ee682e2
  - Croak if attempt to freeze BerkeleyDB object (CPAN RT#69985)
ee682e2
  - Rework FETCHSIZE (CPAN RT#75691)
ee682e2
- BR: perl(AutoLoader), perl(Carp), perl(Exporter) and perl(IO::File)
ee682e2
- Anticipate RHEL 7 having libdb
ee682e2
- Mention in %%description that this module doesn't support db1
ee682e2
- Don't need to remove empty directories from buildroot
ee682e2
- Don't use macros for commands
ee682e2
- Don't need to BR: bundled perl(Test::More)
ee682e2
76895f2
* Tue Jun 12 2012 Petr Pisar <ppisar@redhat.com> - 0.49-5
76895f2
- Perl 5.16 rebuild
76895f2
24963fa
* Thu Apr 05 2012 Jindrich Novy <jnovy@redhat.com> - 0.49-4
ee682e2
- Rebuild against libdb 5.3.15
24963fa
2c4fcc5
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.49-3
2c4fcc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2c4fcc5
d7b856f
* Wed Sep 21 2011 Paul Howarth <paul@city-fan.org> - 0.49-2
d7b856f
- Rebuild for libdb 5.2.36 in Rawhide
d7b856f
Steven Pritchard a51705d
* Sun Sep 18 2011 Steven Pritchard <steve@kspei.com> 0.49-1
Steven Pritchard a51705d
- Update to 0.49.
Steven Pritchard a51705d
- BR Cwd (not in core now).
Steven Pritchard a51705d
9c19c5d
* Sun Jun 19 2011 Paul Howarth <paul@city-fan.org> - 0.48-2
9c19c5d
- Perl mass rebuild
9c19c5d
d02c170
* Sun Jun 19 2011 Paul Howarth <paul@city-fan.org> - 0.48-1
d02c170
- Update to 0.48
d02c170
  - Added support for db_exists and lock_detect
d02c170
  - Fixed bug with c_pget when the DB_GET_BOTH flag is used
d02c170
  - Fixed bug with db_pget when the DB_GET_BOTH flag is used
d02c170
  - Changes to build with BDB 5.2
d02c170
  - Add support for new Heap database format
d02c170
  - Fixed test harness issue with Heap.t (CPAN RT#68818)
d02c170
- Don't package build tools mkconsts.pl and scan.pl
d02c170
Marcela Mašláňová e29bee8
* Sun Jun 19 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.43-6
Marcela Mašláňová e29bee8
- Perl mass rebuild
Marcela Mašláňová e29bee8
8f3cf4f
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.43-5
8f3cf4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8f3cf4f
3844b5b
* Fri Feb  4 2011 Paul Howarth <paul@city-fan.org> - 0.43-4
3844b5b
- Rebuild for libdb 5.1.25 in Rawhide
3844b5b
Jesse Keating a0afb94
* Wed Sep 29 2010 jkeating - 0.43-3
Jesse Keating a0afb94
- Rebuilt for gcc bug 634757
Jesse Keating a0afb94
0af503f
* Sun Sep 12 2010 Paul Howarth <paul@city-fan.org> - 0.43-2
0af503f
- Rebuild for libdb 5.1.19 in Rawhide
0af503f
736f0ff
* Tue Aug  3 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.43-1
Marcela Mašláňová 2554f11
- Update to 0.43
736f0ff
  - Changes to build with BDB 5.1
736f0ff
  - Dropped support for Server option when creating an environment
736f0ff
  - Documentation updates (CPAN RT#59202)
736f0ff
  - Fixed compilation error with MS Visual Studio 2005 (CPAN RT#59924)
736f0ff
1d864be
* Wed Jul  7 2010 Paul Howarth <paul@city-fan.org> - 0.42-1
1d864be
- Update to 0.42
1d864be
  - added $db->Env method to retrieve environment object from a database object
1d864be
  - get the tied interface to use truncate in the CLEAR method if available
1d864be
- Build with libdb (Berkeley DB 5.x) from Fedora 14 onwards (#612139)
1d864be
- Tag BerkeleyDB.pod as %%doc
1d864be
- Use DESTDIR rather than PERL_INSTALL_ROOT
1d864be
08279d0
* Tue May 25 2010 Paul Howarth <paul@city-fan.org> - 0.41-3
08279d0
- Rebuild for Berkeley DB 4.8.30 in F-13 and Rawhide (#592209)
08279d0
- Hard-code Berkeley DB requirement to avoid problems like #592209
08279d0
- Add %%{?perl_default_filter}
08279d0
698c420
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.41-2
698c420
- Mass rebuild with perl-5.12.0
698c420
741a1dc
* Sat Feb 13 2010 Steven Pritchard <steve@kspei.com> 0.41-1
741a1dc
- Update to 0.41.
741a1dc
4cd3f1e
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.39-2
4cd3f1e
- rebuild against perl 5.10.1
4cd3f1e
53f99a4
* Sat Aug 29 2009 Steven Pritchard <steve@kspei.com> 0.39-1
53f99a4
- Update to 0.39.
53f99a4
7850984
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.38-2
7850984
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
7850984
60b91dd
* Thu Jun 04 2009 Steven Pritchard <steve@kspei.com> 0.38-1
60b91dd
- Update to 0.38.
60b91dd
60b91dd
* Thu Jun 04 2009 Steven Pritchard <steve@kspei.com> 0.36-1
60b91dd
- Update to 0.36.
60b91dd
e2e5fac
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.34-2
e2e5fac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e2e5fac
09a7603
* Thu May 15 2008 Steven Pritchard <steve@kspei.com> 0.34-1
09a7603
- Update to 0.34.
09a7603
ae67244
* Thu Mar 06 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.33-3
ae67244
Rebuild for new perl
ae67244
4a5eb3b
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.33-2
4a5eb3b
- Autorebuild for GCC 4.3
4a5eb3b
216d468
* Mon Jan 28 2008 Steven Pritchard <steve@kspei.com> 0.33-1
216d468
- Update to 0.33.
216d468
- Update License tag.
216d468
- BR Test::More.
216d468
8423071
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 0.32-2
8423071
- Rebuild for selinux ppc32 issue.
8423071
38b8677
* Fri Jul 13 2007 Steven Pritchard <steve@kspei.com> 0.32-1
38b8677
- Update to 0.32.
38b8677
efdeb59
* Tue Apr 17 2007 Steven Pritchard <steve@kspei.com> 0.31-3
efdeb59
- BR ExtUtils::MakeMaker.
efdeb59
09f2830
* Mon Oct 16 2006 Steven Pritchard <steve@kspei.com> 0.31-2
09f2830
- Rebuild.
09f2830
930e30a
* Mon Oct 16 2006 Steven Pritchard <steve@kspei.com> 0.31-1
930e30a
- Update to 0.31.
930e30a
- Use fixperms macro instead of our own chmod incantation.
930e30a
17f4fe1
* Wed Sep 13 2006 Steven Pritchard <steve@kspei.com> 0.30-1
17f4fe1
- Update to 0.30.
17f4fe1
8c0968f
* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 0.29-2
8c0968f
- Minor spec cleanup.
8c0968f
7207af2
* Fri Jul 07 2006 Steven Pritchard <steve@kspei.com> 0.29-1
7207af2
- Update to 0.29.
7207af2
3139c21
* Fri Jun 30 2006 Steven Pritchard <steve@kspei.com> 0.28-1
3139c21
- Update to 0.28
3139c21
d97d293
* Sat Feb 18 2006 Steven Pritchard <steve@kspei.com> 0.27-2
d97d293
- Rebuild
d97d293
80606b8
* Tue Jan 10 2006 Steven Pritchard <steve@kspei.com> 0.27-1
80606b8
- Update to 0.27
80606b8
22e4ac1
* Wed Oct 12 2005 Steven Pritchard <steve@kspei.com> 0.26-6
22e4ac1
- Another rebuild
22e4ac1
8737c28
* Sat Sep 24 2005 Steven Pritchard <steve@kspei.com> 0.26-5
8737c28
- Rebuild for new db4 in rawhide
8737c28
a962847
* Mon Sep 05 2005 Steven Pritchard <steve@kspei.com> 0.26-4
a962847
- Spec cleanup
a962847
- Include COPYING and Artistic
a962847
f3cd687
* Wed Aug 03 2005 Steven Pritchard <steve@kspei.com> 0.26-3
f3cd687
- Move OPTIMIZE to Makefile.PL instead of make
f3cd687
1068f6b
* Mon Aug 01 2005 Steven Pritchard <steve@kspei.com> 0.26-2
1068f6b
- Various fixes from Paul Howarth:
1068f6b
  - Add description
1068f6b
  - Fix permissions on docs (also Paul Howarth)
1068f6b
  - Add OPTIMIZE to make
1068f6b
  - Don't own perl_vendorarch/auto/
1068f6b
  - BuildRequire Test::Pod and MLDBM
1068f6b
1068f6b
* Wed Jul 06 2005 Steven Pritchard <steve@kspei.com> 0.26-1
1068f6b
- Specfile autogenerated.
1068f6b
- Add BuildRequires db4-devel.
1068f6b
- Install dbinfo script.