2021-08-31 09:23:01 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-Syntax-Keyword-Gather
|
|
|
|
#
|
2024-08-25 18:22:49 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2021-08-31 09:23:01 +00: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 https://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
%define cpan_name Syntax-Keyword-Gather
|
|
|
|
Name: perl-Syntax-Keyword-Gather
|
2024-08-25 18:22:49 +00:00
|
|
|
Version: 1.3.2
|
2021-08-31 09:23:01 +00:00
|
|
|
Release: 0
|
2024-08-25 18:22:49 +00:00
|
|
|
# 1.003002 -> normalize -> 1.3.2
|
|
|
|
%define cpan_version 1.003002
|
2021-08-31 09:23:01 +00:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
|
|
Summary: Implements the Perl 6 'gather/take' control structure in Perl 5
|
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
2024-08-25 18:22:49 +00:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/F/FR/FREW/%{cpan_name}-%{cpan_version}.tar.gz
|
2021-08-31 09:23:01 +00:00
|
|
|
Source1: cpanspec.yml
|
2025-08-12 18:17:21 +02:00
|
|
|
Source100: README.md
|
2021-08-31 09:23:01 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(Sub::Exporter::Progressive)
|
|
|
|
BuildRequires: perl(Test::More) >= 0.94
|
|
|
|
Requires: perl(Sub::Exporter::Progressive)
|
2024-08-25 18:22:49 +00:00
|
|
|
Provides: perl(Syntax::Keyword::Gather) = %{version}
|
|
|
|
Provides: perl(Syntax::Keyword::Gather::MagicArrayRef) = %{version}
|
|
|
|
%undefine __perllib_provides
|
2021-08-31 09:23:01 +00:00
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
Perl 6 provides a new control structure -- 'gather' -- that allows lists to
|
|
|
|
be constructed procedurally, without the need for a temporary variable.
|
|
|
|
Within the block/closure controlled by a 'gather' any call to 'take' pushes
|
|
|
|
that call's argument list to an implicitly created array. 'take' returns
|
|
|
|
the number of elements it took. This module implements that control
|
|
|
|
structure.
|
|
|
|
|
|
|
|
At the end of the block's execution, the 'gather' returns the list of
|
|
|
|
values stored in the array (in a list context) or a reference to the array
|
|
|
|
(in a scalar context).
|
|
|
|
|
|
|
|
%prep
|
2024-08-25 18:22:49 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
|
|
|
|
|
|
|
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
2021-08-31 09:23:01 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%make_build
|
|
|
|
|
|
|
|
%check
|
|
|
|
make test
|
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
|
|
|
%doc Changes README
|
|
|
|
%license LICENSE
|
|
|
|
|
|
|
|
%changelog
|