forked from pool/perl-Path-Tiny
Accepting request 368898 from devel:languages:perl
1 OBS-URL: https://build.opensuse.org/request/show/368898 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Path-Tiny?expand=0&rev=11
This commit is contained in:
commit
ccd4cfc363
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:10bafd96f561f0e811be764d557efffbd53ba9b044a79c82e97db8e27d5cc764
|
|
||||||
size 81008
|
|
3
Path-Tiny-0.084.tar.gz
Normal file
3
Path-Tiny-0.084.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:633f463e380404d4aaa8ebdd1977b5e387256aa2770eb142b169737978749bea
|
||||||
|
size 89052
|
@ -1,3 +1,65 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 8 10:48:07 UTC 2016 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.084
|
||||||
|
see /usr/share/doc/packages/perl-Path-Tiny/Changes
|
||||||
|
|
||||||
|
0.084 2016-03-04 07:17:49-05:00 America/New_York
|
||||||
|
|
||||||
|
[Fixes]
|
||||||
|
|
||||||
|
- Fixed relative() for the case with regex metacharacters in the path
|
||||||
|
|
||||||
|
0.082 2016-03-01 18:23:26-05:00 America/New_York
|
||||||
|
|
||||||
|
[!!! INCOMPATIBLE CHANGES !!!]
|
||||||
|
|
||||||
|
- (This warning repeated from 0.079-TRIAL) The relative() method no
|
||||||
|
longer uses File::Spec's buggy rel2bs method. The new Path::Tiny
|
||||||
|
algorithm should be comparable and passes File::Spec rel2abs test
|
||||||
|
cases, except that it correctly accounts for symlinks. For common
|
||||||
|
use, you are not likely to notice any difference. For uncommon use,
|
||||||
|
this should be an improvement. As a side benefit, this change drops
|
||||||
|
the minimum File::Spec version required, allowing Path::Tiny to be
|
||||||
|
fatpacked if desired.
|
||||||
|
|
||||||
|
[Changes]
|
||||||
|
|
||||||
|
- no other changes from 0.081
|
||||||
|
|
||||||
|
0.081 2016-02-18 16:55:37-05:00 America/New_York (TRIAL RELEASE)
|
||||||
|
|
||||||
|
[Fixed]
|
||||||
|
|
||||||
|
- Fixed lines_utf8+chomp and relative() bugs on Windows
|
||||||
|
|
||||||
|
0.079 2016-02-15 20:52:10-07:00 America/Mazatlan (TRIAL RELEASE)
|
||||||
|
|
||||||
|
[!!! INCOMPATIBLE CHANGES !!!]
|
||||||
|
|
||||||
|
- The relative() method no longer uses File::Spec's buggy rel2bs
|
||||||
|
method. The new Path::Tiny algorithm should be comparable and passes
|
||||||
|
File::Spec rel2abs test cases, except that it correctly accounts for
|
||||||
|
symlinks. For common use, you are not likely to notice any
|
||||||
|
difference. For uncommon use, this should be an improvement. As a
|
||||||
|
side benefit, this change drops the minimum File::Spec version
|
||||||
|
required, allowing Path::Tiny to be fatpacked if desired.
|
||||||
|
|
||||||
|
[FIXED]
|
||||||
|
|
||||||
|
- Fixed lines_utf8() with chomping for repeated empty lines.
|
||||||
|
|
||||||
|
[DOCS]
|
||||||
|
|
||||||
|
- Documented that subclassing is not supported
|
||||||
|
|
||||||
|
0.077 2016-02-10 14:17:32-07:00 America/Mazatlan (TRIAL RELEASE)
|
||||||
|
|
||||||
|
[ADDED]
|
||||||
|
|
||||||
|
- Added 'edit' and 'edit_lines' plus _utf8 and _raw variants; this
|
||||||
|
is similar to perl's -i flag (though without backups)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 19 10:11:53 UTC 2015 - coolo@suse.com
|
Thu Nov 19 10:11:53 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Path-Tiny
|
# spec file for package perl-Path-Tiny
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Path-Tiny
|
Name: perl-Path-Tiny
|
||||||
Version: 0.076
|
Version: 0.084
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Path-Tiny
|
%define cpan_name Path-Tiny
|
||||||
Summary: File path utility
|
Summary: File path utility
|
||||||
@ -32,12 +32,10 @@ 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.070000
|
BuildRequires: perl(File::Path) >= 2.070000
|
||||||
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.070000
|
Requires: perl(File::Path) >= 2.070000
|
||||||
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}
|
||||||
|
Loading…
Reference in New Issue
Block a user