# 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-Devel-OverloadInfo Version: 0.007 Release: 7.%{__distinit}%{__distvers} Summary: Introspect overloaded operators License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-OverloadInfo Source0: https://cpan.metacpan.org/modules/by-module/Devel/Devel-OverloadInfo-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: gcc BuildRequires: make BuildRequires: perl-devel BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Text::ParseWords) # Dependencies of bundled ExtUtils::HasCompiler BuildRequires: perl(base) BuildRequires: perl(Carp) BuildRequires: perl(Config) BuildRequires: perl(DynaLoader) BuildRequires: perl(ExtUtils::Mksymlists) BuildRequires: perl(File::Basename) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(File::Temp) # Module Runtime BuildRequires: perl(Exporter) >= 5.57 BuildRequires: perl(MRO::Compat) BuildRequires: perl(overload) BuildRequires: perl(Package::Stash) >= 0.14 BuildRequires: perl(Scalar::Util) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(parent) BuildRequires: perl(Test::Fatal) BuildRequires: perl(Test::More) >= 0.88 # Runtime %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif # Optional Functionality %if 0%{?fedora} > 20 || 0%{?rhel} > 7 BuildRequires: perl(Sub::Util) >= 1.40 Requires: perl(Sub::Util) >= 1.40 %else BuildRequires: perl(B) Requires: perl(B) %endif %description Devel::OverloadInfo returns information about overloaded operators for a given class (or object), including where in the inheritance hierarchy the overloads are declared and where the code implementing it is. %prep %setup -q -n Devel-OverloadInfo-%{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}/Devel/ %{_mandir}/man3/Devel::OverloadInfo.3* %changelog * Tue Apr 4 2023 Paul Howarth - 0.007-7 - Use SPDX-format license tag - Don't need perl(B) if we have perl(Sub::Util) * Thu Apr 29 2021 Paul Howarth - 0.007-1 - Update to 0.007 - Remove dependency on Sub::Identify - Use %%license unconditionally * Fri Jun 7 2019 Paul Howarth - 0.005-6 - Perl 5.30 rebuild * Fri Jun 29 2018 Paul Howarth - 0.005-3 - Perl 5.28 rebuild * Mon Jan 22 2018 Paul Howarth - 0.005-1 - Update to 0.005 - Add overload_op_info() function for info about a single op - 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.88 * Thu Aug 18 2016 Paul Howarth - 0.004-3 - BR: perl-generators where available - Simplify find command using -delete * Fri Aug 14 2015 Paul Howarth - 0.004-1 - Update to 0.004 - Document that existence of undef 'fallback' varies between perl versions - Add tests for empty, inherited-only and no overloading - Add is_overloaded() function - Update patch for building with old Test::More versions * Thu Aug 13 2015 Paul Howarth - 0.003-1 - Update to 0.003 - Return an empty hash instead of undef for classes with no overloads - Work around overload inheritance corruption before 5.16 (CPAN RT#106379) - Update patch for building with old Test::More versions * Mon Nov 3 2014 Paul Howarth - 0.002-1 - Initial RPM version