Blame SPECS/perl-IO-All.spec

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