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:
parent
5e30551dd8
commit
25a98d4ab2
@ -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
3
List-UtilsBy-0.11.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:faddf43b4bc21db8e4c0e89a26e5f23fe626cde3491ec651b6aa338627f5775a
|
||||||
|
size 22939
|
@ -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
|
Sat Jul 18 08:50:31 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-List-UtilsBy
|
# 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,14 +17,14 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-List-UtilsBy
|
Name: perl-List-UtilsBy
|
||||||
Version: 0.10
|
Version: 0.11
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name List-UtilsBy
|
%define cpan_name List-UtilsBy
|
||||||
Summary: Higher-Order List Utility Functions
|
Summary: Higher-Order List Utility Functions
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/List-UtilsBy/
|
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
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
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
|
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
|
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
|
'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
|
string value. The sort_by function sorts them according to the string value
|
||||||
value returned by the extra function, when given each 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
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
@ -63,6 +63,7 @@ value returned by the extra function, when given each value.
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes LICENSE README
|
%doc Changes README
|
||||||
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user