2011-04-14 07:45:26 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-Array-Window (Version 1.02)
|
|
|
|
#
|
|
|
|
# Copyright (c) 2010 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-Array-Window
|
|
|
|
Version: 1.02
|
|
|
|
Release: 1
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
%define cpan_name Array-Window
|
|
|
|
Summary: Calculate windows/subsets/pages of arrays.
|
|
|
|
Url: http://search.cpan.org/dist/Array-Window/
|
|
|
|
Group: Development/Libraries/Perl
|
|
|
|
Source: http://www.cpan.org/authors/id/A/AD/ADAMK/%{cpan_name}-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
2018-10-07 12:27:57 +00:00
|
|
|
BuildRequires: perl(Module::Install)
|
2011-04-14 07:45:26 +00:00
|
|
|
BuildRequires: perl(Params::Util) >= 0.12
|
|
|
|
BuildRequires: perl(Test::More) >= 0.47
|
|
|
|
Requires: perl(Params::Util) >= 0.12
|
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
Many applications require that a large set of results be broken down into a
|
|
|
|
smaller set of 'windows', or 'pages' in web language. Array::Window
|
|
|
|
implements an algorithm specifically for dealing with these windows. It is
|
|
|
|
very flexible and permissive, making adjustments to the window as needed.
|
|
|
|
|
|
|
|
Note that this is NOT under Math:: for a reason. It doesn't implement in a
|
|
|
|
pure fashion, it handles idiosyncracies and corner cases specifically
|
|
|
|
relating to the presentation of data.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
%{__make} test
|
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%clean
|
|
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(-,root,root,755)
|
2011-04-15 07:26:53 +00:00
|
|
|
%doc Changes LICENSE README
|
2011-04-14 07:45:26 +00:00
|
|
|
|
|
|
|
%changelog
|