# 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 #TODO: BR: Test::Pod::No404s when available #TODO: BR: Test::Pod::LinkCheck when available Name: perl-Module-Implementation Version: 0.09 Release: 36.%{__distinit}%{__distvers} Summary: Loads one of several alternate underlying implementations for a module License: Artistic-2.0 URL: https://metacpan.org/release/perl-Module-Implementation Source0: https://cpan.metacpan.org/modules/by-module/Module/Module-Implementation-%{version}.tar.gz BuildArch: noarch # =================================================================== # Build requirements # =================================================================== BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # =================================================================== # Module requirements # =================================================================== BuildRequires: perl(Carp) BuildRequires: perl(Module::Runtime) >= 0.012 BuildRequires: perl(Try::Tiny) BuildRequires: perl(strict) BuildRequires: perl(warnings) # =================================================================== # Test suite requirements # =================================================================== BuildRequires: perl(blib) BuildRequires: perl(File::Spec) BuildRequires: perl(IO::Handle) BuildRequires: perl(IPC::Open3) BuildRequires: perl(lib) BuildRequires: perl(Test::Fatal) >= 0.006 BuildRequires: perl(Test::More) >= 0.96 BuildRequires: perl(Test::Requires) # =================================================================== # Optional test requirements # =================================================================== %if 0%{!?perl_bootstrap:1} BuildRequires: perl(CPAN::Meta) >= 2.120900 BuildRequires: perl(Test::CleanNamespaces) BuildRequires: perl(Test::Taint) %endif # =================================================================== # Author/Release test requirements # =================================================================== %if 0%{!?perl_bootstrap:1} BuildRequires: hunspell-en BuildRequires: perl(Pod::Coverage::TrustPod) BuildRequires: perl(Pod::Wordlist) BuildRequires: perl(Test::CPAN::Changes) >= 0.19 BuildRequires: perl(Test::EOL) BuildRequires: perl(Test::More) >= 0.96 BuildRequires: perl(Test::NoTabs) BuildRequires: perl(Test::Pod) >= 1.41 BuildRequires: perl(Test::Pod::Coverage) >= 1.08 BuildRequires: perl(Test::Portability::Files) BuildRequires: perl(Test::Spelling) >= 0.12 %endif # =================================================================== # Dependencies # =================================================================== %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(Carp) %description This module abstracts out the process of choosing one of several underlying implementations for a module. This can be used to provide XS and pure Perl implementations of a module, or it could be used to load an implementation for a given OS or any other case of needing to provide multiple implementations. This module is only useful when you know all the implementations ahead of time. If you want to load arbitrary implementations then you probably want something like a plugin system, not this module. %prep %setup -q -n Module-Implementation-%{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 %{!?perl_bootstrap:AUTHOR_TESTING=1 RELEASE_TESTING=1} %files %license LICENSE %doc Changes README.md %{perl_vendorlib}/Module/ %{_mandir}/man3/Module::Implementation.3* %changelog * Sun Apr 30 2023 Paul Howarth - 0.09-36 - Use SPDX-format license tag - Use %%license unconditionally * Tue Mar 10 2020 Paul Howarth - 0.09-24 - BR: perl(blib) for t/00-compile.t * Thu Jun 6 2019 Paul Howarth - 0.09-21 - Perl 5.30 rebuild * Thu Apr 26 2018 Paul Howarth - 0.09-15 - 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.96 * Tue Sep 6 2016 Paul Howarth - 0.09-9 - BR: perl-generators where available - Simplify find command using -delete * Sun Sep 7 2014 Paul Howarth - 0.09-1 - Update to 0.09 - Implemented and then reverted a change to use Sub::Name (CPAN RT#98097) - Drop support for old distributions prior to FC-5 - Drop %%defattr, redundant since rpm 4.4 - Drop support for building with ExtUtils::MakeMaker < 6.30 - Drop support for building without Test::Requires - Use Test::CPAN::Changes unconditionally - Use %%license where possible - Use a bundled Test::More rather than patching to support old versions * Thu Jan 16 2014 Paul Howarth - 0.07-2 - Don't run the author and release tests when bootstrapping * Mon Jul 15 2013 Paul Howarth - 0.07-1 - Update to 0.07 - Require Test::Fatal ≥ 0.006 to avoid test failures (CPAN RT#76809) - Explicitly run author tests - Add buildreqs for new tests - Apply old Test::More patch if we have Test::More < 0.96 - Update patches * Sun Jul 8 2012 Paul Howarth - 0.06-4 - Don't need to remove empty directories from the buildroot - Drop support for old distributions prior to FC-3: - Spelling dictionary is always aspell-en - Don't need to define %%{perl_vendorlib} - Use DESTDIR rather than PERL_INSTALL_ROOT - Use %%{_fixperms} macro rather than our own chmod incantation * Sun Feb 12 2012 Paul Howarth - 0.06-1 - Update to 0.06 - Require Module::Runtime 0.012, which has a number of useful bug fixes * Fri Feb 10 2012 Paul Howarth - 0.05-1 - Update to 0.05 - Make Test::Taint an optional dependency; it requires XS, and requiring a compiler for Module::Implementation defeats its purpose (CPAN RT#74817) - BR: perl(Test::Requires) for distributions that have it, and add a patch to support building without it elsewhere - Update patches for building with old ExtUtils::MakeMaker and Test::More versions * Thu Feb 9 2012 Paul Howarth - 0.04-1 - Update to 0.04 - This module no longer installs an _implementation() subroutine in callers; instead, you can call Module::Implementation::implementation_for($package) to get the implementation used for a given package - Update patch for building with old Test::More versions * Wed Feb 8 2012 Paul Howarth - 0.03-3 - Incorporate feedback from package review (#788258) - Correct License tag, which should be Artistic 2.0 - BR: perl(lib) for test suite - Explicitly require perl(Carp), not automatically detected * Tue Feb 7 2012 Paul Howarth - 0.03-1 - Initial RPM version