# 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-Devel-GlobalDestruction Version: 0.14 Release: 21.%{__distinit}%{__distvers} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Expose PL_dirty, the flag that marks global destruction URL: https://metacpan.org/release/Devel-GlobalDestruction Source: https://cpan.metacpan.org/modules/by-module/Devel/Devel-GlobalDestruction-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(base) BuildRequires: perl(Carp) BuildRequires: perl(DynaLoader) BuildRequires: perl(Exporter) BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(File::Basename) BuildRequires: perl(File::Spec) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(File::Temp) BuildRequires: perl(Text::ParseWords) # Module Runtime BuildRequires: perl(B) BuildRequires: perl(strict) BuildRequires: perl(Sub::Exporter::Progressive) >= 0.001011 BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(Config) BuildRequires: perl(FindBin) BuildRequires: perl(IPC::Open2) BuildRequires: perl(POSIX) BuildRequires: perl(threads) BuildRequires: perl(threads::shared) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description Perl's global destruction is a little tricky to deal with with respect to finalizers because it's not ordered and objects can sometimes disappear. Writing defensive destructors is hard and annoying, and usually if global destruction is happening you only need the destructors that free up non process local resources to actually execute. For these constructors you can avoid the mess by simply bailing out if global destruction is in effect. %prep %setup -q -n Devel-GlobalDestruction-%{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 README t/ %{perl_vendorlib}/Devel/ %{_mandir}/man3/Devel::GlobalDestruction.3* %changelog * Fri Mar 31 2023 Paul Howarth - 0.14-21 - Use SPDX-format license tag - Drop support for old Perl versions needing XS helper * Thu Jun 6 2019 Paul Howarth - 0.14-9 - 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 Nov 1 2016 Paul Howarth - 0.14-1 - Update to 0.14 - Stop relying on . being in @INC - Switch to ExtUtils::HasCompiler to detect presence of a compiler * Thu Aug 18 2016 Paul Howarth - 0.13-7 - Classify buildreqs by usage - Simplify find command using -delete - Ensure proper SRPM generation when perl is not in the minimal buildroot * Wed Sep 10 2014 Paul Howarth - 0.13-2 - Perl 5.20 rebuild * Mon Aug 18 2014 Paul Howarth - 0.13-1 - Update to 0.13 - Include README - Include minimum perl version 5.6 in metadata - Drop %%defattr, redundant since rpm 4.4 * Fri Nov 1 2013 Paul Howarth - 0.12-1 - Update to 0.12 - Fix detection when loaded during global destruction by checking B::main_cv instead of B::main_start - Bump Sub::Exporter::Progressive dependency to fix loading in global destruction - Specify all dependencies * Fri Jul 19 2013 Paul Howarth - 0.11-2 - Perl 5.18 rebuild * Wed Apr 3 2013 Paul Howarth - 0.11-1 - Update to 0.11 - Fix upgrading from version 0.09 or older - This release by HAARG -> update source URL * Wed Mar 27 2013 Paul Howarth - 0.10-1 - Update to 0.10 (#928262) - Rewrite pure-perl implementation in terms of B::main_start (greatly simplifies code) - Fix pure-perl behavior under $^C (CPAN RT#78619) - Separate XS portion into a compiler-optional dependency Devel::GlobalDestruction::XS - Bump perl(Sub::Exporter::Progressive) version requirement to 0.001006 - Package is always noarch now - BR:/R: perl(Devel::GlobalDestruction::XS) with perl < 5.13.7 - BR: perl(threads::shared) for the test suite * Thu Aug 9 2012 Paul Howarth - 0.09-1 - Update to 0.09 - Rewrite completely broken pure-perl GD detection under threads - Fix pure-perl implementation incorrectly reporting GD during END phase - This release by RIBASUSHI -> update source URL * Wed Aug 1 2012 Paul Howarth - 0.08-1 - Update to 0.08 - Switch to Sub::Exporter::Progressive - BR: perl(Sub::Exporter::Progressive) ≥ 0.001002 rather than plain perl(Sub::Exporter) * Thu Jul 26 2012 Paul Howarth - 0.07-1 - Update to 0.07 - Actually detect errors in pure-perl test - Add prototype to pure-perl pre-5.14 version - This release by FLORA -> update source URL * Thu Jul 5 2012 Paul Howarth - 0.06-2 - BR: perl(File::Spec), perl(File::Temp) and perl(threads) * Thu Jun 14 2012 Paul Howarth - 0.06-1 - Update to 0.06 - De-retardize XS-less behavior under SpeedyCGI - Test suite now works from within space-containing paths - This release by RIBASUSHI -> update source URL * Fri Apr 27 2012 Paul Howarth - 0.05-1 - Update to 0.05 - Add pure-perl implementation for situations where neither ${^GLOBAL_PHASE} nor XS are available - This release by DOY -> update source URL - BR: perl(ExtUtils::CBuilder) ≥ 0.27 and perl(XSLoader), and add a runtime dependency on perl(XSLoader) if we're doing an XS build - Add runtime dependency on perl(Carp) - Don't need to remove empty directories from buildroot - Drop support for old distributions prior to FC-3: - Don't need to define %%{perl_vendorarch} - Use %%{_fixperms} macro rather than our own chmod incantation - Use DESTDIR rather than PERL_INSTALL_ROOT * Mon Jul 4 2011 Paul Howarth - 0.04-2 - Rebuild for perl 5.14.1 in Rawhide - Fix dist tag for CentOS 6 and Scientific Linux * Mon Jul 4 2011 Paul Howarth - 0.04-1 - Update to 0.04 - To detect a perl with ${^GLOBAL_PHASE}, check for the feature itself instead of a specific perl version - Update the documentation to reflect the use of ${^GLOBAL_PHASE} if available - Stop depending on Scope::Guard for the tests - Upgrade ppport.h from version 3.13 to 3.19 - Drop no-longer-necessary buildreq perl(Scope::Guard) - Package is noarch from perl 5.13.7 - Package Changes file - Nobody else likes macros for commands * Thu Dec 2 2010 Paul Howarth - 0.03-1 - Update to 0.03 - Drop the XS code on perl versions recent enough to have ${^GLOBAL_PHASE} (5.13.7 onwards) - Require at least Perl 5.6 - Use XSLoader without a fallback to DynaLoader - Use our instead of use vars - This release by FLORA -> update source URL * Fri Jun 25 2010 Paul Howarth - 0.02-10 - Rebuild for perl 5.12.1 in Rawhide * Mon May 17 2010 Paul Howarth - 0.02-9 - Fix dist tag for RHEL-6 Beta * Wed Feb 17 2010 Paul Howarth - 0.02-8 - Dist tag for Rawhide no longer needs special-casing - Use %%{?perl_default_filter} for provides filter * Mon Aug 10 2009 Paul Howarth - 0.02-7 - Import from Fedora * Sat Jul 25 2009 Fedora Release Engineering - 0.02-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sat May 23 2009 Chris Weyl - 0.02-5 - Stripping bad provides of private Perl extension libs * Thu Feb 26 2009 Fedora Release Engineering - 0.02-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild * Mon Nov 03 2008 Chris Weyl 0.02-3 - bump * Sat Nov 01 2008 Chris Weyl 0.02-2 - tweak summary * Sun Oct 26 2008 Chris Weyl 0.02-1 - clean up for review submission * Sun Oct 19 2008 Chris Weyl 0.02-0.1 - initial RPM packaging - generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.5)