# 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-Devel-CheckCompiler Version: 0.07 Release: 21.%{__distinit}%{__distvers} Summary: Check the compiler's availability License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-CheckCompiler Source0: https://cpan.metacpan.org/modules/by-module/Devel/Devel-CheckCompiler-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(Module::Build::Tiny) >= 0.035 # Module Runtime BuildRequires: perl(Config) BuildRequires: perl(Exporter) BuildRequires: perl(ExtUtils::CBuilder) BuildRequires: perl(File::Temp) BuildRequires: perl(parent) BuildRequires: perl(strict) BuildRequires: perl(utf8) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(Test::More) >= 0.96 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(File::Temp) %description Devel::CheckCompiler is checker for compiler's availability. %prep %setup -q -n Devel-CheckCompiler-%{version} %build perl Build.PL --installdirs=vendor ./Build %install ./Build install --destdir=%{buildroot} --create_packlist=0 %{_fixperms} -c %{buildroot} %check ./Build test %files %license LICENSE %doc Changes README.md %{perl_vendorlib}/Devel/ %{_mandir}/man3/Devel::AssertC99.3* %{_mandir}/man3/Devel::CheckCompiler.3* %changelog * Tue Mar 28 2023 Paul Howarth - 0.07-21 - Use SPDX-format license tag - Fix permissions of installed files - Use %%license unconditionally * Thu Jun 6 2019 Paul Howarth - 0.07-9 - Modernize spec - Switch upstream from search.cpan.org to metacpan.org - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Don't explicitly clean buildroot in %%install section - Drop explicit %%clean section - Drop support for building with Test::More < 0.96 - Drop support for building with Module::Build::Tiny < 0.035 - Drop legacy BuildRoot: and Group: tags * Sat Nov 19 2016 Paul Howarth - 0.07-1 - Update to 0.07 - Correct test dependency - Add patch to support building with Module::Build::Tiny < 0.035 * Wed Aug 17 2016 Paul Howarth - 0.06-3 - BR: perl-generators where available * Tue Jun 30 2015 Paul Howarth - 0.06-1 - Update to 0.06 - More strict C99 check code - Fix for older GCC(< 5.0) * Sat Oct 4 2014 Paul Howarth - 0.05-1 - Initial RPM version