2011-01-17 18:15:35 +00:00
|
|
|
#
|
2011-11-17 15:49:33 +00:00
|
|
|
# spec file for package perl-Sub-Exporter-GlobExporter
|
2011-01-17 18:15:35 +00:00
|
|
|
#
|
2023-01-04 15:35:23 +00:00
|
|
|
# Copyright (c) 2023 SUSE LLC
|
2011-01-17 18:15:35 +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.
|
|
|
|
|
2023-01-04 15:35:23 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-01-17 18:15:35 +00:00
|
|
|
#
|
|
|
|
|
2012-01-09 10:53:42 +00:00
|
|
|
|
2023-01-04 15:35:23 +00:00
|
|
|
%define cpan_name Sub-Exporter-GlobExporter
|
2011-01-17 18:15:35 +00:00
|
|
|
Name: perl-Sub-Exporter-GlobExporter
|
2023-01-04 15:35:23 +00:00
|
|
|
Version: 0.006
|
2013-06-04 18:43:15 +00:00
|
|
|
Release: 0
|
2023-01-04 15:35:23 +00:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
|
|
Summary: Export shared globs with Sub::Exporter collectors
|
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
2015-11-11 14:55:11 +00:00
|
|
|
Source1: cpanspec.yml
|
2025-08-12 18:17:17 +02:00
|
|
|
Source100: README.md
|
2011-02-01 17:17:19 +00:00
|
|
|
BuildArch: noarch
|
2011-01-17 18:15:35 +00:00
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
2023-01-04 15:35:23 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.78
|
2011-02-01 17:17:19 +00:00
|
|
|
BuildRequires: perl(Sub::Exporter)
|
2013-06-04 18:43:15 +00:00
|
|
|
BuildRequires: perl(Test::More) >= 0.96
|
2011-01-17 18:15:35 +00:00
|
|
|
Requires: perl(Sub::Exporter)
|
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
2015-11-11 14:55:11 +00:00
|
|
|
Sub::Exporter::GlobExporter provides only one routine, 'glob_exporter',
|
|
|
|
which may be called either by its full name or may be imported on request.
|
|
|
|
|
|
|
|
my $exporter = glob_exporter( $default_name, $globref_locator );
|
|
|
|
|
2023-01-04 15:35:23 +00:00
|
|
|
The routine returns a collection validator that will export a glob into the
|
|
|
|
importing package. It will export it under the name '$default_name', unless
|
|
|
|
an alternate name is given (as shown above). The glob that is installed is
|
|
|
|
specified by the '$globref_locator', which can be either the globref
|
|
|
|
itself, or a reference to a string which will be called on the exporter
|
2015-11-11 14:55:11 +00:00
|
|
|
|
2023-01-04 15:35:23 +00:00
|
|
|
For an example, see the SYNOPSIS, in which a method is defined to produce
|
2015-11-11 14:55:11 +00:00
|
|
|
the globref to share. This allows the glob-exporting package to be
|
|
|
|
subclassed, so the subclass may choose to either re-use the same glob when
|
|
|
|
exporting or to export a new one.
|
|
|
|
|
|
|
|
If there are entries in the arguments to the globref-exporting collector
|
|
|
|
_other_ than those beginning with a dash, a hashref of them will be passed
|
|
|
|
to the globref locator. In other words, if we were to write this:
|
|
|
|
|
|
|
|
use Shared::Symbol '$Symbol' => { arg => 1, -as => 2 };
|
|
|
|
|
|
|
|
It would result in a call like the following:
|
|
|
|
|
|
|
|
my $globref = Shared::Symbol->_shared_globref({ arg => 1 });
|
2011-01-17 18:15:35 +00:00
|
|
|
|
|
|
|
%prep
|
2023-01-04 15:35:23 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{version}
|
2011-01-17 18:15:35 +00:00
|
|
|
|
|
|
|
%build
|
2023-01-04 15:35:23 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%make_build
|
2011-01-17 18:15:35 +00:00
|
|
|
|
|
|
|
%check
|
2023-01-04 15:35:23 +00:00
|
|
|
make test
|
2011-01-17 18:15:35 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2023-01-04 15:35:23 +00:00
|
|
|
%doc Changes README
|
|
|
|
%license LICENSE
|
2011-01-17 18:15:35 +00:00
|
|
|
|
|
|
|
%changelog
|