Accepting request 345321 from devel:languages:perl
1 OBS-URL: https://build.opensuse.org/request/show/345321 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Path-Tiny?expand=0&rev=10
This commit is contained in:
commit
555db787de
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d7507c7822d4f7f60a5329d26c8afce31022cd92d02b011e367cc6a1eeae6981
|
|
||||||
size 80366
|
|
3
Path-Tiny-0.076.tar.gz
Normal file
3
Path-Tiny-0.076.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:10bafd96f561f0e811be764d557efffbd53ba9b044a79c82e97db8e27d5cc764
|
||||||
|
size 81008
|
@ -1,3 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 19 10:11:53 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.076
|
||||||
|
see /usr/share/doc/packages/perl-Path-Tiny/Changes
|
||||||
|
|
||||||
|
0.076 2015-11-16 10:47:24-05:00 America/New_York
|
||||||
|
|
||||||
|
- no changes from 0.075
|
||||||
|
|
||||||
|
0.075 2015-11-15 21:02:18-05:00 America/New_York (TRIAL RELEASE)
|
||||||
|
|
||||||
|
[FIXED]
|
||||||
|
|
||||||
|
- Tilde expansion on Windows was resulting in backslashes. Now they
|
||||||
|
are correctly normalized to forward slashes.
|
||||||
|
|
||||||
|
[DOCS]
|
||||||
|
|
||||||
|
- Typos fixed
|
||||||
|
|
||||||
|
0.073 2015-10-30 10:36:18-04:00 America/New_York (TRIAL RELEASE)
|
||||||
|
|
||||||
|
[FIXED]
|
||||||
|
|
||||||
|
- Fixed spewing to a symlink that crosses a filesystem boundary
|
||||||
|
|
||||||
|
[PREREQS]
|
||||||
|
|
||||||
|
- Add Test::MockRandom to META as an recommended test prerequisite.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 21 09:08:05 UTC 2015 - coolo@suse.com
|
Tue Jul 21 09:08:05 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Path-Tiny
|
Name: perl-Path-Tiny
|
||||||
Version: 0.072
|
Version: 0.076
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Path-Tiny
|
%define cpan_name Path-Tiny
|
||||||
Summary: File path utility
|
Summary: File path utility
|
||||||
@ -31,23 +31,23 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Digest::SHA) >= 5.45
|
BuildRequires: perl(Digest::SHA) >= 5.45
|
||||||
BuildRequires: perl(File::Path) >= 2.07
|
BuildRequires: perl(File::Path) >= 2.070000
|
||||||
BuildRequires: perl(File::Spec) >= 3.40
|
BuildRequires: perl(File::Spec) >= 3.40
|
||||||
BuildRequires: perl(File::Temp) >= 0.19
|
BuildRequires: perl(File::Temp) >= 0.19
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
Requires: perl(Digest::SHA) >= 5.45
|
Requires: perl(Digest::SHA) >= 5.45
|
||||||
Requires: perl(File::Path) >= 2.07
|
Requires: perl(File::Path) >= 2.070000
|
||||||
Requires: perl(File::Spec) >= 3.40
|
Requires: perl(File::Spec) >= 3.40
|
||||||
Requires: perl(File::Temp) >= 0.19
|
Requires: perl(File::Temp) >= 0.19
|
||||||
Recommends: perl(Unicode::UTF8) >= 0.58
|
Recommends: perl(Unicode::UTF8) >= 0.58
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This module provide a small, fast utility for working with file paths. It
|
This module provides a small, fast utility for working with file paths. It
|
||||||
is friendlier to use than the File::Spec manpage and provides easy access
|
is friendlier to use than File::Spec and provides easy access to functions
|
||||||
to functions from several other core file handling modules. It aims to be
|
from several other core file handling modules. It aims to be smaller and
|
||||||
smaller and faster than many alternatives on CPAN while helping people do
|
faster than many alternatives on CPAN, while helping people do many common
|
||||||
many common things in consistent and less error-prone ways.
|
things in consistent and less error-prone ways.
|
||||||
|
|
||||||
Path::Tiny does not try to work for anything except Unix-like and Win32
|
Path::Tiny does not try to work for anything except Unix-like and Win32
|
||||||
platforms. Even then, it might break if you try something particularly
|
platforms. Even then, it might break if you try something particularly
|
||||||
@ -62,8 +62,11 @@ appropriate (if supported by the platform).
|
|||||||
|
|
||||||
The '*_utf8' methods ('slurp_utf8', 'lines_utf8', etc.) operate in raw
|
The '*_utf8' methods ('slurp_utf8', 'lines_utf8', etc.) operate in raw
|
||||||
mode. On Windows, that means they will not have CRLF translation from the
|
mode. On Windows, that means they will not have CRLF translation from the
|
||||||
':crlf' IO layer. Installing the Unicode::UTF8 manpage 0.58 or later will
|
':crlf' IO layer. Installing Unicode::UTF8 0.58 or later will speed up
|
||||||
speed up '*_utf8' situations in many cases and is highly recommended.
|
'*_utf8' situations in many cases and is highly recommended.
|
||||||
|
|
||||||
|
This module depends heavily on PerlIO layers for correct operation and thus
|
||||||
|
requires Perl 5.008001 or later.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
Loading…
Reference in New Issue
Block a user