Accepting request 202631 from devel:languages:perl
- updated to 0.038 [ADDITIONS] - Added 'is_rootdir' method to simplify testing if a path is the root directory [FIXES] - Fixed for v5.8 [PREREQS] - No longer lists 'threads' as a prerequisite. If you have a threaded perl, you have it and if you're not, Path::Tiny doesn't care. OBS-URL: https://build.opensuse.org/request/show/202631 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Path-Tiny?expand=0&rev=4
This commit is contained in:
commit
7e9bdf5b33
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:68e49e087dcc16ffdec2f9b1233c613413f70e4b288d80778c2d6b0630ccd934
|
|
||||||
size 44291
|
|
3
Path-Tiny-0.038.tar.gz
Normal file
3
Path-Tiny-0.038.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7bf03c86f7c02d2c391f50ae8d8e627aaa5423ad255165e3679f226447d9ca0d
|
||||||
|
size 45050
|
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 8 15:50:04 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.038
|
||||||
|
[ADDITIONS]
|
||||||
|
- Added 'is_rootdir' method to simplify testing if a path is
|
||||||
|
the root directory
|
||||||
|
|
||||||
|
[FIXES]
|
||||||
|
- Fixed for v5.8
|
||||||
|
|
||||||
|
[PREREQS]
|
||||||
|
- No longer lists 'threads' as a prerequisite. If you have a threaded
|
||||||
|
perl, you have it and if you're not, Path::Tiny doesn't care.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 25 07:34:04 UTC 2013 - opensuse@dstoecker.de
|
Wed Sep 25 07:34:04 UTC 2013 - opensuse@dstoecker.de
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Path-Tiny
|
Name: perl-Path-Tiny
|
||||||
Version: 0.035
|
Version: 0.038
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Path-Tiny
|
%define cpan_name Path-Tiny
|
||||||
Summary: File path utility
|
Summary: File path utility
|
||||||
@ -29,18 +29,19 @@ BuildArch: noarch
|
|||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Devel::Hide)
|
|
||||||
BuildRequires: perl(Digest::SHA) >= 5.45
|
BuildRequires: perl(Digest::SHA) >= 5.45
|
||||||
BuildRequires: perl(File::Path) >= 2.07
|
BuildRequires: perl(File::Path) >= 2.07
|
||||||
BuildRequires: perl(File::Spec) >= 3.40
|
BuildRequires: perl(File::Spec) >= 3.40
|
||||||
BuildRequires: perl(File::Temp) >= 0.18
|
BuildRequires: perl(File::Temp) >= 0.19
|
||||||
BuildRequires: perl(File::pushd)
|
|
||||||
BuildRequires: perl(Test::Deep)
|
|
||||||
BuildRequires: perl(Test::FailWarnings)
|
|
||||||
BuildRequires: perl(Test::Fatal)
|
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
|
#BuildRequires: perl(Path::Class)
|
||||||
|
#BuildRequires: perl(Path::Tiny)
|
||||||
|
#BuildRequires: perl(Pod::Wordlist)
|
||||||
|
#BuildRequires: perl(Test::FailWarnings)
|
||||||
|
#BuildRequires: perl(Test::Spelling) >= 0.12
|
||||||
|
#BuildRequires: perl(TestUtils)
|
||||||
|
#BuildRequires: perl(Unicode::UTF8) >= 0.58
|
||||||
Requires: perl(Digest::SHA) >= 5.45
|
Requires: perl(Digest::SHA) >= 5.45
|
||||||
Requires: perl(File::Copy)
|
|
||||||
Requires: perl(File::Path) >= 2.07
|
Requires: perl(File::Path) >= 2.07
|
||||||
Requires: perl(File::Spec) >= 3.40
|
Requires: perl(File::Spec) >= 3.40
|
||||||
Requires: perl(File::Temp) >= 0.18
|
Requires: perl(File::Temp) >= 0.18
|
||||||
@ -68,9 +69,6 @@ The '*_utf8' methods ('slurp_utf8', 'lines_utf8', etc.) operate in raw mode
|
|||||||
without CRLF translation. Installing the Unicode::UTF8 manpage 0.58 or
|
without CRLF translation. Installing the Unicode::UTF8 manpage 0.58 or
|
||||||
later will speed up several of them and is highly recommended.
|
later will speed up several of them and is highly recommended.
|
||||||
|
|
||||||
It uses the autodie manpage internally, so most failures will be thrown as
|
|
||||||
exceptions.
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
@ -88,6 +86,6 @@ exceptions.
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes CONTRIBUTING LICENSE perlcritic.rc README tidyall.ini
|
%doc Changes CONTRIBUTING cpanfile LICENSE perlcritic.rc README tidyall.ini
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user