Accepting request 573760 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/573760
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-List-UtilsBy?expand=0&rev=6
This commit is contained in:
Stephan Kulow 2018-02-07 15:53:02 +00:00 committed by Git OBS Bridge
parent 5e30551dd8
commit 25a98d4ab2
4 changed files with 25 additions and 11 deletions

View File

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

3
List-UtilsBy-0.11.tar.gz Normal file
View File

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

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Wed Feb 7 15:44:26 UTC 2018 - coolo@suse.com
- updated to 0.11
see /usr/share/doc/packages/perl-List-UtilsBy/Changes
0.11 2018-01-31 23:12:44
[CHANGES]
* Added 'minmax_by' (RT124275)
[BUGFIXES]
* use lib '.' for 5.26+ (RT120418)
-------------------------------------------------------------------
Sat Jul 18 08:50:31 UTC 2015 - coolo@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-List-UtilsBy
#
# 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,14 @@
Name: perl-List-UtilsBy
Version: 0.10
Version: 0.11
Release: 0
%define cpan_name List-UtilsBy
Summary: Higher-Order List Utility Functions
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/List-UtilsBy/
Source0: http://www.cpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{version}.tar.gz
Source0: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -40,12 +40,12 @@ an initial code block to control their behaviour. They are variations on
similar core perl or 'List::Util' functions of similar names, but which use
the block to control their behaviour. For example, the core Perl function
'sort' takes a list of values and returns them, sorted into order by their
string value. The 'sort_by' function sorts them according to the string
value returned by the extra function, when given each value.
string value. The sort_by function sorts them according to the string value
returned by the extra function, when given each value.
my @names_sorted = sort @names;
my @names_sorted = sort @names;
my @people_sorted = sort_by { $_->name } @people;
my @people_sorted = sort_by { $_->name } @people;
%prep
%setup -q -n %{cpan_name}-%{version}
@ -63,6 +63,7 @@ value returned by the extra function, when given each value.
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes LICENSE README
%doc Changes README
%license LICENSE
%changelog