# 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-ExtUtils-Config Version: 0.010 Release: 1.%{__distinit}%{__distvers} Summary: A wrapper for perl's configuration License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-Config Source0: https://cpan.metacpan.org/modules/by-module/ExtUtils/ExtUtils-Config-%{version}.tar.gz BuildArch: noarch # Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module BuildRequires: perl(Config) BuildRequires: perl(Data::Dumper) BuildRequires: perl(ExtUtils::MakeMaker::Config) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(blib) BuildRequires: perl(File::Spec) BuildRequires: perl(IO::Handle) BuildRequires: perl(IPC::Open3) BuildRequires: perl(Test::More) >= 0.88 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(Data::Dumper) %description ExtUtils::Config is an abstraction around the %%Config hash. %prep %setup -q -n ExtUtils-Config-%{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 %files %license LICENSE %doc Changes README %{perl_vendorlib}/ExtUtils/ %{_mandir}/man3/ExtUtils::Config.3* %{_mandir}/man3/ExtUtils::Config::MakeMaker.3* %changelog * Sat Aug 17 2024 Paul Howarth - 0.010-1 - Update to 0.010 - Fix regression in serialize method * Fri Apr 26 2024 Paul Howarth - 0.009-1 - Update to 0.009 - Add a but method - Add ExtUtils::Config::MakeMaker - Release tests moved to xt/, stop running them * Sat Apr 8 2023 Paul Howarth - 0.008-28 - Use SPDX-format license tag - Use %%license unconditionally * Wed Jun 24 2020 Paul Howarth - 0.008-20 - Perl 5.32 rebuild * Fri May 31 2019 Paul Howarth - 0.008-15 - Perl 5.30 rebuild * Mon Nov 19 2018 Paul Howarth - 0.008-13 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Don't run release tests whilst bootstrapping - 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 * Mon Aug 22 2016 Paul Howarth - 0.008-6 - BR: perl-generators where available - Simplify find command using -delete * Thu Sep 11 2014 Paul Howarth - 0.008-2 - Use %%license where possible * Thu Jun 26 2014 Paul Howarth - 0.008-1 - Update to 0.008 - Remove set, clear, clone methods - Update patch for building with old Test::More versions - Drop support for old distributions prior to FC-5 - Drop %%defattr, redundant since rpm 4.4 - Drop patch for building with ExtUtils::MakeMaker < 6.30 * Fri Jul 19 2013 Paul Howarth - 0.007-3 - Avoid Test::Kwalitee as it tries to verify the module's signature, which will fail if we have to patch Makefile.PL, tests etc. for old distribution support * Fri Jul 5 2013 Paul Howarth - 0.007-2 - Don't BR: perl(Test::Kwalitee) when bootstrapping * Sun Mar 31 2013 Paul Howarth - 0.007-1 - Initial RPM version