# 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-Tiny Version: 1.008 Release: 8.%{__distinit}%{__distvers} Summary: Minimalist class construction License: Apache-2.0 URL: https://metacpan.org/release/Class-Tiny Source0: https://cpan.metacpan.org/modules/by-module/Class/Class-Tiny-%{version}.tar.gz BuildArch: noarch # Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) >= 6.17 # Module BuildRequires: perl(Carp) BuildRequires: perl(mro) # Test suite BuildRequires: perl(base) BuildRequires: perl(Exporter) BuildRequires: perl(File::Spec) BuildRequires: perl(lib) BuildRequires: perl(strict) BuildRequires: perl(subs) BuildRequires: perl(Test::More) >= 0.96 BuildRequires: perl(warnings) # Optional Tests BuildRequires: perl(CPAN::Meta) >= 2.120900 BuildRequires: perl(CPAN::Meta::Prereqs) BuildRequires: perl(Test::FailWarnings) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(mro) # Devel::GlobalDestruction only needed with old Perls prior to 5.14 %global __requires_exclude ^perl\\(Devel::GlobalDestruction\\) %description This module offers a minimalist class construction kit in around 120 lines of code. Here is a list of features: * Defines attributes via import arguments * Generates read-write accessors * Supports lazy attribute defaults * Supports custom accessors * Superclass provides a standard new constructor * new takes a hash reference or list of key/value pairs * new has heuristics to catch constructor attribute typos * new calls BUILD for each class from parent to child * Superclass provides a DESTROY method * DESTROY calls DEMOLISH for each class from child to parent It uses no non-core modules for any recent Perl. On Perls older than v5.10 it requires MRO::Compat. On Perls older than v5.14, it requires Devel::GlobalDestruction. %prep %setup -q -n Class-Tiny-%{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 CONTRIBUTING.mkdn Changes README %{perl_vendorlib}/Class/ %{_mandir}/man3/Class::Tiny.3* %changelog * Sat Jul 15 2023 Paul Howarth - 1.008-8 - Use SPDX-format license tag - Drop support for building with old perls needing Devel::GlobalDestruction - Use %%license unconditionally * Wed Sep 9 2020 Paul Howarth - 1.008-1 - Update to 1.008 - DEMOLISH docs incorrectly claimed that errors were thrown: updated to say that errors are rethrown * Thu Jun 6 2019 Paul Howarth - 1.006-10 - 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 support for building with Test::More < 0.96 - Drop legacy BuildRoot: and Group: tags - Test::FailWarnings and mro are always available * Mon Sep 12 2016 Paul Howarth - 1.006-1 - Update to 1.006 - Optimize generated accessors (5%% to 25%% faster depending on combination of read vs. write and default vs. no-default) * Tue Aug 9 2016 Paul Howarth - 1.004-3 - Fix FTBFS when perl is not in the minimal buildroot - Simplify find command using -delete * Sun Nov 1 2015 Paul Howarth - 1.004-1 - Update to 1.004 - Refactored accessor generation to allow subclasses of Class::Tiny to implement alternate accessors * Sat Jan 31 2015 Paul Howarth - 1.001-1 - Update to 1.001 - Added support for BUILDARGS for Moo(se) compatibility - Implements BUILDALL via method (was inline) for Moo(se) compatibility * Thu Sep 11 2014 Paul Howarth - 1.000-2 - Use %%license where possible * Thu Jul 17 2014 Paul Howarth - 1.000-1 - Update to 1.000 - INCOMPATIBLE CHANGES: These changes make Class::Tiny-based classes easier to subclass by more advanced object frameworks like Moose or Moo - Attributes for custom accessors MUST be declared for them to be set via the constructor; it is no longer sufficient for a method of the same name to exist - Unknown constructor arguments are ignored rather than fatal; they are not included in the object (special instructions for using BUILD to hide constructor arguments from validation are irrelevant and have been removed) * Mon Jul 14 2014 Paul Howarth - 0.015-1 - Update to 0.015 - Lowered minimum perl to 5.006 - BR: perl(Test::FailWarnings) where possible - Drop %%defattr, redundant since rpm 4.4 * Thu Nov 28 2013 Paul Howarth - 0.014-1 - Update to 0.014 - Put back a 'no warnings "once"' line that caused downstream warnings * Tue Nov 26 2013 Paul Howarth - 0.013-1 - Update to 0.013 - Expanded comparision to Object::Tiny and Class::Accessor * Fri Nov 1 2013 Paul Howarth - 0.012-1 - Update to 0.012 - Added documentation notes about multiple inheritance and attribute defaults under subclassing - Added tests for multiple inheritance * Thu Sep 26 2013 Paul Howarth - 0.011-1 - Update to 0.011 - Compile test could hang on Windows - ExtUtils::MakeMaker configure_requires dropped to 6.17 - Drop redundant patch for building with ExtUtils::MakeMaker < 6.30 * Wed Sep 18 2013 Paul Howarth - 0.010-1 - Update to 0.010 - Suppressed 'used only once' warnings (https://github.com/dagolden/Class-Tiny/issues/9) * Tue Sep 17 2013 Paul Howarth - 0.009-1 - Update to 0.009 - Fix "won't stay shared" bug on older perls (https://github.com/dagolden/Class-Tiny/issues/8) - BR:/R: perl(mro) for Perl ≥ 5.10 - Use local Test::More in %%build too, so Makefile.PL doesn't complain * Sun Sep 15 2013 Paul Howarth - 0.008-1 - Initial RPM version