# 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-MooseX-Role-WithOverloading Version: 0.17 Release: 30.%{__distinit}%{__distvers} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Roles that support overloading URL: https://metacpan.org/release/MooseX-Role-WithOverloading Source0: https://cpan.metacpan.org/modules/by-module/MooseX/MooseX-Role-WithOverloading-%{version}.tar.gz # 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(strict) BuildRequires: perl(warnings) # Module Runtime BuildRequires: perl(aliased) BuildRequires: perl(Moose) >= 0.94 BuildRequires: perl(Moose::Exporter) BuildRequires: perl(Moose::Role) >= 1.15 BuildRequires: perl(Moose::Util::MetaRole) BuildRequires: perl(namespace::autoclean) >= 0.16 BuildRequires: perl(namespace::clean) >= 0.19 BuildRequires: perl(overload) BuildRequires: perl(XSLoader) # Test Suite BuildRequires: perl(File::Spec) BuildRequires: perl(if) BuildRequires: perl(lib) BuildRequires: perl(Test::More) >= 0.96 # Optional Tests BuildRequires: perl(CPAN::Meta) >= 2.120900 BuildRequires: perl(CPAN::Meta::Prereqs) BuildRequires: perl(Test::Warnings) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(XSLoader) # Avoid provides for perl shared objects %{?perl_default_filter} %description MooseX::Role::WithOverloading allows you to write a Moose::Role that defines overloaded operators and allows those operator overloadings to be composed into the classes/roles/instances it's compiled to, while plain roles would lose the overloading. %prep %setup -q -n MooseX-Role-WithOverloading-%{version} %build perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" 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 AUTHOR_TESTING=1 make test %files %license LICENCE %doc Changes CONTRIBUTING README %{perl_vendorarch}/auto/MooseX/ %{perl_vendorarch}/MooseX/ %{_mandir}/man3/MooseX::Role::WithOverloading.3* %{_mandir}/man3/MooseX::Role::WithOverloading::Meta::Role::Application.3* %changelog * Fri Jun 14 2024 Paul Howarth - 0.17-30 - Perl 5.40 rebuild * Sat Jul 15 2023 Paul Howarth - 0.17-26 - Perl 5.38 rebuild * Mon May 1 2023 Paul Howarth - 0.17-25 - Use SPDX-format license tag * Fri Jun 3 2022 Paul Howarth - 0.17-23 - Perl 5.36 rebuild * Mon May 24 2021 Paul Howarth - 0.17-20 - Perl 5.34 rebuild * Mon Jun 29 2020 Paul Howarth - 0.17-17 - Perl 5.32 rebuild * Mon Jun 10 2019 Paul Howarth - 0.17-13 - Perl 5.30 rebuild * Fri Jun 29 2018 Paul Howarth - 0.17-10 - Perl 5.28 rebuild * Mon Aug 7 2017 Paul Howarth - 0.17-7 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl * Thu Jun 15 2017 Paul Howarth - 0.17-5 - 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 - BR: perl-devel unconditionally - Drop workaround for building with Test::More < 0.96 - BR: perl(Test::Warnings) unconditionally * Mon Jan 9 2017 Paul Howarth - 0.17-4 - Test::Warnings now available back to Fedora 9 * Thu May 19 2016 Paul Howarth - 0.17-3 - BR: perl-generators where available - Simplify find commands using -empty and -delete * Fri Oct 9 2015 Paul Howarth - 0.17-1 - Update to 0.17 - Mark this distribution as deprecated (now obsolete with modern Moose) - Explicitly BR: perl-devel, needed for EXTERN.h * Mon Nov 17 2014 Paul Howarth - 0.16-1 - Update to 0.16 - Fix tests that failed due to an interaction between aliased.pm and perl 5.21.6 - Classify buildreqs by usage - Drop patch for building without Test::Warnings, no longer needed * Tue Sep 16 2014 Paul Howarth - 0.15-3 - Perl 5.20 rebuild * Thu Aug 14 2014 Paul Howarth - 0.15-1 - Update to 0.15 - Forward-compat mode added for Moose 2.1300, which cores all of this distribution's functionality * Tue Aug 5 2014 Paul Howarth - 0.14-2 - Remove installed README.pod and corresponding manpage, potentially conflicting (#1126416) https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/issues/119 * Fri Aug 1 2014 Paul Howarth - 0.14-1 - Update to 0.14 - Fixed a bug with Perl 5.18+ that caused this module to simply blow up with an error like "Use of uninitialized value in subroutine entry at .../Class/MOP/Package.pm ..." - Line numbers in shipped code are now almost the same (within 3) as the repository source, for easier debugging - Repository migrated to the github moose organization - Unneeded init_meta method removed - Use %%license where possible - Make %%files list more explicit - Add patch to support building without Test::Warnings on old distributions * Sat Jun 07 2014 Fedora Release Engineering - 0.13-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Thu Feb 27 2014 Paul Howarth - 0.13-3 - We have Test::CheckDeps now * Sat Aug 03 2013 Petr Pisar - 0.13-2 - Perl 5.18 rebuild * Fri Feb 15 2013 Iain Arnell 0.13-1 - update to latest upstream version - clean up spec for modern rpmbuild * Thu Feb 14 2013 Fedora Release Engineering - 0.09-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Fri Jul 20 2012 Fedora Release Engineering - 0.09-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Fri Jun 22 2012 Petr Pisar - 0.09-5 - Perl 5.16 rebuild * Fri Jan 13 2012 Fedora Release Engineering - 0.09-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Tue Jul 19 2011 Petr Sabata - 0.09-3 - Perl mass rebuild * Tue Feb 08 2011 Fedora Release Engineering - 0.09-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Sat Jan 08 2011 Iain Arnell 0.09-1 - update to latest upstream version - update BR perl(Moose::Role) >= 1.15 * Wed Oct 06 2010 Iain Arnell 0.08-1 - update to latest upstream version * Tue May 04 2010 Marcela Maslanova - 0.05-2 - Mass rebuild with perl-5.12.0 * Sat Feb 06 2010 Chris Weyl 0.05-1 - submission * Sat Feb 06 2010 Chris Weyl 0.05-0 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8)