# 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-Test-HasVersion Version: 0.014 Release: 27.%{__distinit}%{__distvers} Summary: Check Perl modules have version numbers License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-HasVersion Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-HasVersion-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(Config) # Module Runtime BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(File::Find) BuildRequires: perl(strict) BuildRequires: perl(Test::Builder) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(Test::Builder::Tester) >= 1.04 BuildRequires: perl(Test::More) # Optional Tests BuildRequires: perl(Test::Pod) >= 1.18 BuildRequires: perl(Test::Pod::Coverage) >= 1.04 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description Do you want to check that every one of your Perl modules in a distribution has a version number? You want to make sure you don't forget the brand new modules you just added? Well, this is the module you have been looking for. Do you want to check someone else's distribution to make sure the author has not committed the sin of leaving Perl modules without a version that can be used to tell if you have this or that feature? Test::HasVersion is also for you. %prep %setup -q -n Test-HasVersion-%{version} %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete # test_version described in Test::HasVersion manpage mkdir -p %{buildroot}%{_mandir}/man1 echo ".so man3/Test::HasVersion.$(perl -MConfig -e 'print $Config{man3ext}')" > %{buildroot}%{_mandir}/man1/test_version.1 %{_fixperms} -c %{buildroot} %check make test %files %license LICENSE %doc Changes README %{_bindir}/test_version %{perl_vendorlib}/Test/ %{_mandir}/man1/test_version.1* %{_mandir}/man3/Test::HasVersion.3* %changelog * Fri Sep 6 2024 Paul Howarth - 0.014-27 - Add manpage for test_version * Thu May 25 2023 Paul Howarth - 0.014-22 - Use SPDX-format license tag - Use %%license unconditionally * Sun Jun 9 2019 Paul Howarth - 0.014-11 - Perl 5.30 rebuild * Mon Apr 9 2018 Paul Howarth - 0.014-7 - 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::Builder::Tester < 1.04 * Sat Oct 1 2016 Paul Howarth - 0.014-3 - BR: perl-generators where available - Simplify find command using -delete * Sun Jan 3 2016 Paul Howarth - 0.014-1 - Update to 0.014 - Fix spelling error in manpage (CPAN RT#110709) - Add LICENSE file to the distribution (GH#1) - Fix all_pm_version_ok() failure reporting (CPAN RT#78758) - Rewrite t/04_all_ok.t using Test::Builder::Tester (CPAN RT#78758) - Classify buildreqs by usage * Mon Sep 1 2014 Paul Howarth - 0.012-11 - Drop %%defattr, redundant since rpm 4.4 * Sat Jun 30 2012 Paul Howarth - 0.012-5 - Don't need to remove empty directories from the buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorlib} - Use DETDIR rather than PERL_INSTALL_ROOT - Use %%{_fixperms} macro rather than our own chmod incantation * Tue Aug 9 2011 Paul Howarth - 0.012-1 - Initial RPM version