Blame SPECS/perl-IO-All.spec

0fdf33
# Enable optional MLDBM support
0fdf33
%if 0%{?rhel}
0fdf33
%bcond_with perl_IO_All_enables_mldbm
0fdf33
%else
0fdf33
%bcond_without perl_IO_All_enables_mldbm
0fdf33
%endif
0fdf33
# Run optional test
0fdf33
%bcond_without perl_IO_All_enables_optional_test
0fdf33
# Run extra test
0fdf33
%if 0%{?rhel}
0fdf33
%bcond_with perl_IO_All_enables_extra_test
0fdf33
%else
0fdf33
%bcond_without perl_IO_All_enables_extra_test
0fdf33
%endif
0fdf33
0fdf33
Name:           perl-IO-All
0fdf33
Version:        0.87
0fdf33
Release:        15%{?dist}
0fdf33
Summary:        IO::All Perl module
0fdf33
License:        GPL+ or Artistic
0fdf33
URL:            https://metacpan.org/release/IO-All
0fdf33
Source0:        https://cpan.metacpan.org/authors/id/F/FR/FREW/IO-All-%{version}.tar.gz
0fdf33
BuildArch:      noarch
0fdf33
# Module Build
0fdf33
BuildRequires:  coreutils
0fdf33
BuildRequires:  findutils
0fdf33
BuildRequires:  make
0fdf33
BuildRequires:  perl-generators
0fdf33
BuildRequires:  perl-interpreter
0fdf33
BuildRequires:  perl(ExtUtils::MakeMaker)
0fdf33
# Module Runtime
0fdf33
BuildRequires:  perl(Carp)
0fdf33
BuildRequires:  perl(Cwd)
0fdf33
BuildRequires:  perl(Fcntl)
0fdf33
BuildRequires:  perl(File::Copy)
0fdf33
BuildRequires:  perl(File::Glob)
0fdf33
BuildRequires:  perl(File::MimeInfo)
0fdf33
BuildRequires:  perl(File::Path)
0fdf33
BuildRequires:  perl(File::ReadBackwards)
0fdf33
BuildRequires:  perl(File::Spec)
0fdf33
BuildRequires:  perl(IO::Dir)
0fdf33
BuildRequires:  perl(IO::File)
0fdf33
BuildRequires:  perl(IO::Handle)
0fdf33
BuildRequires:  perl(IO::Socket)
0fdf33
%if %{with perl_IO_All_enables_mldbm}
0fdf33
BuildRequires:  perl(MLDBM)
0fdf33
%endif
0fdf33
BuildRequires:  perl(overload)
0fdf33
BuildRequires:  perl(POSIX)
0fdf33
BuildRequires:  perl(Scalar::Util)
0fdf33
BuildRequires:  perl(strict)
0fdf33
BuildRequires:  perl(Symbol)
0fdf33
BuildRequires:  perl(Tie::File)
0fdf33
BuildRequires:  perl(warnings)
0fdf33
# Test Suite
0fdf33
BuildRequires:  perl(base)
0fdf33
BuildRequires:  perl(Config)
0fdf33
BuildRequires:  perl(Data::Dumper)
0fdf33
BuildRequires:  perl(diagnostics)
0fdf33
BuildRequires:  perl(Exporter)
0fdf33
BuildRequires:  perl(File::Find)
0fdf33
BuildRequires:  perl(File::Spec::Functions)
0fdf33
BuildRequires:  perl(File::Temp)
0fdf33
BuildRequires:  perl(FindBin)
0fdf33
BuildRequires:  perl(IO::Socket::INET)
0fdf33
BuildRequires:  perl(lib)
0fdf33
BuildRequires:  perl(Test::More) >= 0.88
0fdf33
BuildRequires:  perl(utf8)
0fdf33
BuildRequires:  perl(vars)
0fdf33
%if %{with perl_IO_All_enables_optional_test}
0fdf33
# Optional Tests
0fdf33
BuildRequires:  perl(PerlIO::encoding)
0fdf33
%endif
0fdf33
%if %{with perl_IO_All_enables_extra_test}
0fdf33
# Extra Tests
0fdf33
BuildRequires:  perl(Test::Pod) >= 1.41
0fdf33
%endif
0fdf33
# Runtime
0fdf33
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
0fdf33
Requires:       perl(File::Copy)
0fdf33
Requires:       perl(File::MimeInfo)
0fdf33
Requires:       perl(File::Path)
0fdf33
Requires:       perl(File::ReadBackwards)
0fdf33
Requires:       perl(IO::Handle)
0fdf33
%if %{with perl_IO_All_enables_mldbm}
0fdf33
Recommends:     perl(MLDBM)
0fdf33
%endif
0fdf33
Requires:       perl(Tie::File)
0fdf33
Requires:       perl(warnings)
0fdf33
0fdf33
%description
0fdf33
The IO::All object is a proxy for IO::File, IO::Dir, IO::Socket,
0fdf33
IO::String, Tie::File, File::Spec, File::Path and File::ReadBackwards; as
0fdf33
well as all the DBM and MLDBM modules. You can use most of the methods
0fdf33
found in these classes and in IO::Handle (which they inherit from). IO::All
0fdf33
adds dozens of other helpful idiomatic methods including file stat and
0fdf33
manipulation functions.
0fdf33
0fdf33
%prep
0fdf33
%setup -q -n IO-All-%{version}
0fdf33
find -type f -perm /0100 -name '*.pm' -exec chmod -c a-x {} \;
0fdf33
0fdf33
%build
0fdf33
perl Makefile.PL INSTALLDIRS=vendor
0fdf33
make %{?_smp_mflags}
0fdf33
0fdf33
%install
0fdf33
make pure_install DESTDIR=%{buildroot}
0fdf33
find %{buildroot} -type f -name .packlist -delete
0fdf33
%{_fixperms} -c %{buildroot}
0fdf33
0fdf33
%check
0fdf33
%if %{with perl_IO_All_enables_extra_test}
0fdf33
RELEASE_TESTING=1
0fdf33
%else
0fdf33
unset RELEASE_TESTING
0fdf33
%endif
0fdf33
make %{?_smp_mflags} test
0fdf33
0fdf33
%files
0fdf33
%license LICENSE
0fdf33
%doc Changes CONTRIBUTING README example/
0fdf33
%{perl_vendorlib}/IO/
0fdf33
%{_mandir}/man3/IO::All.3*
0fdf33
%{_mandir}/man3/IO::All::DBM.3*
0fdf33
%{_mandir}/man3/IO::All::Dir.3*
0fdf33
%{_mandir}/man3/IO::All::File.3*
0fdf33
%{_mandir}/man3/IO::All::Filesys.3*
0fdf33
%{_mandir}/man3/IO::All::Link.3*
0fdf33
%{_mandir}/man3/IO::All::MLDBM.3*
0fdf33
%{_mandir}/man3/IO::All::Pipe.3*
0fdf33
%{_mandir}/man3/IO::All::STDIO.3*
0fdf33
%{_mandir}/man3/IO::All::Socket.3*
0fdf33
%{_mandir}/man3/IO::All::String.3*
0fdf33
%{_mandir}/man3/IO::All::Temp.3*
0fdf33
0fdf33
%changelog
0fdf33
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.87-15
0fdf33
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
0fdf33
  Related: rhbz#1991688
0fdf33
0fdf33
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.87-14
0fdf33
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
0fdf33
0fdf33
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.87-13
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
0fdf33
0fdf33
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.87-12
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
0fdf33
0fdf33
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 0.87-11
0fdf33
- Perl 5.32 rebuild
0fdf33
0fdf33
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.87-10
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
0fdf33
0fdf33
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.87-9
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
0fdf33
0fdf33
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.87-8
0fdf33
- Perl 5.30 rebuild
0fdf33
0fdf33
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.87-7
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
0fdf33
0fdf33
* Tue Jul 17 2018 Petr Pisar <ppisar@redhat.com> - 0.87-6
0fdf33
- Recommend MLDBM
0fdf33
0fdf33
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.87-5
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
0fdf33
0fdf33
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.87-4
0fdf33
- Perl 5.28 rebuild
0fdf33
0fdf33
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.87-3
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
0fdf33
0fdf33
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.87-2
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
0fdf33
0fdf33
* Wed Jul 19 2017 Paul Howarth <paul@city-fan.org> - 0.87-1
0fdf33
- Update to 0.87
0fdf33
  - Fix io($dir)->all when files have unicode in names (GH#95)
0fdf33
  - Stop trampling $!
0fdf33
  - Add cmp overload to fix some windows problems (GH#74)
0fdf33
- This release by FREW → update source URL
0fdf33
- Simplify find command using -delete
0fdf33
0fdf33
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.86-7
0fdf33
- Perl 5.26 rebuild
0fdf33
0fdf33
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.86-6
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
0fdf33
0fdf33
* Mon May 16 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.86-5
0fdf33
- Perl 5.24 rebuild
0fdf33
0fdf33
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.86-4
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
0fdf33
0fdf33
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.86-3
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0fdf33
0fdf33
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.86-2
0fdf33
- Perl 5.22 rebuild
0fdf33
0fdf33
* Sun Jan  4 2015 Paul Howarth <paul@city-fan.org> - 0.86-1
0fdf33
- Update to 0.86 (revamp docs)
0fdf33
- This release by INGY → update source URL
0fdf33
0fdf33
* Wed Dec 17 2014 Petr Šabata <contyk@redhat.com> - 0.85-1
0fdf33
- Update to 0.85
0fdf33
- A Windows test fix only
0fdf33
0fdf33
* Mon Dec 15 2014 Paul Howarth <paul@city-fan.org> - 0.84-1
0fdf33
- Update to 0.84
0fdf33
  - Allow passing an argument to ->relative
0fdf33
  - Pass separator along when tie'ing (GH#52)
0fdf33
  - Add ->copy method
0fdf33
  - Prefix private methods with underscores
0fdf33
0fdf33
* Fri Nov 14 2014 Petr Pisar <ppisar@redhat.com> - 0.82-1
0fdf33
- 0.82 bump
0fdf33
  - Use bsd_glob for ::Dir->glob
0fdf33
0fdf33
* Thu Nov  6 2014 Paul Howarth <paul@city-fan.org> - 0.81-1
0fdf33
- Update to 0.81
0fdf33
  - Make the Role Call list link to their doc sections
0fdf33
  - Fixed a doc formatting bug
0fdf33
0fdf33
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.79-2
0fdf33
- Perl 5.20 rebuild
0fdf33
0fdf33
* Fri Sep  5 2014 Paul Howarth <paul@city-fan.org> - 0.79-1
0fdf33
- Update to 0.79
0fdf33
  - Add t/000-compile-modules.t
0fdf33
  - Eliminate File::Basename from test/
0fdf33
  - Eliminate spurious trailing whitespace
0fdf33
  - Meta 0.0.2
0fdf33
  - Remove 'use 5.x.x' from code
0fdf33
  - Fix strict/warnings
0fdf33
  - Change testdir to t
0fdf33
  - Replace tabs with spaces
0fdf33
  - Add new overloads from PR/49
0fdf33
  - Doc enhancement (PR/51)
0fdf33
0fdf33
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.68-2
0fdf33
- Perl 5.20 rebuild
0fdf33
0fdf33
* Thu Aug 14 2014 Paul Howarth <paul@city-fan.org> - 0.68-1
0fdf33
- Update to 0.68
0fdf33
  - Fix Copyright years
0fdf33
  - Documentation fixes
0fdf33
- Use %%license
0fdf33
0fdf33
* Thu Jul 17 2014 Paul Howarth <paul@city-fan.org> - 0.66-1
0fdf33
- Update to 0.66
0fdf33
  - Move doc to Swim
0fdf33
  - Fix Meta and add Contributing file
0fdf33
- Include new upstream documentation
0fdf33
0fdf33
* Mon Jun 16 2014 Paul Howarth <paul@city-fan.org> - 0.65-1
0fdf33
- Update to 0.65
0fdf33
  - New badge syntax
0fdf33
  - Changed the ABSTRACT
0fdf33
  - Support recommended modules again
0fdf33
0fdf33
* Tue Jun 10 2014 Paul Howarth <paul@city-fan.org> - 0.63-1
0fdf33
- Update to 0.63
0fdf33
  - Convert release to Zilla::Dist
0fdf33
  - Convert documentation to Kwim
0fdf33
  - Add coveralls badge
0fdf33
- This release by INGY -> update source URL
0fdf33
0fdf33
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.61-2
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0fdf33
0fdf33
* Wed May  7 2014 Paul Howarth <paul@city-fan.org> - 0.61-1
0fdf33
- Update to 0.61
0fdf33
  - Fix head() returning prematurely
0fdf33
    (https://github.com/ingydotnet/io-all-pm/issues/44)
0fdf33
0fdf33
* Sat Mar 22 2014 Paul Howarth <paul@city-fan.org> - 0.60-1
0fdf33
- Update to 0.60
0fdf33
  - Fix IO Layer situation
0fdf33
0fdf33
* Fri Mar  7 2014 Paul Howarth <paul@city-fan.org> - 0.59-1
0fdf33
- Update to 0.59
0fdf33
  - Fix possible infinite loop in t/accept.t (GH#42)
0fdf33
  - Fix yet another utf8 validation issue (GH#38)
0fdf33
  - Fix warnings running t/tie.t on Windows (GH#37)
0fdf33
0fdf33
* Mon Mar  3 2014 Paul Howarth <paul@city-fan.org> - 0.58-1
0fdf33
- Update to 0.58
0fdf33
  - Fix canonpath on MSWin32
0fdf33
  - Fix marking files as both binary and utf8 (closes GH#36)
0fdf33
0fdf33
* Fri Feb 14 2014 Paul Howarth <paul@city-fan.org> - 0.57-1
0fdf33
- Update to 0.57
0fdf33
  - Make '' not become / when using io->dir('')
0fdf33
  - Add a fix for io->file("foobar")->assert
0fdf33
  - Make io->file('') not break on Windows systems
0fdf33
  - Fix dangling file handles in tests
0fdf33
  - Make mkdir die if it fails (CPAN RT#61697)
0fdf33
  - Fix possible path test issues, especially in Win32
0fdf33
  - Fix ->binary under -utf8 import mode (CPAN RT#81224)
0fdf33
  - Validate UTF-8 in ->utf8 (CPAN RT#74642)
0fdf33
  - Consistently use :encoding($encoding) (CPAN RT#68512)
0fdf33
  - Pass perms to mkpath in assert_dirpath (CPAN RT#53687)
0fdf33
  - Fix minor POD niggle (CPAN RT#83798)
0fdf33
  - Remove broken test for ->mimetype (CPAN RT#91743)
0fdf33
  - Skip t/encoding.t for perls built without PerlIO::encoding (CPAN RT#26230)
0fdf33
  - Abandon RT in favor of GitHub Issues
0fdf33
  - Remove mentions of unimplemented strict (GH#15)
0fdf33
  - Allow testing on non-SDBM DBM's
0fdf33
  - Change minimum perl version to 5.8.1, and thus remove dep for IO::String
0fdf33
  - Return realpath for canonpath when possible (GH#34)
0fdf33
  - Correctly check exists for ::File, ::Dir, and ::Link
0fdf33
  - Fix test failures on MacOS (CPAN RT#61627/GH#29, CPAN RT#82633/GH#32)
0fdf33
  - Some documentation clean-up around the SYNOPSIS
0fdf33
  - Fix printing to a tie'd object (GH#26)
0fdf33
  - Fix tests if $^X ne 'perl' (GH#35)
0fdf33
- This release by FREW -> update source URL
0fdf33
- Package upstream's README.md file
0fdf33
- Run the Pod test too
0fdf33
0fdf33
* Sat Oct 19 2013 Paul Howarth <paul@city-fan.org> - 0.50-1
0fdf33
- Update to 0.50
0fdf33
  - Fix various tests on Windows (CPAN RT#89609)
0fdf33
  - Fix wrong return precedence (CPAN RT#87200)
0fdf33
- This release by INGY -> update source URL
0fdf33
0fdf33
* Tue Oct  8 2013 Paul Howarth <paul@city-fan.org> - 0.48-1
0fdf33
- Update to 0.48
0fdf33
  - Add ->os method to ::Filesys
0fdf33
  - Switch from Module::Install to Dist::Zilla
0fdf33
0fdf33
* Sun Oct  6 2013 Paul Howarth <paul@city-fan.org> - 0.47-1
0fdf33
- Update to 0.47
0fdf33
  - Add ->glob method to ::Dir
0fdf33
  - Add list based constructors to ::Dir and ::File
0fdf33
  - Add ->mimetype method to ::FileSys
0fdf33
  - Add ->ext method to ::FileSys
0fdf33
  - All tests should be parallelizable
0fdf33
- This release by FREW -> update source URL
0fdf33
- Specify all dependencies
0fdf33
- Make %%files list more explicit
0fdf33
- Don't use macros for commands
0fdf33
- Drop redundant %%{?perl_default_filter}
0fdf33
0fdf33
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.46-4
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0fdf33
0fdf33
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 0.46-3
0fdf33
- Perl 5.18 rebuild
0fdf33
- Correct find usage
0fdf33
0fdf33
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.46-2
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
0fdf33
0fdf33
* Fri Sep 07 2012 Iain Arnell <iarnell@gmail.com> 0.46-1
0fdf33
- update to latest upstream version
0fdf33
- clean up spec for modern rpmbuild
0fdf33
0fdf33
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.41-7
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
0fdf33
0fdf33
* Tue Jun 12 2012 Petr Pisar <ppisar@redhat.com> - 0.41-6
0fdf33
- Perl 5.16 rebuild
0fdf33
0fdf33
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.41-5
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
0fdf33
0fdf33
* Sun Jun 19 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.41-4
0fdf33
- Perl mass rebuild
0fdf33
0fdf33
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.41-3
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0fdf33
0fdf33
* Fri Dec 17 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.41-2
0fdf33
- Rebuild to fix problems with vendorarch/lib (#661697)
0fdf33
0fdf33
* Tue Dec 14 2010 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.41-1
0fdf33
- Update to 0.41 (Fix FTBFS: BZ 660953).
0fdf33
- Remove requires-filter.
0fdf33
- Remove R:/BR: perl(Spiffy).
0fdf33
0fdf33
* Sun May 02 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.39-6
0fdf33
- Mass rebuild with perl-5.12.0
0fdf33
0fdf33
* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.39-5
0fdf33
- rebuild against perl 5.10.1
0fdf33
0fdf33
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.39-4
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0fdf33
0fdf33
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.39-3
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0fdf33
0fdf33
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.39-2
0fdf33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0fdf33
0fdf33
* Mon Dec 15 2008 Steven Pritchard <steve@kspei.com> 0.39-1
0fdf33
- Update to 0.39.
0fdf33
- Fix permissions on *.pm.
0fdf33
0fdf33
* Sat Feb 02 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.38-3
0fdf33
- rebuild for new perl
0fdf33
0fdf33
* Mon Dec 31 2007 Ralf Corsépius <rc040203@freenet.de> 0.38-2
0fdf33
- Adjust License-tag.
0fdf33
- BR: perl(Test::More) (BZ 419631).
0fdf33
0fdf33
* Tue Apr 17 2007 Steven Pritchard <steve@kspei.com> 0.38-1
0fdf33
- Update to 0.38.
0fdf33
- BR ExtUtils::MakeMaker.
0fdf33
- BR MLDBM for better test coverage.
0fdf33
0fdf33
* Tue Oct 17 2006 Steven Pritchard <steve@kspei.com> 0.36-1
0fdf33
- Update to 0.36.
0fdf33
- Use fixperms macro instead of our own chmod incantation.
0fdf33
0fdf33
* Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 0.35-4
0fdf33
- Fix find option order.
0fdf33
0fdf33
* Fri Jul 07 2006 Steven Pritchard <steve@kspei.com> 0.35-3
0fdf33
- BR IO::String so the tests actually pass.
0fdf33
0fdf33
* Fri Jul 07 2006 Steven Pritchard <steve@kspei.com> 0.35-2
0fdf33
- Re-enable "make test".
0fdf33
- BR File::ReadBackwards for better test coverage.
0fdf33
0fdf33
* Wed May 24 2006 Steven Pritchard <steve@kspei.com> 0.35-1
0fdf33
- Update to 0.35.
0fdf33
0fdf33
* Fri Mar 10 2006 Steven Pritchard <steve@kspei.com> 0.33-3
0fdf33
- Change dep filter.
0fdf33
- Various cleanups to match current cpanspec.
0fdf33
0fdf33
* Mon Feb 27 2006 Steven Pritchard <steve@kspei.com> 0.33-2
0fdf33
- Filter Requires: perl(mixin).
0fdf33
- Turn off "make test" for now.
0fdf33
- Drop explict BR: perl.
0fdf33
0fdf33
* Wed Dec 28 2005 Steven Pritchard <steve@kspei.com> 0.33-1
0fdf33
- Specfile autogenerated.