2011-08-02 10:28:44 +02:00
|
|
|
#
|
|
|
|
# spec file for package perl-List-UtilsBy (Version 0.07)
|
|
|
|
#
|
|
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
Name: perl-List-UtilsBy
|
|
|
|
Version: 0.07
|
|
|
|
Release: 1
|
2011-08-02 10:33:54 +02:00
|
|
|
License: GPL+ or Artistic
|
2011-08-02 10:28:44 +02:00
|
|
|
%define cpan_name List-UtilsBy
|
2011-08-02 10:33:54 +02:00
|
|
|
Summary: higher-order list utility functions
|
2011-08-02 10:28:44 +02:00
|
|
|
Url: http://search.cpan.org/dist/List-UtilsBy/
|
|
|
|
Group: Development/Libraries/Perl
|
2011-08-02 10:33:54 +02:00
|
|
|
Source: http://www.cpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{version}.tar.gz
|
2011-08-02 10:28:44 +02:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
2011-08-02 10:33:54 +02:00
|
|
|
BuildRequires: perl(Module::Build)
|
2011-08-02 10:28:44 +02:00
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
2011-08-02 10:33:54 +02:00
|
|
|
This module provides a number of list utility functions, all of which take
|
|
|
|
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.
|
|
|
|
|
|
|
|
my @names_sorted = sort @names;
|
|
|
|
|
|
|
|
my @people_sorted = sort_by { $_->name } @people;
|
2011-08-02 10:28:44 +02:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
2011-08-02 10:33:54 +02:00
|
|
|
%{__perl} Build.PL installdirs=vendor
|
|
|
|
./Build build flags=%{?_smp_mflags}
|
2011-08-02 10:28:44 +02:00
|
|
|
|
|
|
|
%check
|
2011-08-02 10:33:54 +02:00
|
|
|
./Build test
|
2011-08-02 10:28:44 +02:00
|
|
|
|
|
|
|
%install
|
2011-08-02 10:33:54 +02:00
|
|
|
./Build install destdir=%{buildroot} create_packlist=0
|
2011-08-02 10:28:44 +02:00
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%clean
|
|
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(-,root,root,755)
|
2011-08-02 10:33:54 +02:00
|
|
|
%doc Changes LICENSE README
|
2011-08-02 10:28:44 +02:00
|
|
|
|
|
|
|
%changelog
|