# 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-Package-Stash Version: 0.40 Release: 4.%{__distinit}%{__distvers} Summary: Routines for manipulating stashes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Package-Stash Source0: https://cpan.metacpan.org/modules/by-module/Package/Package-Stash-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: gcc BuildRequires: make BuildRequires: perl-devel BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(Config) BuildRequires: perl(DynaLoader) BuildRequires: perl(Exporter) BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::Mksymlists) BuildRequires: perl(File::Basename) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(File::Temp) BuildRequires: perl(Text::ParseWords) # Module Runtime BuildRequires: perl(B) BuildRequires: perl(Carp) BuildRequires: perl(constant) BuildRequires: perl(Dist::CheckConflicts) >= 0.02 BuildRequires: perl(Getopt::Long) BuildRequires: perl(Module::Implementation) >= 0.06 BuildRequires: perl(Package::Stash::XS) >= 0.26 BuildRequires: perl(Scalar::Util) BuildRequires: perl(strict) BuildRequires: perl(Symbol) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(base) BuildRequires: perl(CPAN::Meta::Check) >= 0.011 BuildRequires: perl(CPAN::Meta::Requirements) BuildRequires: perl(File::Spec) BuildRequires: perl(lib) BuildRequires: perl(Test::Fatal) BuildRequires: perl(Test::More) >= 0.88 BuildRequires: perl(Test::Needs) # Optional Tests BuildRequires: perl(CPAN::Meta) >= 2.120900 BuildRequires: perl(Module::Runtime::Conflicts) BuildRequires: perl(Package::Anon) BuildRequires: perl(Variable::Magic) # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif # For performance and consistency Requires: perl(Package::Stash::XS) >= 0.26 # Not found by rpm auto-provides Provides: perl(Package::Stash::Conflicts) = 0 %description Manipulating stashes (Perl's symbol tables) is occasionally necessary, but incredibly messy, and easy to get wrong. This module hides all of that behind a simple API. %prep %setup -q -n Package-Stash-%{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 Changes CONTRIBUTING README %{_bindir}/package-stash-conflicts %{perl_vendorlib}/Package/ %{_mandir}/man3/Package::Stash.3* %{_mandir}/man3/Package::Stash::PP.3* %changelog * Mon May 8 2023 Paul Howarth - 0.40-4 - Use SPDX-format license tag * Mon Feb 21 2022 Paul Howarth - 0.40-1 - Update to 0.40 - Update bundled version of ExtUtils::HasCompiler, for new new Apple include paths - Drop support for EOL distributions prior to EL-7: - BR: optional test dependency perl(Package::Anon) unconditionally - Use %%license unconditionally * Sun Nov 22 2020 Paul Howarth - 0.39-1 - Update to 0.39 - Updated distribution metadata and packaging - Configuration phase now uses ExtUtils::HasCompiler * Tue Mar 10 2020 Paul Howarth - 0.38-6 - BR: perl(blib) for t/00-compile.t * Fri Jun 7 2019 Paul Howarth - 0.38-3 - Perl 5.30 rebuild * Wed Jan 2 2019 Paul Howarth - 0.38-1 - Update to 0.38 - Avoid new warning in 5.21.x regarding too many arguments for printf/sprintf - Canonical repository moved to https://github.com/moose/Package-Stash - Package new CONTRIBUTING file - Switch upstream from search.cpan.org to metacpan.org - Don't bother running the extra tests * Thu Apr 19 2018 Paul Howarth - 0.37-9 - 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 - Drop workaround for building with Test::More < 0.88 * Wed Sep 14 2016 Paul Howarth - 0.37-5 - Fix FTBFS when perl is not in the minimal buildroot - BR: perl-generators where available - Simplify find command using -delete * Tue Sep 23 2014 Paul Howarth - 0.37-1 - Update to 0.37 - Fix spurious warning in taint mode (GH#12) - Update patch for building with old Test::More versions - No documentation for Package::Stash::Conflicts in this release * Fri Sep 12 2014 Paul Howarth - 0.36-3 - Drop support for building with ExtUtils::MakeMaker < 6.30 - Drop support for building without Test::Requires - Drop support for building without Test::LeakTrace - Drop %%defattr, redundant since rpm 4.4 - Use %%license where possible - Classify buildreqs by usage * Wed Sep 4 2013 Paul Howarth - 0.36-1 - Update to 0.36 - Support building with PUREPERL_ONLY - BR: perl(Config), perl(Text::ParseWords) and perl(Variable::Magic) - Update patches as needed * Tue Jul 23 2013 Paul Howarth - 0.35-2 - Perl 5.18 rebuild * Wed Jul 10 2013 Paul Howarth - 0.35-1 - Update to 0.35 - Remove old, deprecated API - BR: perl(Getopt::Long) - perl(Package::DeprecationManager) is no longer needed - Update patches as needed * Sun Jan 6 2013 Paul Howarth - 0.34-1 - Update to 0.34 - Support anonymous stashes on newer perl versions - Prevent harmful effects from invalid settings for $ENV{PACKAGE_STASH_IMPLEMENTATION} - Switch to Module::Implementation - BR: perl(Module::Implementation) ≥ 0.06 - BR: perl(base) and perl(Package::Anon) for test suite - Bump Package::Stash::XS version requirement to 0.26 - Explicitly run extra tests, except with perl 5.12, where we don't run the author tests due to leaks - Update patches * Wed Jul 11 2012 Paul Howarth - 0.33-3 - BR: perl(constant), perl(File::Spec), perl(File::Temp) and perl(lib) - Specify version requirements for perl(Test::Pod), perl(Test::Pod::Coverage) and perl(Test::Script) - 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 - Use %%{_fixperms} macro rather than our own chmod incantation * Thu Sep 29 2011 Paul Howarth - 0.33-1 - Update to 0.33 - Add conflict on MooseX::Method::Signatures 0.36 - BR: perl(Carp) * Tue Sep 6 2011 Paul Howarth - 0.32-1 - Update to 0.32 - Bring the behavior of has_symbol for nonexistant scalars into line with the XS version - Invalid package names (for instance, Foo:Bar) are not allowed - Invalid stash entry names (anything containing ::) are not allowed - Update patches to apply cleanly - Bump perl(Package::Stash::XS) version requirement to 0.24 * Tue Aug 9 2011 Paul Howarth - 0.31-1 - Update to 0.31 - Fix ->add_symbol('$foo', qr/sdlfk/) on 5.12+ - Fix ->add_symbol('$foo', \v1.2.3) on 5.10+ - Update patch for old Test::More versions - Update patch for no Test::Requires * Thu Jul 21 2011 Paul Howarth - 0.30-2 - Rebuild for perl 5.14.1 in Rawhide * Thu Jul 21 2011 Paul Howarth - 0.30-1 - Update to 0.30 - Fix compiler detection in Makefile.PL - Fix dist tag for CentOS 6 and Scientific Linux - Update patch for old ExtUtils::MakeMaker versions * Wed Apr 6 2011 Paul Howarth - 0.29-1 - Update to 0.29 - Really skip the package-stash-conflict script in the compile test * Wed Mar 30 2011 Paul Howarth - 0.28-1 - Update to 0.28 - META.json fixes - Update patch for old ExtUtils::MakeMaker versions to apply cleanly * Mon Mar 28 2011 Paul Howarth - 0.27-1 - Update to 0.27 - Skip the package-stash-conflicts script in the compile test - Nobody else likes macros for commands * Sat Mar 5 2011 Paul Howarth - 0.26-1 - Update to 0.26 - Make the namespace cache lazy and weak, in case the stash is deleted - However, this doesn't work on 5.8, so disable the namespace caching entirely there - Update patches to apply cleanly - Bump perl(Package::Stash::XS) version requirement to 0.22 - Bump perl(Dist::CheckConflicts) version requirement to 0.02 * Tue Jan 25 2011 Paul Howarth - 0.25-1 - Update to 0.25 (make the leak tests author-only, since some smokers run release tests) - Update patches to apply cleanly - Bump perl(Package::Stash::XS) version requirement to 0.21 * Tue Jan 18 2011 Paul Howarth - 0.24-1 - Update to 0.24 (reinstate Test::Requires dependency) * Wed Jan 12 2011 Paul Howarth - 0.23-1 - Update to 0.23 - Lower perl prereq to 5.8.1 - Make the leak tests release-only - Update patches to apply cleanly - Add patch to skip memory leak tests if we don't have Test::LeakTrace * Thu Jan 6 2011 Paul Howarth - 0.22-1 - Update to 0.22 (bump Package::Stash::XS version requirement since a bug was fixed there) - Update patches for old ExtUtils::MakeMaker and Test::More versions - BR/R perl(Package::Stash::XS) >= 0.19 - Content-free manpages for package-stash-conflicts and Package::Stash::Conflicts dropped upstream * Tue Jan 4 2011 Paul Howarth - 0.20-1 - Update to 0.20 - Methods were renamed for brevity: s/_package// - Convert Package::Stash into a module which loads either the XS or pure perl implementation, depending on what's available - Use Dist::CheckConflicts - Silence deprecation warnings for the method renaming for now - New script and manpage: package-stash-conflicts - New modules and manpages: Package::Stash::Conflicts and Package::Stash::PP - New build requirements: - perl(Dist::CheckConflicts) - perl(Package::DeprecationManager) - perl(Package::Stash::XS) - perl(Test::LeakTrace) - perl(Test::Requires) - perl(Test::Script) - Update patches for old ExtUtils::MakeMaker and Test::More versions - Add new patch to work around absence of Test::Requires if necessary - Use chmod rather than fixperms now we're shipping a script - Require perl(Package::Stash::XS) for performance and consistency - Manually provide perl(Package::Stash::Conflicts), hidden from auto-provides * Sun Oct 31 2010 Paul Howarth - 0.13-1 - Update to 0.13 (use Test::Fatal instead of Test::Exception) - Update patches for old ExtUtils::MakeMaker and Test::More versions * Mon Sep 20 2010 Paul Howarth - 0.08-1 - Update to 0.08 (re-enable the caching of the stash) - Update patches for old ExtUtils::MakeMaker and Test::More versions * Fri Jun 25 2010 Paul Howarth - 0.05-2 - Rebuild for perl 5.12.1 in Rawhide * Wed Jun 16 2010 Paul Howarth - 0.05-1 - Update to 0.05 - Bump Test::More requirement for done_testing - Update packaging stuff - BR: perl(Test::EOL) and perl(Test::NoTabs) - Update patch for old Test::More versions * Mon Jun 14 2010 Paul Howarth - 0.04-1 - Update to 0.04 (get_package_symbol now doesn't autovivify stash entries; a new method get_or_add_package_symbol can now be used for that behaviour) - Improve patch for old ExtUtil::MakeMaker versions - Update patch for old Test::More versions * Mon Jun 7 2010 Paul Howarth - 0.03-1 - Initial RPM version