# 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-CPAN-Meta-YAML Version: 0.25 Release: 25.%{__distinit}%{__distvers} Summary: Validate a META.yml file within a CPAN distribution License: Artistic-2.0 URL: https://metacpan.org/release/Test-CPAN-Meta-YAML Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-CPAN-Meta-YAML-%{version}.tar.gz Patch0: Test-CPAN-Meta-YAML-0.25-utf8.patch BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(strict) BuildRequires: perl(Test::Builder) BuildRequires: perl(Test::YAML::Valid) >= 0.03 BuildRequires: perl(vars) BuildRequires: perl(warnings) BuildRequires: perl(YAML::Syck) # Test Suite BuildRequires: perl(IO::File) BuildRequires: perl(Test::Builder::Tester) BuildRequires: perl(Test::More) # Optional Tests BuildRequires: perl(Test::CPAN::Meta::JSON) BuildRequires: perl(Test::Pod) >= 1.00 BuildRequires: perl(Test::Pod::Coverage) >= 0.08 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif # Explicitly requests the YAML::Syck backend for Test::YAML::Valid Requires: perl(YAML::Syck) %description This module was written to ensure that a META.yml file, provided with a standard distribution uploaded to CPAN, meets the specifications that are slowly being introduced to module uploads, via the use of ExtUtils::MakeMaker, Module::Build and Module::Install. See CPAN::Meta for further details of the CPAN Meta Specification. %prep %setup -q -n Test-CPAN-Meta-YAML-%{version} # Recode documentation as UTF-8 %patch -P 0 %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 AUTOMATED_TESTING=1 %files %license LICENSE %doc Changes README %{perl_vendorlib}/Test/ %{_mandir}/man3/Test::CPAN::Meta::YAML.3* %{_mandir}/man3/Test::CPAN::Meta::YAML::Version.3* %changelog * Tue May 23 2023 Paul Howarth - 0.25-25 - Use SPDX-format license tag - Avoid use of deprecated patch syntax * Fri Jan 15 2021 Paul Howarth - 0.25-18 - Switch upstream from search.cpan.org to metacpan.org - Use %%license unconditionally * Wed Apr 11 2018 Paul Howarth - 0.25-9 - 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 * Thu Sep 29 2016 Paul Howarth - 0.25-5 - BR: perl-generators where available - Simplify find command using -delete * Fri Jun 26 2015 Paul Howarth - 0.25-3 - Perl 5.22 rebuild * Wed May 6 2015 Paul Howarth - 0.25-1 - Update to 0.25 - POD fixes - Update UTF8 patch * Fri Jan 30 2015 Paul Howarth - 0.24-1 - Update to 0.24 - Documentation updates * Thu Jan 15 2015 Paul Howarth - 0.23-1 - Update to 0.23 - Extended META test suite - Added META.json and tests - Update UTF8 patch * Mon Sep 15 2014 Paul Howarth - 0.22-4 - Drop %%defattr, redundant since rpm 4.4 - Use %%license where possible - Classify buildreqs by usage * Sun Jul 21 2013 Paul Howarth - 0.22-1 - Update to 0.22 - Changes file dates changed to meet W3CDTF standards * Tue Aug 21 2012 Paul Howarth - 0.21-1 - Update to 0.21 - Added minimum perl version (5.006) - Reworked Makefile.PL for clarity - Implemented Perl::Critic suggestions - Added meta_yaml_ok test and example - Several Version.pm updates, including new() parameter name change: 'yaml' is now 'data' * Thu Jul 5 2012 Paul Howarth - 0.20-2 - BR: perl(IO::File) * Fri Apr 20 2012 Paul Howarth - 0.20-1 - Update to 0.20 - Further spelling fix - Removed DSLIP info * Tue Apr 17 2012 Paul Howarth - 0.19-1 - Update to 0.19 - CPAN RT#76611: Spelling fix * Sun Apr 15 2012 Paul Howarth - 0.18-1 - Update to 0.18 - CPAN RT#74317: Imported url validation from CPAN::Meta - CPAN RT#66692: Updated license type - Updates to examples - Update UTF8 patch - Don't need to remove empty directories from buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorlib} - Use DESTDIR rather than PERL_INSTALL_ROOT * Thu Jun 30 2011 Paul Howarth - 0.17-3 - Rebuild for perl 5.14.1 in Rawhide - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Wed Mar 16 2011 Paul Howarth - 0.17-1 - Initial RPM version