Update to 0.065
- New upstream release 0.065
- Added 'assert' method
- Added 'visit' method
- Added support for a negative count for 'lines' to get the last lines of a
file
- Fixed tilde expansion if path has spaces
- Make realpath non-fatal if the parent path exists and only the final path
component does not (was fatal on Windows and some Unixes)
- Removed rendundant locking on tempfile use for spewing
- Work around File::Temp bugs on older ActiveState Windows Perls
https://bugs.activestate.com/show_bug.cgi?id=104767
- Fixed SYNOPSIS example
This commit is contained in:
parent
c3ea76f4a6
commit
dee36f85d1
@ -1,5 +1,5 @@
|
||||
Name: perl-Path-Tiny
|
||||
Version: 0.061
|
||||
Version: 0.065
|
||||
Release: 1%{?dist}
|
||||
Summary: File path utility
|
||||
Group: Development/Libraries
|
||||
@ -21,6 +21,7 @@ BuildRequires: perl(Digest::SHA) >= 5.45
|
||||
BuildRequires: perl(Exporter) >= 5.57
|
||||
BuildRequires: perl(Fcntl)
|
||||
BuildRequires: perl(File::Copy)
|
||||
BuildRequires: perl(File::Glob)
|
||||
BuildRequires: perl(File::Path) >= 2.07
|
||||
BuildRequires: perl(File::Spec) >= 3.40
|
||||
BuildRequires: perl(File::stat)
|
||||
@ -50,6 +51,7 @@ Requires: perl(Digest::MD5)
|
||||
Requires: perl(Digest::SHA) >= 5.45
|
||||
Requires: perl(Fcntl)
|
||||
Requires: perl(File::Copy)
|
||||
Requires: perl(File::Glob)
|
||||
Requires: perl(File::Path) >= 2.07
|
||||
Requires: perl(File::stat)
|
||||
Requires: perl(File::Temp) >= 0.18
|
||||
@ -96,9 +98,23 @@ make test
|
||||
%license LICENSE
|
||||
%doc Changes CONTRIBUTING.mkdn README
|
||||
%{perl_vendorlib}/Path/
|
||||
%{_mandir}/man3/Path::Tiny.3pm*
|
||||
%{_mandir}/man3/Path::Tiny.3*
|
||||
|
||||
%changelog
|
||||
* Fri Mar 6 2015 Paul Howarth <paul@city-fan.org> - 0.065-1
|
||||
- Update to 0.065
|
||||
- Added 'assert' method
|
||||
- Added 'visit' method
|
||||
- Added support for a negative count for 'lines' to get the last lines of a
|
||||
file
|
||||
- Fixed tilde expansion if path has spaces
|
||||
- Make realpath non-fatal if the parent path exists and only the final path
|
||||
component does not (was fatal on Windows and some Unixes)
|
||||
- Removed rendundant locking on tempfile use for spewing
|
||||
- Work around File::Temp bugs on older ActiveState Windows Perls
|
||||
https://bugs.activestate.com/show_bug.cgi?id=104767
|
||||
- Fixed SYNOPSIS example
|
||||
|
||||
* Fri Nov 14 2014 Paul Howarth <paul@city-fan.org> - 0.061-1
|
||||
- Update to 0.061
|
||||
- Fixed append_utf8 and append_raw with 'truncate' option
|
||||
|
||||
Loading…
Reference in New Issue
Block a user