# 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-Ref-Util-XS Version: 0.117 Release: 23.%{__distinit}%{__distvers} Summary: Utility functions for checking references License: MIT URL: https://metacpan.org/release/Ref-Util-XS Source0: https://cpan.metacpan.org/modules/by-module/Ref/Ref-Util-XS-%{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(Exporter) >= 5.57 BuildRequires: perl(strict) BuildRequires: perl(warnings) BuildRequires: perl(XSLoader) # Test Suite BuildRequires: perl(constant) BuildRequires: perl(File::Spec) BuildRequires: perl(Test::More) >= 0.94 # Optional Tests BuildRequires: perl(B::Concise) BuildRequires: perl(CPAN::Meta) >= 2.120900 BuildRequires: perl(Readonly) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif # Avoid provides for private objects %{?perl_default_filter} %description Ref::Util::XS introduces several functions to help identify references in a faster and smarter way. %prep %setup -q -n Ref-Util-XS-%{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}/auto/Ref/ %{perl_vendorarch}/Ref/ %{_mandir}/man3/Ref::Util::XS.3* %changelog * Fri Jun 14 2024 Paul Howarth - 0.117-23 - Perl 5.40 rebuild * Fri Jul 14 2023 Paul Howarth - 0.117-19 - Perl 5.38 rebuild * Thu May 11 2023 Paul Howarth - 0.117-18 - SPDX migration * Wed Jun 1 2022 Paul Howarth - 0.117-15 - Perl 5.36 rebuild * Mon May 24 2021 Paul Howarth - 0.117-12 - Perl 5.34 rebuild * Sat Jun 27 2020 Paul Howarth - 0.117-9 - Perl 5.32 rebuild * Tue Jun 4 2019 Paul Howarth - 0.117-6 - Perl 5.30 rebuild * Thu Jun 28 2018 Paul Howarth - 0.117-3 - Perl 5.28 rebuild * Wed Jan 31 2018 Paul Howarth - 0.117-1 - Update to 0.117 - Allow the custom OPs to be deparsed with B::Deparse - Optimize the shared object size by moving common call checker logic into a function * Sun Aug 6 2017 Paul Howarth - 0.116-5 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl * Wed Jun 14 2017 Paul Howarth - 0.116-3 - Perl 5.26 rebuild * Mon May 15 2017 Paul Howarth - 0.116-1 - Update to 0.116 - Changes rephrasing - Restore 5.6 compatibility - Replace docs with a link to Ref::Util * Fri May 12 2017 Paul Howarth - 0.115-1 - Package renamed Ref-Util-XS to make room for Ref-Util's new pure-Perl implementation - 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 - Drop workaround for building with Test::More < 0.94 - BR: perl-devel unconditionally * Tue Jan 17 2017 Paul Howarth - 0.113-1 - Update to 0.113 - Fix bugtracker link * Sun Jan 15 2017 Paul Howarth - 0.112-1 - Update to 0.112 - Fix compilation on Sun (Oracle) and some MSVC compilers (GH#35) * Fri Dec 30 2016 Paul Howarth - 0.111-1 - Update to 0.111 - Fix test failure on 5.8.5 and under - Moved to Dist::Zilla - Update patch for building with older Test::More versions * Thu Dec 29 2016 Paul Howarth - 0.110-1 - Update to 0.110 - Fix support of 5.8 (GH#29, GH#34) - Additional optimizations - More extensive test suite - Add patch to avoid need for Test::More ≥ 0.94 * Mon Aug 29 2016 Paul Howarth - 0.101-1 - Update to 0.101 - A test accidentally added a dependency on Readonly.pm - fixed! (GH#30) - Update README * Sat Aug 27 2016 Paul Howarth - 0.100-1 - Update to 0.100 - Support situations in op-code implementation where the parameters do not come as a list - Fix memory leak in dangling op - Support magic (tied variables) - Rework op implementation - Speed up by changing the top of the stack instead of POPing and PUSHing - Update ppport.h file from Devel::PPPort and remove the copy of SVRXOK since it's now available - Add license in Pod - Specify minimum version of perl (5.6.2) - Add patch for fix for 5.8.8 (https://github.com/p5pclub/ref-util/pull/29) * Thu Jul 28 2016 Paul Howarth - 0.020-1 - Initial RPM version