# 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-CPAN-DistnameInfo Version: 0.12 Release: 27.%{__distinit}%{__distvers} Summary: Extract distribution name and version from a distribution filename License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/CPAN-DistnameInfo Source0: https://cpan.metacpan.org/modules/by-module/CPAN/CPAN-DistnameInfo-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(warnings) # Module Runtime BuildRequires: perl(strict) # Test Suite BuildRequires: perl(Data::Dumper) BuildRequires: perl(Test::More) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description Many online services that are centered around CPAN attempt to associate multiple uploads by extracting a distribution name from the filename of the upload. For most distributions this is easy as they have used ExtUtils::MakeMaker or Module::Build to create the distribution, which results in a uniform name. But sadly not all uploads are created in this way. CPAN::DistnameInfo uses heuristics that have been learned by http://search.cpan.org/ to extract the distribution name and version from filenames and also report if the version is to be treated as a developer release. %prep %setup -q -n CPAN-DistnameInfo-%{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 %doc Changes README %{perl_vendorlib}/CPAN/ %{_mandir}/man3/CPAN::DistnameInfo.3* %changelog * Fri Jul 14 2023 Paul Howarth - 0.12-27 - Use SPDX-format license tag * Fri Jun 7 2019 Paul Howarth - 0.12-15 - 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 * Thu Aug 11 2016 Paul Howarth - 0.12-7 - Classify buildreqs by usage - Drop %%defattr, redundant since rpm 4.4 - Simplify find command using -delete * Thu Jun 7 2012 Paul Howarth - 0.12-3 - BR: perl(Data::Dumper) - Don't need to remove empty directories from buildroot - Use search.cpan.org source URL - 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 22 2011 Paul Howarth - 0.12-2 - 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 - 0.12-1 - Import from Fedora - Update to 0.12 * Tue Feb 08 2011 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Wed Dec 22 2010 Steven Pritchard 0.11-1 - Update to 0.11 * Wed Dec 15 2010 Marcela Maslanova - 0.10-2 - Rebuild to fix problems with vendorarch/lib (#661697) * Sun Dec 12 2010 Steven Pritchard 0.10-1 - Update to 0.10 * Fri Apr 30 2010 Marcela Maslanova - 0.09-2 - Mass rebuild with perl-5.12.0 * Sat Feb 13 2010 Steven Pritchard 0.09-1 - Update to 0.09 * Fri Dec 4 2009 Stepan Kasal - 0.08-3 - Rebuild against perl 5.10.1 * Sat Jul 25 2009 Fedora Release Engineering - 0.08-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Tue May 12 2009 Steven Pritchard 0.08-1 - Update to 0.08 - BR Test::More * Thu Feb 26 2009 Fedora Release Engineering - 0.07-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Jul 02 2008 Steven Pritchard 0.07-1 - Update to 0.07 - Improve Summary - Drop our copies of COPYING and Artistic * Fri Feb 8 2008 Tom "spot" Callaway 0.06-4 - Rebuild for new perl * Tue Apr 17 2007 Steven Pritchard 0.06-3 - Use fixperms macro instead of our own chmod incantation - BR ExtUtils::MakeMaker * Sat Sep 16 2006 Steven Pritchard 0.06-2 - Canonicalize Source0 URL - Fix find option order * Mon Sep 19 2005 Steven Pritchard 0.06-1 - Specfile autogenerated