# 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-XString Version: 0.005 Release: 13.%{__distinit}%{__distvers} Summary: Isolated String helpers from B License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XString Source0: https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/XString-%{version}.tar.gz # Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: gcc BuildRequires: make BuildRequires: perl-devel BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module BuildRequires: perl(:VERSION) >= 5.10.0 BuildRequires: perl(strict) BuildRequires: perl(warnings) BuildRequires: perl(XSLoader) # Test Suite BuildRequires: perl(B) BuildRequires: perl(File::Spec) BuildRequires: perl(Test::More) >= 0.88 # 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 Requires: perl(XSLoader) %description XString provides the B string helpers in one isolated package. Right now only cstring and perlstring are available. %prep %setup -q -n XString-%{version} %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete find %{buildroot} -type f -name '*.bs' -empty -delete %{_fixperms} -c %{buildroot} %check make test %files %license LICENSE %doc Changes README %{perl_vendorarch}/XString.pm %{perl_vendorarch}/auto/XString/ %{_mandir}/man3/XString.3* %changelog * Wed Jun 12 2024 Paul Howarth - 0.005-13 - Perl 5.40 rebuild * Tue Jul 11 2023 Paul Howarth - 0.005-9 - Perl 5.38 rebuild * Thu May 18 2023 Paul Howarth - 0.005-8 - Use SPDX-format license tag * Tue May 31 2022 Paul Howarth - 0.005-6 - Perl 5.36 rebuild * Fri May 21 2021 Paul Howarth - 0.005-3 - Perl 5.34 rebuild * Tue Oct 20 2020 Paul Howarth - 0.005-1 - Update to 0.005 - Fix cstring for Perl 5.32 (GH#6, GH#7) - Remove unneeded module dependencies (GH#2) - Add compatibility with Perl 5.8 (GH#9) * Mon Jun 29 2020 Paul Howarth - 0.002-4 - Perl 5.32 rebuild * Wed Nov 27 2019 Paul Howarth - 0.002-2 - Incorporate feedback from package review (#1776513) - BR: perl(CPAN::Meta::Prereqs) - Add reference to upstream ticket about unnecessary build requirements https://github.com/atoomic/XString/issues/2 - Add run-time dependency on perl(XSLoader) * Mon Nov 25 2019 Paul Howarth - 0.002-1 - Initial RPM version