2013-06-28 18:57:03 +02:00
|
|
|
#
|
|
|
|
# spec file for package perl-Tie-Cycle
|
|
|
|
#
|
2024-03-01 09:39:29 +01:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
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.
|
|
|
|
|
2021-01-14 15:15:41 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2013-06-28 18:57:03 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2021-01-14 15:15:41 +01:00
|
|
|
%define cpan_name Tie-Cycle
|
2013-06-28 18:57:03 +02:00
|
|
|
Name: perl-Tie-Cycle
|
2024-03-01 09:39:29 +01:00
|
|
|
Version: 1.228.0
|
2013-06-28 18:57:03 +02:00
|
|
|
Release: 0
|
2024-03-01 09:39:29 +01:00
|
|
|
%define cpan_version 1.228
|
2017-04-24 10:30:13 +02:00
|
|
|
License: Artistic-2.0
|
2024-03-01 09:39:29 +01:00
|
|
|
Summary: Cycle through a list of values via a scalar
|
2021-01-14 15:15:41 +01:00
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
2024-03-01 09:39:29 +01:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{cpan_version}.tar.gz
|
2016-02-08 07:21:42 +01:00
|
|
|
Source1: cpanspec.yml
|
2013-06-28 18:57:03 +02:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
2022-01-13 12:31:18 +01:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.64
|
2021-01-14 15:15:41 +01:00
|
|
|
BuildRequires: perl(Test::More) >= 1
|
2024-03-01 09:39:29 +01:00
|
|
|
Provides: perl(Tie::Cycle) = %{version}
|
|
|
|
%define __perllib_provides /bin/true
|
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
|
2024-03-01 09:39:29 +01:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
2013-06-28 18:57:03 +02:00
|
|
|
|
|
|
|
%build
|
2021-01-14 15:15:41 +01:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%make_build
|
2013-06-28 18:57:03 +02:00
|
|
|
|
|
|
|
%check
|
2021-01-14 15:15:41 +01:00
|
|
|
make test
|
2013-06-28 18:57:03 +02:00
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2017-02-14 10:08:07 +01:00
|
|
|
%doc Changes CONTRIBUTING.md examples
|
|
|
|
%license LICENSE
|
2013-06-28 18:57:03 +02:00
|
|
|
|
|
|
|
%changelog
|