- New upstream release 0.040
- The 'filehandle' method now offers an option to return locked handles
based on the file mode
- The 'filehandle' method now respects default encoding set by the caller's
open pragma
153 lines
5.0 KiB
RPMSpec
153 lines
5.0 KiB
RPMSpec
Name: perl-Path-Tiny
|
|
Version: 0.040
|
|
Release: 1%{?dist}
|
|
Summary: File path utility
|
|
Group: Development/Libraries
|
|
License: ASL 2.0
|
|
URL: http://search.cpan.org/dist/Path-Tiny/
|
|
Source0: http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Path-Tiny-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
# Module Build
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.17
|
|
# Module Runtime
|
|
BuildRequires: perl(Carp)
|
|
BuildRequires: perl(constant)
|
|
BuildRequires: perl(Cwd)
|
|
BuildRequires: perl(Digest) >= 1.03
|
|
BuildRequires: perl(Digest::MD5)
|
|
BuildRequires: perl(Digest::SHA) >= 5.45
|
|
BuildRequires: perl(Exporter) >= 5.57
|
|
BuildRequires: perl(Fcntl)
|
|
BuildRequires: perl(File::Copy)
|
|
BuildRequires: perl(File::Path) >= 2.07
|
|
BuildRequires: perl(File::Spec) >= 3.40
|
|
BuildRequires: perl(File::stat)
|
|
BuildRequires: perl(File::Temp) >= 0.18
|
|
BuildRequires: perl(if)
|
|
BuildRequires: perl(overload)
|
|
BuildRequires: perl(strict)
|
|
BuildRequires: perl(threads)
|
|
BuildRequires: perl(warnings)
|
|
# Test Suite
|
|
BuildRequires: perl(blib)
|
|
BuildRequires: perl(Config)
|
|
BuildRequires: perl(File::Basename)
|
|
BuildRequires: perl(File::Spec::Functions)
|
|
BuildRequires: perl(File::Spec::Unix)
|
|
BuildRequires: perl(File::Temp) >= 0.19
|
|
BuildRequires: perl(IO::Handle)
|
|
BuildRequires: perl(IPC::Open3)
|
|
BuildRequires: perl(lib)
|
|
BuildRequires: perl(List::Util)
|
|
BuildRequires: perl(open)
|
|
BuildRequires: perl(Test::FailWarnings)
|
|
BuildRequires: perl(Test::More) >= 0.96
|
|
# Runtime
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
|
Requires: perl(Cwd)
|
|
Requires: perl(Digest) >= 1.03
|
|
Requires: perl(Digest::MD5)
|
|
Requires: perl(Digest::SHA) >= 5.45
|
|
Requires: perl(Fcntl)
|
|
Requires: perl(File::Copy)
|
|
Requires: perl(File::Path) >= 2.07
|
|
Requires: perl(File::stat)
|
|
Requires: perl(File::Temp) >= 0.18
|
|
Requires: perl(threads)
|
|
|
|
# For performance and consistency
|
|
BuildRequires: perl(Unicode::UTF8) >= 0.58
|
|
Requires: perl(Unicode::UTF8) >= 0.58
|
|
|
|
%description
|
|
This module attempts to provide a small, fast utility for working with file
|
|
paths. It is friendlier to use than File::Spec and provides easy access to
|
|
functions from several other core file handling modules.
|
|
|
|
It doesn't attempt to be as full-featured as IO::All or Path::Class, nor does
|
|
it try to work for anything except Unix-like and Win32 platforms. Even then, it
|
|
might break if you try something particularly obscure or tortuous.
|
|
|
|
All paths are forced to have Unix-style forward slashes. Stringifying the
|
|
object gives you back the path (after some clean up).
|
|
|
|
File input/output methods flock handles before reading or writing, as
|
|
appropriate.
|
|
|
|
The *_utf8 methods (slurp_utf8, lines_utf8, etc.) operate in raw mode without
|
|
CRLF translation.
|
|
|
|
%prep
|
|
%setup -q -n Path-Tiny-%{version}
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make pure_install DESTDIR=%{buildroot}
|
|
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
|
|
%{_fixperms} %{buildroot}
|
|
|
|
%check
|
|
make test
|
|
|
|
%files
|
|
%doc Changes CONTRIBUTING LICENSE README
|
|
%{perl_vendorlib}/Path/
|
|
%{_mandir}/man3/Path::Tiny.3pm*
|
|
|
|
%changelog
|
|
* Wed Oct 9 2013 Paul Howarth <paul@city-fan.org> - 0.040-1
|
|
- Update to 0.040
|
|
- The 'filehandle' method now offers an option to return locked handles
|
|
based on the file mode
|
|
- The 'filehandle' method now respects default encoding set by the caller's
|
|
open pragma
|
|
|
|
* Wed Oct 2 2013 Paul Howarth <paul@city-fan.org> - 0.038-1
|
|
- Update to 0.038
|
|
- Added 'is_rootdir' method to simplify testing if a path is the root
|
|
directory
|
|
|
|
* Thu Sep 26 2013 Paul Howarth <paul@city-fan.org> - 0.037-1
|
|
- Update to 0.037
|
|
- No longer lists 'threads' as a prerequisite; if you have a threaded perl,
|
|
you have it and if you've not, Path::Tiny doesn't care
|
|
- Fixed for v5.8
|
|
|
|
* Tue Sep 24 2013 Paul Howarth <paul@city-fan.org> - 0.035-1
|
|
- Update to 0.035
|
|
- Fixed flock warning on BSD that was broken with the autodie removal; now
|
|
also applies to all BSD flavors
|
|
|
|
* Tue Sep 24 2013 Paul Howarth <paul@city-fan.org> - 0.034-1
|
|
- Update to 0.034
|
|
- Exceptions are now Path::Tiny::Error objects, not autodie exceptions; this
|
|
removes the last dependency on autodie, which allows us to support Perls as
|
|
far back as v5.8.1
|
|
- BSD/NFS flock fix was not backwards compatible before v5.14; this fixes it
|
|
harder
|
|
- Lowered ExtUtils::MakeMaker configure_requires version to 6.17
|
|
|
|
* Thu Sep 12 2013 Paul Howarth <paul@city-fan.org> - 0.033-1
|
|
- Update to 0.033
|
|
- Perl on BSD may not support locking on an NFS filesystem: if this is
|
|
detected, Path::Tiny warns and continues in an unsafe mode (the 'flock'
|
|
warning category may be fatalized to die instead)
|
|
- Added 'iterator' example showing defaults
|
|
|
|
* Fri Sep 6 2013 Paul Howarth <paul@city-fan.org> - 0.032-1
|
|
- Update to 0.032
|
|
- Removed several test dependencies; Path::Tiny now only needs core modules,
|
|
though some must be upgraded on old Perls
|
|
|
|
* Tue Sep 3 2013 Paul Howarth <paul@city-fan.org> - 0.031-3
|
|
- BR: perl(Config) for the test suite (#1003660)
|
|
|
|
* Mon Sep 2 2013 Paul Howarth <paul@city-fan.org> - 0.031-2
|
|
- Sanitize for Fedora submission
|
|
|
|
* Mon Sep 2 2013 Paul Howarth <paul@city-fan.org> - 0.031-1
|
|
- Initial RPM version
|