8
0

Accepting request 615373 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/615373
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Hash-MoreUtils?expand=0&rev=11
This commit is contained in:
Stephan Kulow
2018-06-09 06:39:51 +00:00
committed by Git OBS Bridge
parent c72dc615b7
commit aef41f7be9
5 changed files with 65 additions and 16 deletions

View File

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

View File

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

28
cpanspec.yml Normal file
View File

@@ -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

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Sat Jun 9 05:32:46 UTC 2018 - coolo@suse.com
- updated to 0.06
see /usr/share/doc/packages/perl-Hash-MoreUtils/Changes
0.06 2018-06-08
- update toolchain for modern perl environments including
* automated regression test
* test coverage analyzation
* pod coverage
- introducing common code style
- introduce a bunch of missing functions:
* slice_without (Thanks to Theo van Hoesel <Th.J.v.Hoesel@THEMA-MEDIA.nl>)
* slice_missing / slice_missing_map (Thanks to Christoph Zimmermann <christophemzim@web.de>)
* slice_notdef / slice_notdef_map (Thanks to Christoph Zimmermann <christophemzim@web.de>)
* slice_true / slice_true_map
* slice_false / slice_false_map
-------------------------------------------------------------------
Sun Feb 9 13:33:37 UTC 2014 - coolo@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Hash-MoreUtils
#
# Copyright (c) 2014 SUSE LINUX Products 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,42 +17,44 @@
Name: perl-Hash-MoreUtils
Version: 0.05
Version: 0.06
Release: 0
%define cpan_name Hash-MoreUtils
Summary: Provide the stuff missing in Hash::Util
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/Hash-MoreUtils/
Source: http://www.cpan.org/authors/id/R/RE/REHSACK/%{cpan_name}-%{version}.tar.gz
Source0: https://cpan.metacpan.org/authors/id/R/RE/REHSACK/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Module::Build) >= 0.4200
BuildRequires: perl(Test::More) >= 0.90
BuildRequires: perl(Test::More) >= 0.9
%{perl_requires}
%description
Similar to 'List::MoreUtils', 'Hash::MoreUtils' contains trivial but
commonly-used functionality for hashes.
Similar to List::MoreUtils, 'Hash::MoreUtils' contains trivial but
commonly-used functionality for hashes. The primary focus for the moment is
providing a common API - speeding up by XS is far away at the moment.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
./Build test
%{__make} test
%install
./Build install destdir=%{buildroot} create_packlist=0
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes README
%doc Changes README.md
%changelog