From 8128d6c88a76fe07339fd119770c57d0811a83d2c29ceb319a3b72d533a6294b Mon Sep 17 00:00:00 2001 From: Pedro Monreal Gonzalez Date: Mon, 14 May 2018 09:00:44 +0000 Subject: [PATCH] Accepting request 606308 from devel:languages:perl:autoupdate automatic update OBS-URL: https://build.opensuse.org/request/show/606308 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-ExtUtils-InstallPaths?expand=0&rev=7 --- ExtUtils-InstallPaths-0.011.tar.gz | 3 -- ExtUtils-InstallPaths-0.012.tar.gz | 3 ++ cpanspec.yml | 28 +++++++++++++++ perl-ExtUtils-InstallPaths.changes | 10 ++++++ perl-ExtUtils-InstallPaths.spec | 55 +++++++++++++++--------------- 5 files changed, 69 insertions(+), 30 deletions(-) delete mode 100644 ExtUtils-InstallPaths-0.011.tar.gz create mode 100644 ExtUtils-InstallPaths-0.012.tar.gz create mode 100644 cpanspec.yml diff --git a/ExtUtils-InstallPaths-0.011.tar.gz b/ExtUtils-InstallPaths-0.011.tar.gz deleted file mode 100644 index 71ff603..0000000 --- a/ExtUtils-InstallPaths-0.011.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7609fa048cdcf1451cad5b1d7d494f30e3d5bad0672d15404f1ea60e1df0067c -size 18588 diff --git a/ExtUtils-InstallPaths-0.012.tar.gz b/ExtUtils-InstallPaths-0.012.tar.gz new file mode 100644 index 0000000..fc3a223 --- /dev/null +++ b/ExtUtils-InstallPaths-0.012.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84735e3037bab1fdffa3c2508567ad412a785c91599db3c12593a50a1dd434ed +size 17991 diff --git a/cpanspec.yml b/cpanspec.yml new file mode 100644 index 0000000..76ad4a4 --- /dev/null +++ b/cpanspec.yml @@ -0,0 +1,28 @@ +--- +#description_paragraphs: 3 +#description: |- +# override description from CPAN +#summary: override summary from CPAN +#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_build: |- +# rm unused.files +#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 diff --git a/perl-ExtUtils-InstallPaths.changes b/perl-ExtUtils-InstallPaths.changes index 495298c..01a9044 100644 --- a/perl-ExtUtils-InstallPaths.changes +++ b/perl-ExtUtils-InstallPaths.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Fri May 11 05:19:22 UTC 2018 - coolo@suse.com + +- updated to 0.012 + see /usr/share/doc/packages/perl-ExtUtils-InstallPaths/Changes + + 0.012 2018-05-10 21:03:33+02:00 Europe/Amsterdam + - Allow a argument to install_map with source dirs + - Make tests prove and 5.6 friendly + ------------------------------------------------------------------- Tue Apr 14 18:07:28 UTC 2015 - coolo@suse.com diff --git a/perl-ExtUtils-InstallPaths.spec b/perl-ExtUtils-InstallPaths.spec index be7b47c..5787911 100644 --- a/perl-ExtUtils-InstallPaths.spec +++ b/perl-ExtUtils-InstallPaths.spec @@ -1,7 +1,7 @@ # # spec file for package perl-ExtUtils-InstallPaths # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 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,15 @@ Name: perl-ExtUtils-InstallPaths -Version: 0.011 +Version: 0.012 Release: 0 %define cpan_name ExtUtils-InstallPaths Summary: Build.PL install path logic made easy -License: Artistic-1.0 or GPL-1.0+ +License: Artistic-1.0 OR GPL-1.0-or-later Group: Development/Libraries/Perl Url: http://search.cpan.org/dist/ExtUtils-InstallPaths/ -Source: http://www.cpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{version}.tar.gz +Source0: https://cpan.metacpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{version}.tar.gz +Source1: cpanspec.yml BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: perl @@ -38,7 +39,7 @@ This module tries to make install path resolution as easy as possible. When you want to install a module, it needs to figure out where to install things. The nutshell version of how this works is that default installation -locations are determined from the ExtUtils::Config manpage, and they may be +locations are determined from ExtUtils::Config, and they may be individually overridden by using the 'install_path' attribute. An 'install_base' attribute lets you specify an alternative installation root like _/home/foo_ and 'prefix' does something similar in a rather different @@ -50,48 +51,47 @@ The following types are supported by default. * * lib - Usually pure-Perl module files ending in _.pm_ or _.pod_. +Usually pure-Perl module files ending in _.pm_ or _.pod_. * * arch - "Architecture-dependent" module files, usually produced by compiling XS, - the Inline manpage, or similar code. +"Architecture-dependent" module files, usually produced by compiling XS, +Inline, or similar code. * * script - Programs written in pure Perl. In order to improve reuse, you may want to - make these as small as possible - put the code into modules whenever - possible. +Programs written in pure Perl. In order to improve reuse, you may want to +make these as small as possible - put the code into modules whenever +possible. * * bin - "Architecture-dependent" executable programs, i.e. compiled C code or - something. Pretty rare to see this in a perl distribution, but it - happens. +"Architecture-dependent" executable programs, i.e. compiled C code or +something. Pretty rare to see this in a perl distribution, but it happens. * * bindoc - Documentation for the stuff in 'script' and 'bin'. Usually generated from - the POD in those files. Under Unix, these are manual pages belonging to - the 'man1' category. Unless explicitly set, this is only available on - platforms supporting manpages. +Documentation for the stuff in 'script' and 'bin'. Usually generated from +the POD in those files. Under Unix, these are manual pages belonging to the +'man1' category. Unless explicitly set, this is only available on platforms +supporting manpages. * * libdoc - Documentation for the stuff in 'lib' and 'arch'. This is usually - generated from the POD in _.pm_ and _.pod_ files. Under Unix, these are - manual pages belonging to the 'man3' category. Unless explicitly set, - this is only available on platforms supporting manpages. +Documentation for the stuff in 'lib' and 'arch'. This is usually generated +from the POD in _.pm_ and _.pod_ files. Under Unix, these are manual pages +belonging to the 'man3' category. Unless explicitly set, this is only +available on platforms supporting manpages. * * binhtml - This is the same as 'bindoc' above, but applies to HTML documents. Unless - explicitly set, this is only available when perl was configured to do so. +This is the same as 'bindoc' above, but applies to HTML documents. Unless +explicitly set, this is only available when perl was configured to do so. * * libhtml - This is the same as 'libdoc' above, but applies to HTML documents. Unless - explicitly set, this is only available when perl was configured to do so. +This is the same as 'libdoc' above, but applies to HTML documents. Unless +explicitly set, this is only available when perl was configured to do so. %prep %setup -q -n %{cpan_name}-%{version} @@ -110,6 +110,7 @@ The following types are supported by default. %files -f %{name}.files %defattr(-,root,root,755) -%doc Changes LICENSE README +%doc Changes +%license LICENSE %changelog