2013-06-28 18:57:03 +02:00
|
|
|
#
|
|
|
|
# spec file for package perl-Tie-Cycle
|
|
|
|
#
|
2017-02-14 10:08:07 +01:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2013-06-28 18:57:03 +02:00
|
|
|
#
|
|
|
|
# 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-Tie-Cycle
|
2017-04-24 10:30:13 +02:00
|
|
|
Version: 1.224
|
2013-06-28 18:57:03 +02:00
|
|
|
Release: 0
|
|
|
|
%define cpan_name Tie-Cycle
|
2015-04-15 07:05:50 +02:00
|
|
|
Summary: Cycle through a list of values via a scalar
|
2017-04-24 10:30:13 +02:00
|
|
|
License: Artistic-2.0
|
2013-06-28 18:57:03 +02:00
|
|
|
Group: Development/Libraries/Perl
|
|
|
|
Url: http://search.cpan.org/dist/Tie-Cycle/
|
2017-02-14 10:08:07 +01:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{version}.tar.gz
|
2016-02-08 07:21:42 +01:00
|
|
|
Source1: cpanspec.yml
|
2013-06-28 18:57:03 +02:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
2013-10-28 18:19:47 +01:00
|
|
|
BuildRequires: perl(Test::More) >= 0.95
|
2013-06-28 18:57:03 +02:00
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
You use 'Tie::Cycle' to go through a list over and over again. Once you get
|
|
|
|
to the end of the list, you go back to the beginning. You don't have to
|
|
|
|
worry about any of this since the magic of tie does that for you.
|
|
|
|
|
|
|
|
The tie takes an array reference as its third argument. The tie should
|
|
|
|
succeed unless the argument is not an array reference. Previous versions
|
|
|
|
required you to use an array that had more than one element (what's the
|
|
|
|
pointing of looping otherwise?), but I've removed that restriction since
|
|
|
|
the number of elements you want to use may change depending on the
|
|
|
|
situation.
|
|
|
|
|
|
|
|
During the tie, this module makes a shallow copy of the array reference. If
|
|
|
|
the array reference contains references, and those references are changed
|
|
|
|
after the tie, the elements of the cycle will change as well. See the
|
2013-10-28 18:19:47 +01:00
|
|
|
included _test.pl_ script for an example of this effect.
|
2013-06-28 18:57:03 +02:00
|
|
|
|
|
|
|
%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
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(-,root,root,755)
|
2017-02-14 10:08:07 +01:00
|
|
|
%doc Changes CONTRIBUTING.md examples
|
|
|
|
%license LICENSE
|
2013-06-28 18:57:03 +02:00
|
|
|
|
|
|
|
%changelog
|