# 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-Archive-Any-Lite Version: 0.11 Release: 25.%{__distinit}%{__distvers} Summary: Simple CPAN package extractor License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Archive-Any-Lite Source0: https://cpan.metacpan.org/modules/by-module/Archive/Archive-Any-Lite-%{version}.tar.gz Patch0: Archive-Any-Lite-0.08-EU:MM.patch BuildArch: noarch # Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30 # Module BuildRequires: perl(Archive::Tar) >= 1.76 BuildRequires: perl(Archive::Zip) BuildRequires: perl(File::Spec) BuildRequires: perl(IO::Uncompress::Bunzip2) BuildRequires: perl(IO::Zlib) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(File::Path) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(File::Temp) >= 0.19 BuildRequires: perl(FindBin) BuildRequires: perl(Test::More) >= 0.82 BuildRequires: perl(Test::UseAllModules) >= 0.10 # Optional Tests # Needs 0.7.6 for data structure retrieval BuildRequires: perl(Parallel::ForkManager) >= 0.7.6 BuildRequires: perl(Test::Pod) >= 1.18 BuildRequires: perl(Test::Pod::Coverage) >= 1.04 # Runtime %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(IO::Uncompress::Bunzip2) Requires: perl(IO::Zlib) %description This is a fork of Archive::Any by Michael Schwern and Clint Moore. The main difference is that this works properly even when you fork(), and may require less memory to extract a tarball. On the other hand, this isn't pluggable (it only supports file formats used in the CPAN toolchains), and it doesn't check MIME types. %prep %setup -q -n Archive-Any-Lite-%{version} # Build with ExtUtils::MakeMaker rather than ExtUtils::MakeMaker::CPANfile %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 TEST_POD=1 %files %license LICENSE %doc Changes README %{perl_vendorlib}/Archive/ %{_mandir}/man3/Archive::Any::Lite.3* %changelog * Thu Jun 13 2024 Paul Howarth - 0.11-25 - Avoid use of deprecated patch syntax * Tue Mar 7 2023 Paul Howarth - 0.11-22 - Use SPDX-format license tag - BR: perl(Parallel::ForkManager) unconditionally - Use %%license unconditionally * Mon Jun 29 2020 Paul Howarth - 0.11-14 - Perl 5.32 rebuild * Tue Sep 24 2019 Paul Howarth - 0.11-12 - Don't bother with optional test requiring Parallel::ForkManager on RHEL, so we don't need to get it built in EPEL * Thu Jun 6 2019 Paul Howarth - 0.11-10 - 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 legacy BuildRoot: and Group: tags - Drop support for building with File::Temp < 0.19 - Drop support for building with Test::More < 0.82 * Thu Aug 4 2016 Paul Howarth - 0.11-2 - BR: perl-generators where available * Fri Apr 29 2016 Paul Howarth - 0.11-1 - Update to 0.11 - Improved tar extraction performance - Simplify find command using -delete * Fri Feb 26 2016 Paul Howarth - 0.10-5 - Fix FTBFS where File::Temp isn't in the minimal buildroot * Mon Sep 1 2014 Paul Howarth - 0.10-2 - Perl 5.20 rebuild * Thu Aug 14 2014 Paul Howarth - 0.10-1 - Update to 0.10 - Added LICENSE file (CPAN RT#88571) * Fri Apr 18 2014 Paul Howarth - 0.09-1 - Update to 0.09 - Updated version requirements * Fri Apr 18 2014 Paul Howarth - 0.08-1 - Update to 0.08 - Support an optional hash reference for finer extraction control - Add patch to build with ExtUtils::MakeMaker rather than ExtUtils::MakeMaker::CPANfile - Test suite now needs File::Temp 0.19 for the newdir method, so bundle a recent enough copy to use if necessary - Drop support for old distributions prior to FC-5 - Drop %%defattr, redundant since rpm 4.4 - Drop support for building without Test::UseAllModules * Fri Aug 2 2013 Paul Howarth - 0.07-1 - Initial RPM version