# 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 %global two_version 0.42 %global four_version 34 # Module::Build would like to pull in lots of other modules as recommended, # but that would lead to severe bootstrapping issues %global comprehesive_deps 0 # TODO: BR:/R: perl(inc::latest) when available (optional functionality) # TODO: BR:/R: perl(only) ≥ 0.25 when available (optional functionality) Summary: Build, test, and install Perl modules Name: perl-Module-Build Epoch: 2 Version: %{two_version}%{?four_version:.%{four_version}} Release: 1.%{__distinit}%{__distvers} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Build Source0: https://cpan.metacpan.org/modules/by-module/Module/Module-Build-%{two_version}%{?four_version}.tar.gz Patch1: Module-Build-0.4231-Do-not-die-on-missing-ExtUtils-CBuilder-in-have_c_co.patch BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(lib) # Module Runtime BuildRequires: perl(AutoSplit) BuildRequires: perl(Carp) BuildRequires: perl(Config) BuildRequires: perl(CPAN::Meta) >= 2.142060 BuildRequires: perl(CPAN::Meta::Converter) BuildRequires: perl(CPAN::Meta::Merge) BuildRequires: perl(Cwd) BuildRequires: perl(Data::Dumper) BuildRequires: perl(DynaLoader) BuildRequires: perl(ExtUtils::CBuilder) >= 0.27 BuildRequires: perl(ExtUtils::Install) BuildRequires: perl(ExtUtils::Manifest) BuildRequires: perl(ExtUtils::Mkbootstrap) BuildRequires: perl(ExtUtils::ParseXS) >= 2.21 BuildRequires: perl(File::Basename) BuildRequires: perl(File::Compare) BuildRequires: perl(File::Copy) BuildRequires: perl(File::Find) BuildRequires: perl(File::Path) BuildRequires: perl(File::ShareDir) >= 1.00 BuildRequires: perl(File::Spec) >= 0.82 BuildRequires: perl(Getopt::Long) BuildRequires: perl(Module::Metadata) >= 1.000002 BuildRequires: perl(Parse::CPAN::Meta) BuildRequires: perl(Perl::OSType) >= 1 BuildRequires: perl(strict) BuildRequires: perl(Text::ParseWords) BuildRequires: perl(version) >= 0.87 BuildRequires: perl(warnings) # Test Suite BuildRequires: perl-devel BuildRequires: perl(base) BuildRequires: perl(blib) BuildRequires: perl(CPAN::Meta::YAML) >= 0.03 BuildRequires: perl(Exporter) BuildRequires: perl(ExtUtils::Installed) BuildRequires: perl(ExtUtils::Packlist) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(File::Temp) BuildRequires: perl(TAP::Harness) >= 3 BuildRequires: perl(TAP::Harness::Env) BuildRequires: perl(Test::Harness) BuildRequires: perl(Test::More) BuildRequires: perl(utf8) BuildRequires: perl(vars) # Optional Tests %if 0%{!?perl_bootstrap:1} BuildRequires: perl(Archive::Zip) %endif # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif Requires: perl(AutoSplit) Requires: perl(CPAN::Meta) >= 2.142060 Requires: perl(CPAN::Meta::Converter) Requires: perl(CPAN::Meta::Merge) Requires: perl(DynaLoader) # Do not hard-require ExtUtils::CBuilder to allow installing Module::Build # without gcc (#1547165); Module::Build users have to require # ExtUtils::CBuilder explicitly according to "XS Extensions" section in # Module::Build::Authoring POD %if 0%{?fedora} > 20 || 0%{?rhel} > 7 Recommends: perl(ExtUtils::CBuilder) >= 0.27 %else Requires: perl(ExtUtils::CBuilder) >= 0.27 %endif Requires: perl(ExtUtils::Manifest) Requires: perl(ExtUtils::Mkbootstrap) Requires: perl(ExtUtils::ParseXS) >= 2.21 Requires: perl(File::ShareDir) >= 1.00 Requires: perl(Getopt::Long) Requires: perl(Test::Harness) # Optional Functionality BuildRequires: perl(Archive::Tar) >= 1.09 BuildRequires: perl(Module::Signature) >= 0.21 BuildRequires: perl(Pod::Html) BuildRequires: perl(Pod::Man) BuildRequires: perl(Pod::Text) BuildRequires: perl(Software::License) >= 0.103009 BuildRequires: perl(Software::LicenseUtils) >= 0.103009 Requires: perl(Archive::Tar) >= 1.09 Requires: perl(ExtUtils::Installed) Requires: perl(Module::Signature) >= 0.21 Requires: perl(Pod::Html) Requires: perl(Pod::Man) Requires: perl(Pod::Text) Requires: perl(Software::License) >= 0.103009 Requires: perl(Software::LicenseUtils) >= 0.103009 Requires: perl(TAP::Harness::Env) %if %{comprehesive_deps} # Prefers Pod::Readme but can fall back to Pod::Text BuildRequires: perl(Pod::Readme) >= 0.04 Requires: perl(Pod::Readme) >= 0.04 # Keep PAR::Dist support optional to avoid build dependency cycles BuildRequires: perl(PAR::Dist) >= 0.17 Requires: perl(PAR::Dist) >= 0.17 %endif %description "Module::Build" is a system for building, testing, and installing Perl modules. It is meant to be a replacement for "ExtUtils::MakeMaker". Developers may alter the behavior of the module through subclassing in a much more straightforward way than with "MakeMaker". It also does not require a "make" on your system - most of the "Module::Build" code is pure-perl and written in a very cross-platform way. In fact, you don't even need a shell, so even platforms like MacOS (traditional) can use it fairly easily. %prep %setup -q -n Module-Build-%{two_version}%{?four_version} # Handle missing ExtUtils::CBuilder as a missing compiler (#1547165) %patch -P 1 -p1 %build perl Build.PL --installdirs=vendor ./Build %install ./Build install --destdir=%{buildroot} --create_packlist=0 %{_fixperms} -c %{buildroot}%{_bindir}/config_data %check MB_TEST_EXPERIMENTAL=1 ./Build test %files %license LICENSE %doc Changes README %{_bindir}/config_data %{perl_vendorlib}/Module/ %{_mandir}/man1/config_data.1* %{_mandir}/man3/Module::Build.3* %{_mandir}/man3/Module::Build::API.3* %{_mandir}/man3/Module::Build::Authoring.3* %{_mandir}/man3/Module::Build::Base.3* %{_mandir}/man3/Module::Build::Bundling.3* %{_mandir}/man3/Module::Build::Compat.3* %{_mandir}/man3/Module::Build::ConfigData.3* %{_mandir}/man3/Module::Build::Cookbook.3* %{_mandir}/man3/Module::Build::Notes.3* %{_mandir}/man3/Module::Build::PPMMaker.3* %{_mandir}/man3/Module::Build::Platform::Default.3* %{_mandir}/man3/Module::Build::Platform::MacOS.3* %{_mandir}/man3/Module::Build::Platform::Unix.3* %{_mandir}/man3/Module::Build::Platform::VMS.3* %{_mandir}/man3/Module::Build::Platform::VOS.3* %{_mandir}/man3/Module::Build::Platform::Windows.3* %{_mandir}/man3/Module::Build::Platform::aix.3* %{_mandir}/man3/Module::Build::Platform::cygwin.3* %{_mandir}/man3/Module::Build::Platform::darwin.3* %{_mandir}/man3/Module::Build::Platform::os2.3* %changelog * Fri Apr 28 2023 Paul Howarth - 2:0.42.34-1 - Update to 0.4234 - PodParser now respects =encoding directives - Don't use libraries in t/bundled for Build.PL - make_tarball: workaround for broken tar on Darwin - Respect $Config{man1ext}/$Config{man3ext} - Do not require a compiler if c_source is an empty list - Avoid use of deprecated patch syntax * Fri Dec 9 2022 Paul Howarth - 2:0.42.32-1 - Update to 0.4232 - Drop Pod::Man dependency for 5.8 compatibility - Use SPDX-format license tag * Tue Mar 29 2022 Paul Howarth - 2:0.42.31-12 - Handle missing ExtUtils::CBuilder as a missing compiler (#1547165) - Use %%license unconditionally * Tue Mar 10 2020 Paul Howarth - 2:0.42.31-2 - BR: perl(blib) for the test suite * Wed Jan 29 2020 Paul Howarth - 2:0.42.31-1 - Update to 0.4231 - Add dependency on ExtUtils::PL2Bat (Windows only) * Tue Jun 4 2019 Paul Howarth - 2:0.42.29-3 - Perl 5.30 rebuild * Tue Apr 16 2019 Paul Howarth - 2:0.42.29-1 - Update to 0.4229 - Improve pureperl-only support (CPAN RT#119914) - Improve the documentation of Module::Build::Compat and dynamic_config - Update configure, build, test prereqs - Replace "MOTIVATIONS" section with "COMPARISON" - Switch upstream from search.cpan.org to metacpan.org * Thu Mar 1 2018 Paul Howarth - 2:0.42.24-7 - Do not require a compiler if c_source is an empty list (#1547165, CPAN RT#124625) * Thu Mar 1 2018 Paul Howarth - 2:0.42.24-6 - Where weak dependencies are available, do not hard-require ExtUtils::CBuilder to allow installing Module::Build without gcc (#1547165); Module::Build users have to require ExtUtils::CBuilder explicitly according to "XS Extensions" section in Module::Build::Authoring POD - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl * Wed May 31 2017 Paul Howarth - 2:0.42.24-1 - Update to 0.4224 - Add code to special case dot-in-inc in Build - 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 - BR: perl-devel unconditionally * Fri Mar 31 2017 Paul Howarth - 2:0.42.22-1 - Update to 0.4222 - Include relative path for do in Build/Makefile.PL, so they will function without . in @INC - Remove use deprecate * Wed Oct 26 2016 Paul Howarth - 2:0.42.20-2 - Don't pull in optional test requirements when bootstrapping (avoids build dependency loop via Test::MockModule and Archive::Zip) - Drop runtime dependency on perl(PAR::Dist) for the same reason * Wed Aug 17 2016 Paul Howarth - 2:0.42.20-1 - Update to 0.4220 - Initialize MM Compat environmental variables to empty strings - Skip PPM test when link_executable fails - Make more actions deterministic - Preprocess file lists generated by rscan_dir() to sort them * Tue Aug 2 2016 Paul Howarth - 2:0.42.18-2 - BR: perl-generators where available * Mon Apr 25 2016 Paul Howarth - 2:0.42.18-1 - Update to 0.4218 - Read extra_linker_flags using its accessor - Convert win shell splitting to m//gc parser, fixing handling of 0 and handling of backslashes preceding a double quote - Win32 installation of MB with gmake requires SHELL env var to be set - Skip XS test when link_executable fails * Wed Jan 20 2016 Paul Howarth - 2:0.42.16-1 - Update to 0.4216 - Honor environmental variables when using TAP::Harness directly - Reintroduce some level of perl 5.6 support; note that this comes with no guarantees or commitment - Allow Devel::Cover usage with TAP::Harness - Remove "running under some shell" [Shoichi Kaji] - Fix cookbook - code was missing trailing ` - Delete test that fails with new version.pm - BR: perl-devel for XS-building tests * Thu Jul 2 2015 Paul Howarth - 2:0.42.14-2 - Drop some optional dependencies that create bootstrapping problems * Sun Jun 14 2015 Paul Howarth - 2:0.42.14-1 - Update to 0.4214 - Handle failure to guess license from key better - Output data in a stable order * Mon May 18 2015 Paul Howarth - 2:0.42.12-1 - Update to 0.4212 - Revert "Stop using version->normal(); prefer stringify()" * Mon Jan 26 2015 Paul Howarth - 2:0.42.11-1 - Update to 0.4211 - Fix t/actions/installdeps.t to work on "perl in space" - Stop using version->normal(); prefer stringify() - inc::latest has been split out to a separate distribution on CPAN; it is an optional prerequisite, only needed for the experimental bundling feature - Classify buildreqs by usage - Make %%files list more explicit * Wed Sep 10 2014 Paul Howarth - 2:0.42.10-2 - Perl 5.20 rebuild * Wed Sep 3 2014 Paul Howarth - 2:0.42.10-1 - Update to 0.4210 - Fix type installdir -> installdirs - Module::Build::YAML has been removed - Module::Build::ModuleInfo has been removed - Module::Build::Version has been removed - Get rid of "use vars" - Added use warnings to all modules - Stop calling UNIVERSAL::isa as a function - Use CPAN::Meta::Merge for meta_merge - Convert with CPAN::Meta::Convert in meta_add - Add configure requirements - Handle old releases of CPAN::Meta more gracefully - Drop %%defattr, redundant since rpm 4.4 - Use %%license where possible * Mon Jul 14 2014 Paul Howarth - 2:0.42.06-1 - Update to 0.4206 - Formally declare 5.8 dependency - Fix MBTest to work with new and old versions of Test::Builder - Enable release and author tests during disttest * Mon Feb 10 2014 Paul Howarth - 2:0.42.05-1 - Update to 0.4205 - Fix license code regression for artistic license - Don't swallow ExtUtils::CBuilder loading errors - Handle testing on cross-compile builds - Protect against platforms without getpw{nam,uid} * Sun Jan 12 2014 Paul Howarth - 2:0.42.04-1 - Update to 0.4204 - Map conflicts back to runtime - Use mod2fname whenever it's available - Accept custom entries in meta_merge 1.4 * Thu Nov 28 2013 Paul Howarth - 2:0.42.03-1 - Update to 0.4203 - Map recommends back to runtime recommends - Map restrictive license to restricted in meta 2.0 * Tue Nov 19 2013 Paul Howarth - 2:0.42.02-1 - Update to 0.4202 - Don't merge prereqs from meta to mymeta * Tue Nov 19 2013 Paul Howarth - 2:0.42.01-1 - Update to 0.4201 - Prefer META.json over META.yml * Tue Nov 12 2013 Paul Howarth - 2:0.42.00-1 - Update to 0.4200 - Converted to using Meta 2.0 - Lowercase license in fallback logic - Do not set provides in metadata if no_index is set * Tue Nov 5 2013 Paul Howarth - 2:0.40.08-1 - Update to 0.4008 - Fix test failing on ancient perls ≤ 5.8.1 - Do not set default switches in Test::Harness; not even -w - Fix a couple more broken links to CPAN::META::Spec that should have been CPAN::Meta::Spec * Fri Jul 19 2013 Paul Howarth - 2:0.40.07-1 - Update to 0.4007 - Removed undeclared test dependency on parent.pm - Declared dependency on Pod::Man 2.17 for utf8 support - Force generation of man pages in manify_with_utf8.t - BR: perl(base) rather than perl(parent) - Update patch for CPAN RT#87033 so we don't need such a recent version of Pod::Man as upstream expects * Thu Jul 18 2013 Paul Howarth - 2:0.40.06-1 - Update to 0.4006 - Significantly sped up some tests by not forcing HTML docs to be built when the user's config doesn't ask for them anyway - The Module::Metadata package was split out from this distro back in 2010; removed its regression tests - Removed dependence on IO::File, replacing it with safe invocations of open() - Added an 'extra_manify_args' parameter to facilitate man pages containing Unicode - Added an '--html_links 0' argument for the 'html' action, which can hugely speed things up; the main effect is speeding up the M::B tests themselves - Fix hash argument parsing in subclasses - Revised detildification on VMS - Fix run_test_harness for case when $Switches is an empty string - BR:/R: perl(File::ShareDir) - BR: perl(parent) and perl(TAP::Harness) ≥ 3 for test suite - Add patch to skip UTF8 manpage POD formatting test if we have an unsupported Pod::Man version (CPAN RT#87033) * Thu Apr 25 2013 Paul Howarth - 2:0.40.05-1 - Update to 0.4005 - Added --pureperl-only support - pod2html will fail with an empty podpath in some cases (CPAN RT#72176) - Fix links between modules in HTML docs output * Sat Mar 30 2013 Paul Howarth - 2:0.40.04-1 - Update to 0.4004 - Minor VMS fix for @INC - test_requires support has been added * Tue Jan 29 2013 Paul Howarth - 2:0.40.03-5 - Add runtime dependencies for POD convertors to get manual pages when building other packages * Sun Aug 19 2012 Paul Howarth - 2:0.40.03-1 - Update to 0.4003 - Get rid of outdated metadata tests * Fri Jul 27 2012 Paul Howarth - 2:0.40.02-1 - Update to 0.4002 - Test for TAP::Harness version properly - Install to 'site' on 5.12+ - Document extra_{compiler|linker}_flags accessors * Tue Jun 26 2012 Paul Howarth - 2:0.40.01-1 - Update to 0.4001 - Parse Pod name a litte more leniently - Various spelling fixes - Fix configuration keys used for script location - use warnings * Thu May 31 2012 Paul Howarth - 2:0.40-1 - Bump epoch and revert to 2-digit numbering scheme - Drop hacks to account for rpm/perl versioning scheme differences * Thu Mar 22 2012 Paul Howarth - 1:0.4000-2 - Add provide for perl(Module::Build) = %%{version} to account for differences between rpm and perl versioning - Drop support for distributions prior to FC-3: - Drop patch to skip failing tests on perl 5.8.0 - Don't need to define %%{perl_vendorlib} - Don't need to run test suite with LANG=C - Use %%{_fixperms} macro instead of our own chmod incantation * Fri Feb 24 2012 Paul Howarth - 1:0.4000-1 - Update to 0.4000 - Fixed bug with a nested directory named 'share' inside a ShareDir (CPAN RT#68585) - Fixed failing tilde.t when run under UID without passwd entry (CPAN RT#67893) - Fixed bug where modules without $VERSION might have a version of '0' listed in 'provides' metadata, which will be rejected by PAUSE - Fixed bug in PodParser to allow numerals in module names - Fixed bug where giving arguments twice led to them becoming arrays, resulting in install paths like "ARRAY(0xdeadbeef)/lib/Foo.pm" - Fixed typo in Module::Build documentation (CPAN RT#67008) - Pod to HTML internals changed to support new Pod::Html work in the Perl core - Fixed deviance from alphabetical order in documentation of constructor parameters - Add documentation for configure_requires constructor parameter - Change some of the docs' language describing relationship to MakeMaker - List Perl-Toolchain-Gang repo as official repo - Update RHL-9/RHEL-3 patch to apply cleanly * Thu Jul 7 2011 Paul Howarth - 1:0.3800-3 - 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 30 2011 Paul Howarth - 1:0.3800-2 - Explicitly require perl(CPAN::Meta) >= 2.110420, needed for creation of MYMETA files by Build.PL * Sun Mar 6 2011 Paul Howarth - 1:0.3800-1 - Update to 0.3800 - Generates META.json and MYMETA.json consistent with version 2 of the CPAN Meta Spec - Autogenerated documentation no longer includes private actions from Module::Build's own release subclass - Drop buildreq perl(Module::Signature) and test GPG keys as Module::Signature is faked out in the test suite now - Replace buildreq perl(CPAN::Meta::YAML) with perl(CPAN::Meta) >= 2.110420 and perl(Parse::CPAN::Meta) >= 1.4401 - Drop explicit buildreq perl(version) >= 0.87 (still pulled in via Module::Metadata) * Fri Jan 28 2011 Paul Howarth - 1:0.3624-1 - Update to 0.3624 - Fixed pod2html directory bugs - Fixed creation of spurious blib directory in core perl directory when running install.t (CPAN RT#63003) * Thu Jan 27 2011 Paul Howarth - 1:0.3623-1 - Update to 0.3623 - Fixed bugs involving bootstrapping configure_requires prerequisites on older CPANPLUS clients or for either CPAN/CPANPLUS when using the compatibility Makefile.PL - Added diagnostic output when configure_requires are missing for the benefit of users doing manual installation * Tue Jan 25 2011 Paul Howarth - 1:0.3622-1 - Update to 0.3622 - Give a list of valid licenses when given one we don't recognize (CPAN RT#55951) - Improve HTML documentation generation on ActivePerl (CPAN RT#53478) - Won't try to use ActivePerl doc generation tools without confirming that they are indeed installed - Handle META/MYMETA reading and writing within Module::Build to ensure utf8 mode on filehandles - Fix runtime error on cygwin when searching for an executable command during installdeps testing - Add install*script to search path for installdeps client and search site, then vendor, then core paths - Set temporary $ENV{HOME} in testing to an absolute path, which fixes some issues when tested as part of the Perl core - Module::Build::ModuleInfo now warns instead of dying when a module has an invalid version; ->version now just returns undef (CPAN RT#59593) - Add 'Build manifest_skip' action to generate a default MANIFEST.SKIP - When temporarily generating a MANIFEST.SKIP when none exists, it will be removed on exit instead of hanging around until 'Build clean'; this is less surprising/confusing and the 'Build manifest_skip' action is now available instead to bootstrap the file - Add 'distinstall' action to run 'Build install' inside the generated distribution directory - Add 'release_status' and 'dist_suffix' properties in preparation for adding CPAN Meta Spec 2 support; 'dist_suffix' will be set to 'TRIAL' automatically when necessary - Module::Build::Compat will now convert dotted-decimal prereqs into decimal rather than dying (and will warn about this) - Skips 'release_status' tests on perl < 5.8.1 due to buggy treatment of dotted-decimal version numbers - PERL_DL_NONLAZY is now always set when tests are run (CPAN RT#56055) - Cache case-sensitivity checks to boost performance (CPAN RT#55162, CPAN RT#56513) - When parsing a version number out of a file, any trailing alphabetical characters will be dropped to avoid fatal errors when comparing version numbers; these would have been dropped (with a warning) anyway during an ordinary numeric comparison (CPAN RT#56071) - A Perl interpreter mismatch between running Build.PL and running Build is now a fatal error, not a warning (CPAN RT#55183) - Build script now checks that M::B is at least the same version of M::B as provided in 'configure_requires' in META (CPAN RT#54954) - No longer uses fake user 'foo' in t/tilde (CPAN RT#61793) - 'fakeinstall' will use .modulebuildrc actions for 'install' if no specific 'fakeinstall' options are provided (CPAN RT#57279) - When authors do not specify Module::Build in configure_requires and Module::Build is automatically added, a warning will be issued showing the added prerequisite - Move automatic configure_requires generation into get_metadata() and added an 'auto' argument to toggle it (on for META and off for MYMETA) - Correctly report missing metafile field names - A broken version.pm load won't cause Module::Build::Version to die trying to install itself as a mock version (CPAN RT#59499) - Better error message in case package declaration is not found when searching for version - Make 'license' more liberal: you can now specify either a license key from the approved list (c.f. Module::Build::API) or just a Software::License subclass name (e.g. 'Perl_5'); this should provide better support for custom or proprietary licenses - Add a mock Software::License to prevent t/properties/license.t from failing - Arguments with key value pairs may now have keys with "-" in them (CPAN RT#53050) - Won't fail tests if an ancient Tie::IxHash is installed - Add dependency on Perl::OSType to refactor and centralize management of OS type mapping - Perl::OSType is declared as a 'configure_requires' dependency, but is also bundled in inc (and loaded if needed) - Return to starting directory after install action; this is an attempt to fix an install.t heisenbug (CPAN RT#63003) - Add quotemeta to t/tilde.t test to fix Cygwin fails - Skip noexec tmpdir check on Windows (CPAN RT#55667) - Changed YAML::Tiny references to the new CPAN::Meta::YAML module instead, which is the YAML-variant that is going into the Perl core - Module::Build::YAML has been deprecated; Module::Build now depends directly upon CPAN::Meta::YAML (M::B::YAML remains as a subclass wrapper) - Module::Build::ModuleInfo has been deprecated; Module::Build now depends directly upon Module::Metadata (which is an extraction of M::B::ModuleInfo intended for general reuse); a pure-perl version has been bundled in inc/ solely for bootstrapping in case configure_requires is not supported (M::B::ModuleInfo remains as a wrapper around Module::Metadata) - Module::Build::Version has been deprecated; Module::Build now depends directly upon version.pm; a pure-perl version has been bundled in inc/ solely for bootstrapping in case configure_requires is not supported (M::B::Version remains as a wrapper around version.pm) - The YAML_support feature has been removed - Drop workaround for gnupg2 now that %%{__gpg} can safely be assumed to be gnupg version 1 - Package LICENSE - Clean up Requires/BuildRequires and add version requirements - Drop runtime dependency on perl(Archive::Zip), used only in test suite - Drop perl(Software::License) buildreq; can use bundled version - Drop all dependencies on perl(YAML::Tiny) - BR: perl(CPAN::Meta::YAML) >= 0.002 - BR: perl(Module::Metadata) >= 1.000002 - BR: perl(Perl::OSType) >= 1 * Fri Jul 23 2010 Paul Howarth - 1:0.3607-4 - No longer need to exclude inc::latest on Rawhide * Wed Jun 23 2010 Paul Howarth - 1:0.3607-3 - Rebuild for perl 5.12.1 in Rawhide - Exclude inc::latest from perl 5.12.x builds for now as it conflicts with the main perl package (#607505) * Tue May 11 2010 Paul Howarth - 1:0.3607-2 - Fix dist tag for RHEL-6 Beta * Fri Apr 2 2010 Paul Howarth - 1:0.3607-1 - Update to 0.3607 - 'dist' action now always ensures a clean dist directory for tarball - Migrated repository to git and updated META.yml to match - Removed bugtracker URL (let search.cpan.org use default) - Disabled SIGNATURE generation * Thu Apr 1 2010 Paul Howarth - 1:0.3605-1 - Update to 0.3605 - Added missing newline to "Changing sharpbang" messages (CPAN RT#54474) - Added 'beos' to list of Unix-like OS types (CPAN RT#53876) - Sets $ENV{HOME} to a temporary directory during testing - For VMS: fixed prefix handling plus other test fixes - Support anonymous array of directories for c_source - Small POD formatting fix - Use ${GNUPGHOME} environment variable to specify key locations, so we can avoid writing files within ${HOME} * Thu Jan 28 2010 Paul Howarth - 1:0.3603-2 - BuildRequire/Require perl(Software::License) - Require perl(YAML::Tiny) rather than perl(YAML) * Fri Jan 22 2010 Paul Howarth - 1:0.3603-1 - Epoch bump for valid comparison with current Fedora package * Tue Jan 19 2010 Paul Howarth - 0.3603-1 - Update to 0.3603 - Module::Build::Compat would croak on distibutions that set requires 'perl' to a dotted decimal like '5.6.2'. We now skip that key since it doesn't go into PREREQ_PM and we numify it properly for 'use 5.006002' in the generated Makefile.PL (CPAN RT#53409) - Fix failures in t/properties/needs_compiler.t when $ENV{CC} is set (CPAN RT#53296) * Tue Dec 22 2009 Paul Howarth - 0.3601-1 - Update to 0.3601 (see Changes for details) - Run tests for experimental features - Replace BR: perl(YAML) with perl(YAML::Tiny) * Mon Dec 21 2009 Paul Howarth - 0.3600-1 - Update to 0.36 - Update t/PL_files.t patch and rename to skip-on-5.8.0 patch as it now patches t/properties/share_dir.t too - Package %%{perl_vendorlib}/inc/ - GPGv2 as found in F-13 and later will not allow us to import secret keys so provide a pre-built keyring instead if necessary - Dist tag for Rawhide no longer needs special-casing * Thu Aug 27 2009 Paul Howarth - 0.3500-1 - Update to 0.35 (various fixes - see Changes file) * Mon Aug 10 2009 Paul Howarth - 0.3402-1 - Update to 0.340201 (fix CPAN RT#47980) * Wed Jul 8 2009 Paul Howarth - 0.3400-1 - Update to 0.34 (many changes - see Changes file) - New upstream maintainer -> new source URL - Skip t/PL_files.t on RHL9/RHEL3 (perl 5.8.0), fails for reason unknown * Fri May 8 2009 Paul Howarth - 0.3300-2 - Add perl(Archive::Zip) and perl(Pod::Readme) as reqs/buildreqs - Add explicit reqs perl(Archive::Tar), perl(Module::Signature), perl(version) * Mon May 4 2009 Paul Howarth - 0.3300-1 - Update to 0.33 - Buildreq perl(Archive::Tar) - Buildreq perl(Module::Signature) and enable signature check * Thu Feb 26 2009 Paul Howarth - 0.3200-1 - Update to 0.32 - Update to SLES-compatible dist tag macros - Specify destdir in %%install rather than %%build to pacify rpmlint * Thu Jan 22 2009 Paul Howarth - 0.3100.12-1 - Update to 0.31012 - New upstream maintainer -> new source URL - Add buildreq perl(PAR::Dist) for extra test coverage * Mon Dec 22 2008 Paul Howarth - 0.3100-1 - Update to 0.31 * Fri Sep 26 2008 Paul Howarth - 0.3000-1 - Update to 0.30 (rpm version 0.3000 due to perl versioning not working like rpm versioning) - Add buildreqs perl(ExtUtils::Manifest) and perl(Test::More) - Tweak dist tag macros to work on current Rawhide with three-part releasenum * Mon Apr 30 2007 Paul Howarth - 0.2808-1 - Update to 0.2808 - Add req/buildreq perl(ExtUtils::ParseXS) for added functionality - Require perl(ExtUtils::CBuilder) and perl(YAML) * Mon Mar 26 2007 Paul Howarth - 0.2807-1 - Update to 0.2807 - Buildreq perl(YAML) for better test support - Restore optional buildreq perl(version), no longer a BR loop * Sun Mar 18 2007 Paul Howarth - 0.2806-2 - No longer need to buildreq perl(version) * Mon Dec 18 2006 Paul Howarth - 0.2806-1 - Update to 0.2806 - Fix dist tag for development releases * Mon Jul 31 2006 Paul Howarth - 0.2805-1 - Update to 0.2805 - Define %%__id_u in a more portable way - Buildreq perl(ExtUtils::CBuilder) and perl(version) - Use --destdir option to Build.PL - Run testsuite in C locale (CPAN RT#19406) * Fri Mar 3 2006 Paul Howarth - 0.2612-1 - Update to 0.2612 - Use macros instead of variables (packager's cosmetic preference) - Simplify distribution=detection - Remove redundant macros __perl_version, __perl_package, and perl_vendorarch - Use search.cpan.org URLs - Don't bother with compiler optimization flags in a noarch package - Remove buildroot unconditionally in %%clean and %%install - Fix directory ownership - Don't try testing the signature * Fri Jun 24 2005 Paul Howarth - 0.2611-1 - Update to 0.2611 - Include full URL for source - Fix URL - Use MODULE_COMPAT dependency style and remove explicit perl dependency - Remove MANIFEST and INSTALL from %%doc - Explicitly list packaged files * Wed Apr 20 2005 Paul Howarth - 0.2610-1 - Update to 0.2610 * Fri Apr 1 2005 Paul Howarth - 0.2609-1 - Update to 0.2609 * Wed Feb 9 2005 Paul Howarth - 0.2608-1 - Update to 0.2608 * Wed Oct 27 2004 Paul Howarth - 0.26-1 - Update to 0.26 - Tidy up spec file * Mon May 10 2004 Paul Howarth - 0.25-1 - Initial build