# 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-Data-Inheritable Version: 0.10 Release: 1.%{__distinit}%{__distvers} Summary: Inheritable, overridable class data License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Data-Inheritable Source0: https://cpan.metacpan.org/modules/by-module/Class/Class-Data-Inheritable-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(Carp) BuildRequires: perl(strict) # Test Suite BuildRequires: perl(base) BuildRequires: perl(Test::More) # Optional Tests BuildRequires: perl(Test::Pod) >= 1.00 BuildRequires: perl(Test::Pod::Coverage) >= 1.00 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(Carp) %description Class::Data::Inheritable is for creating accessor/mutators to class data. That is, if you want to store something about your class as a whole (instead of about a single object). This data is then inherited by your sub-classes and can be overridden. %prep %setup -q -n Class-Data-Inheritable-%{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 %{perl_vendorlib}/Class/ %{_mandir}/man3/Class::Data::Inheritable.3* %changelog * Thu Oct 24 2024 Paul Howarth - 0.10-1 - Update to 0.10 - Don't use vars, use our * Fri Mar 10 2023 Paul Howarth - 0.09-5 - Use SPDX-format license tag * Sat Jul 31 2021 Paul Howarth - 0.09-1 - Update to 0.09 - Update spelling errors to resolve CPAN RT#83824 and CPAN RT#86563 - Fix dist tags for Alma and Rocky Linux * Mon Jun 3 2019 Paul Howarth - 0.08-32 - Modernize spec - Switch upstream from search.cpan.org to metacpan.org - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Don't explicitly clean buildroot in %%install section - Drop explicit %%clean section - Drop legacy BuildRoot: and Group: tags * Tue Aug 9 2016 Paul Howarth - 0.08-22 - Classify buildreqs by usage - Simplify find command using -delete * Sun Aug 31 2014 Paul Howarth - 0.08-18 - Drop %%defattr, redundant since rpm 4.4 * Wed Jul 17 2013 Paul Howarth - 0.08-15 - Perl 5.18 rebuild * Mon Jul 1 2013 Paul Howarth - 0.08-11 - BR: perl(ExtUtils::MakeMaker) * Wed Jun 27 2012 Paul Howarth - 0.08-10 - BR: perl(base) and perl(Carp) - Add runtime dependency on perl(Carp) - Don't need to remove empty directories from the buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorlib} - Use DESTDIR rather than PERL_INSTALL_ROOT * Wed Jun 22 2011 Paul Howarth - 0.08-7 - Rebuild for perl 5.14.1 in Rawhide - Use %%{_fixperms} macro instead of our own %%{__chmod} incantation - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Wed Jun 23 2010 Paul Howarth - 0.08-6 - Rebuild for perl 5.12.1 in Rawhide * Tue Jun 8 2010 Paul Howarth - 0.08-5 - Fix dist tag for RHEL-6 Beta * Wed Nov 25 2009 Paul Howarth - 0.08-4 - Import from Fedora * Sat Jul 25 2009 Fedora Release Engineering - 0.08-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Feb 26 2009 Fedora Release Engineering - 0.08-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Jul 09 2008 Ralf Corsépius - 0.08-1 - Upstream update - BR: perl(Test::Pod), perl(Test::Pod::Coverage) * Wed Jul 09 2008 Ralf Corsépius - 0.06-5 - Fix broken Source0-URL * Wed Feb 27 2008 Tom "spot" Callaway - 0.06-4 - Rebuild for perl 5.10 (again) * Mon Jan 14 2008 Tom "spot" Callaway - 0.06-3 - Rebuild for new perl * Fri Aug 24 2007 Tom "spot" Callaway - 0.06-2 - License fix * Wed Jan 17 2007 Tom "spot" Callaway - 0.06-1 - Bump to 0.06 * Thu Sep 14 2006 Tom "spot" Callaway - 0.05-1 - Bump to 0.05 * Mon Jan 9 2006 Tom "spot" Callaway - 0.04-1 - Bump to 0.04 * Sun Jul 10 2005 Tom "spot" Callaway - 0.02-3 - Changed /Class/Data to /Class, for proper ownership * Fri Jul 8 2005 Tom "spot" Callaway - 0.02-2 - cleanups * Wed Jul 6 2005 Tom "spot" Callaway - 0.02-1 - Initial package for Fedora Extras