# 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-URI-cpan Version: 1.009 Release: 1.%{__distinit}%{__distvers} Summary: URLs that refer to things on the CPAN License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/URI-cpan Source0: https://cpan.metacpan.org/modules/by-module/URI/URI-cpan-%{version}.tar.gz BuildArch: noarch # Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) >= 6.78 # Module BuildRequires: perl(Carp) BuildRequires: perl(CPAN::DistnameInfo) BuildRequires: perl(parent) BuildRequires: perl(strict) BuildRequires: perl(URI::_generic) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(File::Spec) BuildRequires: perl(Test::More) >= 0.96 BuildRequires: perl(URI) # Optional Tests BuildRequires: perl(CPAN::Meta) >= 2.120900 BuildRequires: perl(CPAN::Meta::Prereqs) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description This module is for handling URLs that refer to things on the CPAN. %prep %setup -q -n URI-cpan-%{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 %{perl_vendorlib}/URI/ %{_mandir}/man3/URI::cpan.3* %{_mandir}/man3/URI::cpan::author.3* %{_mandir}/man3/URI::cpan::dist.3* %{_mandir}/man3/URI::cpan::distfile.3* %{_mandir}/man3/URI::cpan::module.3* %{_mandir}/man3/URI::cpan::package.3* %changelog * Sun Sep 3 2023 Paul Howarth - 1.009-1 - Update to 1.009 - Updates to dist metadata only * Thu Jun 1 2023 Paul Howarth - 1.008-4 - Use SPDX-format license tag * Tue Dec 21 2021 Paul Howarth - 1.008-1 - Update to 1.008 - Fix prereqs to rely on URI, not the unindexed URI::_generic - Use %%license unconditionally * Tue Sep 15 2020 Paul Howarth - 1.007-3 - perl(URI) is a test requirement, not a module requirement (#1876259) * Sun Sep 6 2020 Paul Howarth - 1.007-1 - Initial RPM version