# 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 # Perl and RPM versioning don't work the same :-( %global baseversion 0.12 %global extraversion 02 # Store keys in a temp directory %global gnupghome %(mktemp --directory) Name: perl-Test-Unit-Lite Epoch: 1 Version: %{baseversion}%{?extraversion:.}%{?extraversion} Release: 2.%{__distinit}%{__distvers} Summary: Unit testing without external dependencies License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Unit-Lite Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-Unit-Lite-%{baseversion}%{?extraversion}.tar.gz Source1: C0B10A5B.pub BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: gnupg2 BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(Module::Build) # Module Runtime BuildRequires: perl(base) BuildRequires: perl(Carp) BuildRequires: perl(Cwd) BuildRequires: perl(Exporter) BuildRequires: perl(File::Basename) BuildRequires: perl(File::Copy) BuildRequires: perl(File::Find) BuildRequires: perl(File::Path) BuildRequires: perl(File::Spec) BuildRequires: perl(strict) BuildRequires: perl(Symbol) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(Error) BuildRequires: perl(lib) BuildRequires: perl(Taint::Runtime) # Extra Tests (Readonly needed only for xt/copyright.t, which we don't run) BuildRequires: perl(ExtUtils::Manifest) BuildRequires: perl(File::Slurp) BuildRequires: perl(Readonly) BuildRequires: perl(Test::Builder) BuildRequires: perl(Test::CheckChanges) BuildRequires: perl(Test::CPAN::Changes) BuildRequires: perl(Test::CPAN::Meta) BuildRequires: perl(Test::DistManifest) BuildRequires: perl(Test::Distribution) BuildRequires: perl(Test::EOL) BuildRequires: perl(Test::Kwalitee) BuildRequires: perl(Test::MinimumVersion) BuildRequires: perl(Test::More) >= 0.88 BuildRequires: perl(Test::NoTabs) BuildRequires: perl(Test::Perl::Critic) BuildRequires: perl(Test::Pod) >= 1.14 BuildRequires: perl(Test::Pod::Coverage) >= 1.04 BuildRequires: perl(Test::Signature) BuildRequires: perl(Test::Spelling), hunspell-en BuildRequires: sed # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif # Filter unwanted provides and requires (rpm 4.9 onwards) %global __provides_exclude ^perl\\(Test::Unit::(Debug|HarnessUnit|Result|TestCase|TestRunner|TestSuite)\\)$ %global __requires_exclude ^perl\\(Test::Unit::Test(Runner|Suite)\\) %description This framework provides a lighter version of Test::Unit framework. It implements some of the Test::Unit classes and methods needed to run test units. Test::Unit::Lite tries to be compatible with public API of Test::Unit. It doesn't implement all classes and methods at 100% and only those necessary to run tests are available. %prep %setup -q -c -n Test-Unit-Lite # Copy up documentation for convenience with %%doc cp -a Test-Unit-Lite-%{baseversion}%{?extraversion}/{Changes,LICENSE,README} . # Import upstream's GPG key so we don't need to fetch it from a keyserver # when running the signature test GNUPGHOME=%{gnupghome} gpg2 --import %{SOURCE1} %build cd Test-Unit-Lite-%{baseversion}%{?extraversion} perl Build.PL --installdirs=vendor ./Build cd - %install cd Test-Unit-Lite-%{baseversion}%{?extraversion} ./Build install --destdir=%{buildroot} --create_packlist=0 cd - %{_fixperms} -c %{buildroot} %check export GNUPGHOME=%{gnupghome} cd Test-Unit-Lite-%{baseversion}%{?extraversion} # === MAIN TEST SUITE === # ./Build test # === EXTRA TESTS === # EXTRA_TESTS="$(echo xt/*.t)" # Don't run the copyright test as it will fail after the year of module release EXTRA_TESTS="$(echo $EXTRA_TESTS | sed 's|xt/copyright.t||')" # Don't run the spelling test yet as we need to add extra stopwords EXTRA_TESTS="$(echo $EXTRA_TESTS | sed 's|xt/pod_spell.t||')" # Signature test would fail on recent distros due to presence of MYMETA.* [ -f MYMETA.yml ] && mv MYMETA.yml .. [ -f MYMETA.json ] && mv MYMETA.json .. ./Build test --test_files "$EXTRA_TESTS" # Put any MYMETA.* files back where they were [ -f ../MYMETA.yml ] && mv ../MYMETA.yml . [ -f ../MYMETA.json ] && mv ../MYMETA.json . # Fix the POD Spell test and run it mv xt/pod_spellrc xt/pod_spellrc.orig ( cat xt/pod_spellrc.orig echo "ARG1" echo "ARG2" echo "doesn" ) > xt/pod_spellrc ./Build test --test_files xt/pod_spell.t mv xt/pod_spellrc.orig xt/pod_spellrc cd - %clean rm -rf %{buildroot} %{gnupghome} %files %license LICENSE %doc Changes README %{perl_vendorlib}/Test/ %{_mandir}/man3/Test::Unit::Lite.3* %changelog * Wed Jul 19 2023 Paul Howarth - 1:0.12.02-2 - Drop MODULE_COMPAT dependency from Fedora 38 onwards * Fri Oct 7 2022 Paul Howarth - 1:0.12.02-1 - Make rpm version reflect upstream version better (rhbz#2132720) - Assume build with rpm ≥ 4.9 - Use SPDX-format license tag - Use %%license unconditionally - Use mktemp to create GNUPGHOME * Sun Jun 9 2019 Paul Howarth - 1:0.12-35 - Perl 5.30 rebuild * Thu Apr 5 2018 Paul Howarth - 1:0.12-30 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl * Thu Jun 15 2017 Paul Howarth - 1:0.12-28 - Switch to gnupg2 for signature import, in line with Module::Signature - 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 - Spell checker is always hunspell now * Tue Jul 26 2016 Paul Howarth - 1:0.12-26 - Fix FTBFS when perl is not in the minimal buildroot - BR: perl-generators where available * Thu Jan 7 2016 Paul Howarth - 1:0.12-23 - Classify buildreqs by usage - Don't use %%define * Wed Sep 17 2014 Paul Howarth - 1:0.12-20 - BR: perl(Test::CPAN::Changes) unconditionally - Drop %%defattr, redundant since rpm 4.4 - Use %%license where possible * Fri Dec 21 2012 Paul Howarth - 1:0.12-14 - Update to 0.1202 - Fix for hash key randomization after 5.17.5 (CPAN RT#81879) - Run release tests and add lots of build dependencies for them * Sat Jun 23 2012 Paul Howarth - 1:0.12-13 - Perl 5.16 rebuild * Sun Mar 25 2012 Paul Howarth - 1:0.12-12 - Update to 0.1201 - Repackaged with newer Module::Builder * Sat Mar 24 2012 Paul Howarth - 1:0.12-11 - Add buildreqs for Perl core modules that could be dual-lived - Don't need to remove empty directories from buildroot - Drop support for distributions prior to FC-3: - Don't need to define %%{perl_vendorlib} - Don't need to run test suite with LC_ALL=C * Tue Jul 5 2011 Paul Howarth - 1:0.12-8 - Rebuild for perl 5.14.1 in Rawhide - Filter dependencies on perl(Test::Unit::TestRunner) and perl(Test::Unit::TestSuite) as this package includes its own implementation of these and we'd otherwise pull in the full Test::Unit - Fix dist tag for CentOS 6 and Scientific Linux * Thu May 5 2011 Paul Howarth - 1:0.12-7 - Import from Fedora * Wed Feb 09 2011 Fedora Release Engineering - 1:0.12-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Wed Dec 22 2010 Marcela Maslanova - 1:0.12-5 - Rebuild to fix problems with vendorarch/lib (#661697) * Fri May 07 2010 Marcela Maslanova - 1:0.12-4 - Mass rebuild with perl-5.12.0 * Fri Dec 4 2009 Stepan Kasal - 1:0.12-3 - Rebuild against perl 5.10.1 * Sun Jul 26 2009 Fedora Release Engineering - 1:0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Mon Jun 08 2009 Chris Weyl - 1:0.12-1 - Auto-update to 0.12 (by cpan-spec-update 0.01) - Add epoch of 1 (0.1101 => 0.12) * Thu Feb 26 2009 Fedora Release Engineering - 0.1101-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Thu Feb 12 2009 Allisson Azevedo - 0.1101-2 - Added filter provides * Thu Jan 29 2009 Allisson Azevedo - 0.1101-1 - Initial rpm release