# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif Name: perl-Sub-Exporter-Progressive Version: 0.001013 Release: 21.%{__distinit}%{__distvers} Summary: Only use Sub::Exporter if you need it License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Exporter-Progressive Source0: https://cpan.metacpan.org/modules/by-module/Sub/Sub-Exporter-Progressive-%{version}.tar.gz BuildArch: noarch # =============== Module Build ====================== BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # =============== Module Runtime ==================== BuildRequires: perl(Carp) BuildRequires: perl(Exporter) >= 5.58 BuildRequires: perl(strict) BuildRequires: perl(Sub::Exporter) BuildRequires: perl(warnings) # =============== Test Suite ======================== BuildRequires: perl(constant) BuildRequires: perl(lib) BuildRequires: perl(Test::More) >= 0.88 # =============== Extra Tests ======================= BuildRequires: perl(Test::Pod) >= 1.41 # =============== Module Runtime ==================== %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(Carp) Requires: perl(Exporter) >= 5.58 Requires: perl(Sub::Exporter) %description Sub::Exporter is an incredibly powerful module, but with that power comes great responsibility, er- as well as some runtime penalties. This module is a Sub::Exporter wrapper that will let your users just use Exporter if all they are doing is picking exports, but use Sub::Exporter if your users try to use Sub::Exporter's more advanced features, like renaming exports, if they try to use them. Note that this module will export @EXPORT and @EXPORT_OK package variables for Exporter to work. Additionally, if your package uses advanced Sub::Exporter features like currying, this module will only ever use Sub::Exporter, so you might as well use it directly. %prep %setup -q -n Sub-Exporter-Progressive-%{version} %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete %{_fixperms} -c %{buildroot} %check make test AUTHOR_TESTING=1 RELEASE_TESTING=1 %files %license LICENSE %doc Changes README %{perl_vendorlib}/Sub/ %{_mandir}/man3/Sub::Exporter::Progressive.3* %changelog * Fri May 12 2023 Paul Howarth - 0.001013-21 - Spec tidy-up - Use SPDX-format license tag - Use %%license unconditionally * Mon Jun 3 2019 Paul Howarth - 0.001013-9 - Perl 5.30 rebuild * Thu Apr 12 2018 Paul Howarth - 0.001013-5 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section - Drop workaround for building with Test::More < 0.88 * Sat Oct 22 2016 Paul Howarth - 0.001013-1 - Update to 0.001013 - Avoid possible warnings about special variables only being used once - Update old Test::More patch * Wed Aug 24 2016 Paul Howarth - 0.001012-1 - Update to 0.001012 - Many small performance improvements - BR: perl-generators where available - Simplify find command using -delete - Update old Test::More patch - Package new LICENSE file * Wed Sep 10 2014 Paul Howarth - 0.001011-3 - Drop %%defattr, redundant since rpm 4.4 * Mon Oct 28 2013 Paul Howarth - 0.001011-1 - Update to 0.001011 - Fix in global destruction - Fix SYNOPSIS - Fix duplicate word in DESCRIPTION (CPAN RT#86072) * Fri Jul 19 2013 Paul Howarth - 0.001010-2 - Perl 5.18 rebuild * Wed Mar 27 2013 Paul Howarth - 0.001010-1 - Update to 0.001010 - Fix module name in Makefile.PL (CPAN RT#83932) - Work around Exporter.pm not installable on perl < 5.8.0 - Update old Test::More patch * Wed Mar 13 2013 Paul Howarth - 0.001009-1 - Update to 0.001009 - Disallow version names in random parts of the import list for consistency with Sub::Exporter (CPAN RT#83491) - This release by FREW -> update source URL - Update old Test::More patch, and apply if we have Test::More < 0.88 * Tue Jan 22 2013 Paul Howarth - 0.001008-1 - Update to 0.001008 - Rewrite -tag to :tag for Exporter.pm - Fix prereqs - Update old Test::More patch, and apply if we have Test::More < 0.96 - Bump perl(Exporter) version requirement to 5.58 * Mon Aug 27 2012 Paul Howarth - 0.001006-1 - Update to 0.001006 - Handle ':all' correctly - Update old Test::More patch - Drop redundant buildreq perl(Test::Pod) * Sat Aug 25 2012 Paul Howarth - 0.001005-1 - Update to 0.001005 - Add support for tags - Warn if defaults are not in exports - Add explicit dependency on Test::More 0.89 - This release by LEONT -> update source URL - Update old Test::More patch * Thu Aug 9 2012 Paul Howarth - 0.001004-1 - Update to 0.001004 (fix skipping when Sub::Exporter isn't installed) - This release by MSTROUT -> update source URL - No LICENSE file in this release - Release not built using Dist::Zilla, so drop EU::MM patch - Update old Test::More patch * Wed Aug 1 2012 Paul Howarth - 0.001003-1 - Update to 0.001003 (remove warning if there are no defaults) * Wed Aug 1 2012 Paul Howarth - 0.001002-1 - Initial RPM build