Files
perl-Syntax-Keyword-Gather/perl-Syntax-Keyword-Gather.spec

76 lines
2.6 KiB
RPMSpec
Raw Permalink Normal View History

#
# spec file for package perl-Syntax-Keyword-Gather
#
# Copyright (c) 2024 SUSE LLC
#
# 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
Version: 1.3.2
Release: 0
# 1.003002 -> normalize -> 1.3.2
%define cpan_version 1.003002
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}
Source0: https://cpan.metacpan.org/authors/id/F/FR/FREW/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
2025-08-12 18:17:21 +02:00
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Sub::Exporter::Progressive)
BuildRequires: perl(Test::More) >= 0.94
Requires: perl(Sub::Exporter::Progressive)
Provides: perl(Syntax::Keyword::Gather) = %{version}
Provides: perl(Syntax::Keyword::Gather::MagicArrayRef) = %{version}
%undefine __perllib_provides
%{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
%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
%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