# 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-String-Format Version: 1.18 Release: 16.%{__distinit}%{__distvers} Summary: Sprintf-like string formatting capabilities with arbitrary format definitions License: GPL-2.0-only URL: https://metacpan.org/release/String-Format Source0: https://cpan.metacpan.org/modules/by-module/String/String-Format-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) > 6.57 # Module Runtime BuildRequires: perl(base) BuildRequires: perl(Exporter) BuildRequires: perl(strict) BuildRequires: perl(vars) # Test Suite BuildRequires: perl(POSIX) BuildRequires: perl(Test::More) BuildRequires: perl(warnings) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description String::Format lets you define arbitrary printf-like format sequences to be expanded. This module would be most useful in configuration files and reporting tools, where the results of a query need to be formatted in a particular way. %prep %setup -q -n String-Format-%{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 COPYING %doc Changes README %{perl_vendorlib}/String/ %{_mandir}/man3/String::Format.3* %changelog * Sat May 20 2023 Paul Howarth - 1.18-16 - Use SPDX-format license tag - Drop support for building with ExtUtils::MakeMaker < 6.5702 - Use %%license unconditionally * Sat Jun 8 2019 Paul Howarth - 1.18-5 - Perl 5.30 rebuild * Mon Mar 5 2018 Paul Howarth - 1.18-1 - Update to 1.18 - Escape { and } (CPAN RT#124147) - This release by SREZIC → update source URL - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Add workaround for building with ExtUtils::MakeMaker < 6.5702 - 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 * Tue Sep 27 2016 Paul Howarth - 1.17-5 - Classify buildreqs by usage - Package COPYING and README files - Simplify find command using -delete - Drop %%defattr, redundant since rpm 4.4 * Thu Dec 6 2012 Paul Howarth - 1.17-1 - Update to 0.17 (update FSF address, add LICENSE section to README) * Tue Jun 12 2012 Paul Howarth - 1.16-8 - BR: perl(base) and perl(Exporter) - 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.16-6 - Rebuild for perl 5.14.1 in Rawhide - Use %%{_fixperms} macro rather than our own %%{__chmod} incantation - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Wed Jun 23 2010 Paul Howarth - 1.16-4 - Rebuild for perl 5.12.1 in Rawhide * Tue Jun 1 2010 Paul Howarth - 1.16-3 - Fix dist tag for RHEL-6 Beta * Tue Nov 24 2009 Paul Howarth - 1.16-2 - Import from Fedora * Wed Oct 7 2009 Stepan Kasal - 1.16-1 - New upstream release * Sun Jul 26 2009 Fedora Release Engineering - 1.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Fri Mar 27 2009 Ralf Corsépius - 1.15-1 - Upstream update * Thu Feb 26 2009 Fedora Release Engineering - 1.14-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Feb 27 2008 Tom "spot" Callaway - 1.14-3 - Rebuild for perl 5.10 (again) * Sun Jan 13 2008 Tom "spot" Callaway - 1.14-2 - Rebuild for new perl * Tue Oct 16 2007 Tom "spot" Callaway - 1.14-1.2 - Add BR: perl(Test::More) * Tue Oct 16 2007 Tom "spot" Callaway - 1.14-1.1 - Correct license tag - Add BR: perl(ExtUtils::MakeMaker) * Sat Sep 16 2006 Jose Pedro Oliveira - 1.14-1 - First build