Accepting request 317485 from devel:languages:perl:autoupdate

- updated to 2.11
   see /usr/share/doc/packages/perl-File-Path/Changes
  2.11     2015-07-17
      - Change argument check error from croak to carp since there are some
        dependent modules using non-standard options.  The error check will
        move back to croak when dependent modules have the opportunity to
        correct the argument.
  
  2.10_005 2015-07-17
      - Better argument checking and reporting of failure for unrecognized
        options.
      - RT 71562 Document automount race condition limitation and workaround
      - RT 99230 Document multithreaded application limitation and that the
        limitation may be removed in a future release.
  
  2.10_004 2015-07-10
      - Remove use of English.pm since it breaks many older Perls
      - Fix a unit test skip count for users who have not installed
        Test::Output
  
  2.10_003 2015-07-08
      - Administrative changes to MANIFEST and MANIFEST.SKIP
      - Style changes to Path.pm for easier reading of code
      - Removal of pod.t
      - Use English.pm to make variables like $! more fluent for code readers
  
  2.10_002 2015-06-26
      - RT 42139.  Add better SKIP test emit for VMS.
      - RT 85360.  Fix typos and better .gitignore and MANIFEST.SKIP settings.
      - RT 51588.  Added patch elements but unable to verify on VMS.

OBS-URL: https://build.opensuse.org/request/show/317485
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-File-Path?expand=0&rev=2
This commit is contained in:
Stephan Kulow 2015-07-19 10:02:57 +00:00 committed by Git OBS Bridge
parent 20380ed84b
commit 8fe4a557bc
5 changed files with 79 additions and 8 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d1e0b5b7f93cc4133e2fc206a34e00dd868886b7ed850d799ccee824d25a225e
size 20683

3
File-Path-2.11.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d94492c072d08bdbbd40fd75a1010ff279e99333b63b4308b1f818fe6309dd0f
size 25194

23
cpanspec.yml Normal file
View File

@ -0,0 +1,23 @@
---
description_paragraphs: 1
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

View File

@ -1,3 +1,48 @@
-------------------------------------------------------------------
Sun Jul 19 08:50:47 UTC 2015 - coolo@suse.com
- updated to 2.11
see /usr/share/doc/packages/perl-File-Path/Changes
2.11 2015-07-17
- Change argument check error from croak to carp since there are some
dependent modules using non-standard options. The error check will
move back to croak when dependent modules have the opportunity to
correct the argument.
2.10_005 2015-07-17
- Better argument checking and reporting of failure for unrecognized
options.
- RT 71562 Document automount race condition limitation and workaround
- RT 99230 Document multithreaded application limitation and that the
limitation may be removed in a future release.
2.10_004 2015-07-10
- Remove use of English.pm since it breaks many older Perls
- Fix a unit test skip count for users who have not installed
Test::Output
2.10_003 2015-07-08
- Administrative changes to MANIFEST and MANIFEST.SKIP
- Style changes to Path.pm for easier reading of code
- Removal of pod.t
- Use English.pm to make variables like $! more fluent for code readers
2.10_002 2015-06-26
- RT 42139. Add better SKIP test emit for VMS.
- RT 85360. Fix typos and better .gitignore and MANIFEST.SKIP settings.
- RT 51588. Added patch elements but unable to verify on VMS.
2.10_001 2015-06-24
- RT 39949. Report errors on lstat failure.
- RT 53178. Deprecate UNIVERSAL::isa usage
- RT 70657. Test added.
- RT 70938. Documentation fix for Windows native relative usage
- RT 72256. Option added for setting permission (chmod)
- RT 73840. Fix taint/untaint bug.
- RT 95150. Add CPAN metadata for source tree location.
- RT 103512. Documentation language fix.
-------------------------------------------------------------------
Fri Jan 17 20:07:03 UTC 2014 - lars@linux-schulserver.de

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-File-Path
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,14 +17,16 @@
Name: perl-File-Path
Version: 2.09
Version: 2.11
Release: 0
%define cpan_name File-Path
%define cpan_name File-Path
Summary: Create or remove directory trees
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/File-Path/
Source: http://www.cpan.org/authors/id/D/DL/DLAND/%{cpan_name}-%{version}.tar.gz
#Source0: http://www.cpan.org/authors/id/D/DL/DLAND/%{cpan_name}-2.09.tar.gz
Source0: File-Path-2.11.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
@ -37,6 +39,7 @@ depth and to delete an entire directory subtree from the filesystem.
%prep
%setup -q -n %{cpan_name}-%{version}
find . -type f -print0 | xargs -0 chmod 644
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
@ -52,6 +55,6 @@ depth and to delete an entire directory subtree from the filesystem.
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes README TODO
%doc Changes README README.md TODO
%changelog