# 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-Accessor Version: 0.51 Release: 17.%{__distinit}%{__distvers} Summary: Automated accessor generation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Accessor Source0: https://cpan.metacpan.org/modules/by-module/Class/Class-Accessor-%{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(B) BuildRequires: perl(base) BuildRequires: perl(Carp) BuildRequires: perl(strict) BuildRequires: perl(Sub::Name) # Test Suite BuildRequires: perl(Test::More) BuildRequires: perl(Tie::Hash) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description This module automagically generates accessors/mutators for your class. %prep %setup -q -n Class-Accessor-%{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 %doc Changes examples/ README %{perl_vendorlib}/Class/ %{_mandir}/man3/Class::Accessor.3* %{_mandir}/man3/Class::Accessor::Fast.3* %{_mandir}/man3/Class::Accessor::Faster.3* %changelog * Fri Mar 10 2023 Paul Howarth - 0.51-17 - Use SPDX-format license tag * Sun Jun 2 2019 Paul Howarth - 0.51-6 - Perl 5.30 rebuild * Mon Oct 23 2017 Paul Howarth - 0.51-1 - Update to 0.51 - Increase speed (CPAN RT#84838) - Faster constructor (CPAN RT#57353) - Fixed typos for CPAN RT#61304 and CPAN RT#86422 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - 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 * Mon Aug 8 2016 Paul Howarth - 0.34-20 - Classify buildreqs by usage - Simplify find command using -delete * Fri Aug 29 2014 Paul Howarth - 0.34-16 - Drop %%defattr, redundant since rpm 4.4 * Fri Jun 15 2012 Paul Howarth - 0.34-9 - BR: perl(base), perl(Carp) and perl(ExtUtils::MakeMaker) - 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.34-7 - Rebuild for perl 5.14.1 in Rawhide - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Wed Mar 16 2011 Paul Howarth - 0.34-6 - Import from Fedora * Tue Feb 08 2011 Fedora Release Engineering - 0.34-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Wed Dec 15 2010 Marcela Maslanova - 0.34-4 - Rebuild to fix problems with vendorarch/lib (#661697) * Fri Apr 30 2010 Marcela Maslanova - 0.34-3 - Mass rebuild with perl-5.12.0 * Mon Dec 7 2009 Stepan Kasal - 0.34-2 - Rebuild against perl 5.10.1 * Mon Oct 5 2009 Stepan Kasal - 0.34-1 - New upstream version * Sat Jul 25 2009 Fedora Release Engineering - 0.31-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Thu Feb 26 2009 Fedora Release Engineering - 0.31-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Wed Feb 27 2008 Tom "spot" Callaway - 0.31-4 - Rebuild for perl 5.10 (again) * Tue Jan 15 2008 Tom "spot" Callaway 0.31-3 - Rebuild for new perl * Fri Aug 24 2007 Tom "spot" Callaway 0.31-2 - License fix * Fri Jul 27 2007 Tom "spot" Callaway 0.31-1 - Update for 0.31, hooray for performance patches * Wed Jan 17 2007 Tom "spot" Callaway 0.30-1 - Bump to 0.30 * Thu Sep 14 2006 Tom "spot" Callaway 0.27-2 - Bump for fc6 * Wed Aug 2 2006 Tom "spot" Callaway 0.27-1 - Bump to 0.27 * Fri Mar 31 2006 Tom "spot" Callaway 0.25-1 - Bump to 0.25 * Mon Jan 9 2006 Tom "spot" Callaway 0.22-1 - Bump to 0.22 * Fri Aug 5 2005 Tom "spot" Callaway 0.19-3 - Add examples/ to %%doc * Fri Jul 8 2005 Tom "spot" Callaway 0.19-2 - Cleanups * Wed Jul 6 2005 Tom "spot" Callaway 0.19-1 - Initial package for Fedora Extras