# 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-Class-C3 Version: 0.35 Release: 10.%{__distinit}%{__distvers} Summary: Pragma to use the C3 method resolution order algorithm License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-C3 Source0: https://cpan.metacpan.org/modules/by-module/Class/Class-C3-%{version}.tar.gz BuildArch: noarch # Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(Text::ParseWords) # Build (dependencies of bundled ExtUtils::HasCompiler) BuildRequires: perl(base) BuildRequires: perl(Carp) BuildRequires: perl(Config) BuildRequires: perl(DynaLoader) BuildRequires: perl(Exporter) BuildRequires: perl(File::Basename) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(File::Temp) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Module BuildRequires: perl(Algorithm::C3) >= 0.07 BuildRequires: perl(Scalar::Util) >= 1.10 # Test Suite BuildRequires: perl(Cwd) BuildRequires: perl(File::Glob) BuildRequires: perl(lib) BuildRequires: perl(NEXT) BuildRequires: perl(Sub::Name) BuildRequires: perl(Test::Exception) >= 0.15 BuildRequires: perl(Test::More) >= 0.88 # MRO::Compat itself requires Class::C3 %if 0%{!?perl_bootstrap:1} BuildRequires: perl(MRO::Compat) %endif # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(Algorithm::C3) >= 0.07 Requires: perl(Scalar::Util) >= 1.10 # Let people "use c3;" Provides: perl(c3) = %{version} %description This is a pragma to change Perl 5's standard method resolution order from depth-first left-to-right (a.k.a - pre-order) to the more sophisticated C3 method resolution order. %prep %setup -q -n Class-C3-%{version} %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete cp -p opt/c3.pm %{buildroot}%{perl_vendorlib}/ %{_fixperms} -c %{buildroot} %check make test %files %doc Changes README %{perl_vendorlib}/c3.pm %{perl_vendorlib}/Class/ %{_mandir}/man3/Class::C3.3* %{_mandir}/man3/Class::C3::next.3* %changelog * Fri Mar 10 2023 Paul Howarth - 0.35-10 - Use SPDX-format license tag * Mon Nov 9 2020 Paul Howarth - 0.35-1 - Update to 0.35 - Update bundled ExtUtils::HasCompiler to 0.022 - Support PUREPERL_ONLY environment variable during installation - Fix no-XS test to not require newer Test::More that declared prereq - Drop optional Devel::Hide prereq - Switch upstream from search.cpan.org to metacpan.org * Fri Apr 20 2018 Paul Howarth - 0.34-1 - Update to 0.34 - Update bundled ExtUtils::HasCompiler to 0.021 - Fix some examples in pod * Mon Apr 24 2017 Paul Howarth - 0.33-1 - Update to 0.33 - Update bundled ExtUtils::HasCompiler to 0.017 - Moved repository to Moose GitHub org - Avoid using base.pm in tests (CPAN RT#120530) - Minor pod and test clean ups - 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 - Drop support for building with Perl < 5.9.5 * Thu Sep 15 2016 Paul Howarth - 0.32-1 - Update to 0.32 - Update bundled ExtUtils::HasCompiler to 0.016 * Mon Aug 8 2016 Paul Howarth - 0.31-3 - Fix FTBFS when perl is not in the minimal buildroot - BR: perl-generators where available * Wed Apr 20 2016 Paul Howarth - 0.31-1 - Update to 0.31 - Update bundled ExtUtils::HasCompiler to 0.013 to fix possible false negative (CPAN RT#113635) - Simplify find command using -delete * Fri Jan 29 2016 Paul Howarth - 0.30-2 - Don't ship the tests - Drop requires/provides filters, only needed due to shipping tests * Mon Oct 19 2015 Paul Howarth - 0.30-1 - Update to 0.30 - Update compiler detection to use ExtUtils::HasCompiler * Mon Jun 22 2015 Paul Howarth - 0.28-4 - Perl 5.22 rebuild * Tue Apr 14 2015 Paul Howarth - 0.28-1 - Update to 0.28 - Change link to Dylan paper to use archive.org, as the original link has gone offline (CPAN RT#99756) - Pod tests moved to xt/ so drop build requirements for them * Thu Sep 4 2014 Paul Howarth - 0.27-1 - Update to 0.27 - Declare minimum perl version of 5.6 in metadata - Upstream ChangeLog renamed to Changes - Upstream dropped visualize_c3.pl utility script - Drop %%defattr, redundant since rpm 4.4 * Wed Mar 5 2014 Paul Howarth - 0.26-1 - Update to 0.26 - Fix bug in Makefile.PL when ExtUtils::CBuilder not available - This release by HAARG -> update source URL - Drop now-redundant Module::Install build dependencies * Mon Jul 22 2013 Paul Howarth - 0.25-2 - Perl 5.18 rebuild * Thu Jul 4 2013 Paul Howarth - 0.25-1 - Update to 0.25 - Drop compatibility from 5.6.2 to 5.6.0 - Pod typo fixes (CPAN RT#77453, CPAN RT#85357) - Only ask for Devel::Hide on perls where it will be actually used (CPAN RT#81106) - Fix SYNOPSIS to actually be executable (CPAN RT#78327) - This release by MSTROUT -> update source URL - BR: perl(ExtUtils::CBuilder) and perl(File::Glob) - Bump perl(Class::C3::XS) version requirement to 0.13 - Update old Test::More patch * Mon Jul 16 2012 Paul Howarth - 0.24-3 - Perl 5.16 post-bootstrap rebuild * Mon Jul 9 2012 Paul Howarth - 0.24-2 - BR: perl(Cwd) and perl(File::Path) for bundled Module::Install - BR: perl(base), perl(lib), perl(NEXT) and perl(Devel::Hide) for test suite - Add patch to support building with Test::More < 0.88 * Sat May 12 2012 Paul Howarth - 0.24-1 - Update to 0.24 - Require Class::C3::XS on 5.8 perls if a working compiler is found - Bump Algorithm::C3 version requirement to 0.07 - Always BR:/R: Algorithm::C3 and Scalar::Util - Don't need to remove empty directories from buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorlib} - Use DESTDIR rather than PERL_INSTALL_ROOT * Thu Jan 19 2012 Paul Howarth - 0.23-4 - Resync with Rawhide package * Wed Jun 22 2011 Paul Howarth - 0.23-3 - Rebuild for perl 5.14.1 in Rawhide - Nobody else likes macros for commands - Update bogus dependency and provides filters for rpm 4.9.x - Drop provides hack for #205801, no longer needed - Fix dist tag for CentOS 6 and Scientific Linux * Wed Jun 23 2010 Paul Howarth - 0.23-2 - Rebuild for perl 5.12.1 in Rawhide * Sat Jun 19 2010 Paul Howarth - 0.23-1 - Update to 0.23 (fix various documentation problems) * Mon May 17 2010 Paul Howarth - 0.22-3 - MRO in perl core from 5.9.5 - don't require Algorithm::C3 or Class::C3::XS - Include c3.pm in %%{perl_vendorlib} rather than %%doc * Tue May 11 2010 Paul Howarth - 0.22-2 - Fix dist tag for RHEL-6 Beta * Fri Jan 29 2010 Paul Howarth - 0.22-1 - Update to 0.22 (document that MRO::Compat is preferred API) - Use %%{_fixperms} macro rather than our own %%{__chmod} incantation - Dist tag for Rawhide no longer needs special-casing * Tue Aug 11 2009 Paul Howarth - 0.21-3 - Import from Fedora * Sat Jul 25 2009 Fedora Release Engineering - 0.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Apr 02 2009 Chris Weyl - 0.21-1 - Update to 0.21 * Thu Feb 26 2009 Fedora Release Engineering - 0.20-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Sun Jan 25 2009 Chris Weyl - 0.20-1 - Update to 0.20 * Tue Mar 4 2008 Tom "spot" Callaway - 0.19-2 - Rebuild for new perl * Wed Oct 10 2007 Chris Weyl - 0.19-1 - Update to 0.19 * Fri Jun 01 2007 Chris Weyl - 0.18-1 - Update to 0.18 * Wed May 09 2007 Chris Weyl - 0.17-1 - Update to 0.17 - BR Class::C3::XS * Mon Sep 25 2006 Chris Weyl - 0.14-1 - Update to 0.14 * Tue Sep 19 2006 Chris Weyl - 0.13-4 - Fix autoprovides (#205801) * Thu Sep 07 2006 Chris Weyl - 0.13-3 - Bump * Thu Sep 07 2006 Chris Weyl - 0.13-2 - Additional br's, minor spec tweaks * Tue Sep 05 2006 Chris Weyl - 0.13-1 - Specfile autogenerated by cpanspec 1.69.1