# 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-Pod-Strip Version: 1.100 Release: 8.%{__distinit}%{__distvers} Summary: Remove POD from Perl code License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Strip Source0: https://cpan.metacpan.org/modules/by-module/Pod/Pod-Strip-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(base) BuildRequires: perl(Pod::Simple) >= 3.00 BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(blib) BuildRequires: perl(File::Spec) BuildRequires: perl(File::Temp) BuildRequires: perl(File::Temp) BuildRequires: perl(IO::Handle) BuildRequires: perl(IPC::Open3) BuildRequires: perl(Test::More) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(Pod::Simple) >= 3.00 %description Pod::Strip is a subclass of Pod::Simple that strips all POD from Perl Code. %prep %setup -q -n Pod-Strip-%{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.md %{perl_vendorlib}/Pod/ %{_mandir}/man3/Pod::Strip.3* %changelog * Fri May 12 2023 Paul Howarth - 1.100-8 - Use SPDX-format license tag * Mon Jan 11 2021 Paul Howarth - 1.100-1 - Update to 1.100 - Dist housekeeping, Dist::Zilla::PluginBundle::Author::DOMM - Package new LICENSE file * Wed Jun 5 2019 Paul Howarth - 1.02-31 - Perl 5.30 rebuild * Mon Apr 16 2018 Paul Howarth - 1.02-27 - 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 22 2016 Paul Howarth - 1.02-23 - Classify buildreqs by usage - Simplify find command using -delete * Sun Aug 31 2014 Paul Howarth - 1.02-18 - Drop %%defattr, redundant since rpm 4.4 * Sat Jun 30 2012 Paul Howarth - 1.02-12 - BR: perl(base) and perl(Test::More) - 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 DESTDIR rather than PERL_INSTALL_ROOT * Wed Jun 29 2011 Paul Howarth - 1.02-11 - Rebuild for perl 5.14.1 in Rawhide - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Thu Mar 17 2011 Paul Howarth - 1.02-10 - Import from Fedora * Wed Feb 09 2011 Fedora Release Engineering - 1.02-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Tue Dec 21 2010 Marcela Maslanova - 1.02-8 - Rebuild to fix problems with vendorarch/lib (#661697) * Tue May 04 2010 Marcela Maslanova - 1.02-7 - Mass rebuild with perl-5.12.0 * Mon Dec 7 2009 Stepan Kasal - 1.02-6 - Rebuild against perl 5.10.1 * Sun Jul 26 2009 Fedora Release Engineering - 1.02-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Feb 26 2009 Fedora Release Engineering - 1.02-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Fri Feb 8 2008 Tom "spot" Callaway - 1.02-3 - Rebuild for new perl * Sun May 6 2007 Jose Pedro Oliveira - 1.02-2 - Added missing requirement: perl(Pod::Simple) (see bug #239241) * Sun Dec 17 2006 Jose Pedro Oliveira - 1.02-1 - First build