# 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-Config-Tiny Version: 2.30 Release: 1.%{__distinit}%{__distvers} Summary: Perl module for reading and writing .ini style configuration files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Config-Tiny Source0: https://cpan.metacpan.org/modules/by-module/Config/Config-Tiny-%{version}.tgz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(warnings) # Module Runtime BuildRequires: perl(strict) # Test Suite BuildRequires: perl(File::Spec) >= 3.30 BuildRequires: perl(File::Temp) >= 0.22 BuildRequires: perl(Test::More) >= 1.001002 BuildRequires: perl(UNIVERSAL::isa) BuildRequires: perl(utf8) # Extra Tests BuildRequires: perl(Test::CPAN::Meta) >= 0.17 # Test::MinimumVersion → Perl::MinimumVersion → Perl::Critic → Config::Tiny %if 0%{!?perl_bootstrap:1} BuildRequires: perl(Test::MinimumVersion) >= 0.101080 %endif BuildRequires: perl(Test::Pod) >= 1.44 # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description Config::Tiny is a Perl module designed for reading and writing .ini style configuration files. It is designed for simplicity and ease of use, and thus only supports the most basic operations. %prep %setup -q -n Config-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 make test TEST_FILES="$(echo $(find xt/ -name '*.t'))" AUTOMATED_TESTING=1 %files %license LICENSE %doc Changes README %{perl_vendorlib}/Config/ %{_mandir}/man3/Config::Tiny.3* %changelog * Fri Oct 13 2023 Paul Howarth - 2.30-1 - Update to 2.30 - Add support for an array syntax for cases where you wish to assign an array of values to a key - See the new POD section called ARRAY SYNTAX - See also the updated question in the FAQ: What happens if a key is repeated? - See also the sample code in the Synopsis, in t/02.main.t and in t/test.conf - In each case, search for the word greetings to find the new code samples * Wed Apr 5 2023 Paul Howarth - 2.29-1 - Update to 2.29 - Edit to remove Test::Pod from TEST_REQUIRES in Makefile.PL, again - Update version number in t/02.main.t * Sun Mar 12 2023 Paul Howarth - 2.28-6 - Use SPDX-format license tag * Tue Jan 4 2022 Paul Howarth - 2.28-1 - Update to 2.28 - Replace both uses of bareword filehandles with 'my' variables - Modernize Makefile.PL - Make corresponding patches where appropriate to Tiny.pm and t/02.main.t * Wed Sep 22 2021 Paul Howarth - 2.27-1 - Update to 2.27 - Add the option of passing a hashref to the constructor, where it is turned into an object of the class (see POD under new([$config]) for details) - Move test.conf back into t/, where it was years ago, before someone tried to remove all uses of File::Spec; since File::Spec is used often now, there is no point in keeping test.conf in the root directory of the distro - Fix dist tags for Alma and Rocky Linux * Thu Feb 4 2021 Paul Howarth - 2.26-1 - Update to 2.26 - Merge in clean-up patches from Karen Etheridge - Add back file t/0, required for t/05.zero.t - Update Makefile.PL to switch issue tracker from rt.cpan.org to GitHub - Update POD to change RT to GitHub - Reformat Makefile.PL - Use %%license unconditionally * Mon Jun 17 2019 Paul Howarth - 2.24-1 - Update to 2.24 - Delete from caveats in documentation where it used to say: 'Config::Tiny will only recognize the first time an option is set in a config file. Any further attempts to set the same option later in the config file are ignored.' In reality the code uses the 2nd and subsequent values to overwrite earlier values - Make this topic a new FAQ - Add corresponding test t/06.repeat.key.t - Update POD to clarify trailing comment options - Add corresponding test t/07.trailing.comment.t - Romanize Gregory Kidrenko's name so Config::IniFiles does not get 'Wide char in print' - Move xt/pod.t to xt/author/pod.t - Adopt new repo structure: see http://savage.net.au/Ron/html/My.Workflow.for.Building.Distros.html - Move require 5.008001 from Tiny.pm into Makefile.PL * Mon Jun 3 2019 Paul Howarth - 2.23-15 - 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 File::Temp < 0.19 - Drop legacy BuildRoot: and Group: tags * Mon May 16 2016 Paul Howarth - 2.23-3 - Fix FTBFS when perl(File::Temp) is not in the minimal buildroot - BR: perl-generators where possible - Simplify find command using -delete * Wed Oct 14 2015 Paul Howarth - 2.23-1 - Update to 2.23 - Add the utf8 BOM to the Changes file - Fix read() and write() so they work on files called '0' (zero) (CPAN RT#107754) - Add t/05.zero.t and t/0 to test the new code - Reformat the source slightly * Mon Jun 22 2015 Paul Howarth - 2.22-4 - Perl 5.22 rebuild * Tue Feb 17 2015 Paul Howarth - 2.22-1 - Update to 2.22 - Fix licence info in Makefile.PL to say Perl (CPAN RT#102141) * Mon Feb 16 2015 Paul Howarth - 2.21-1 - Update to 2.21 - Patch Makefile.PL to refer to the current repo, which is on github, and not the original one, which is on Adam's web site (CPAN RT#102125) - Remove Build.PL (CPAN RT#102126) - Edit line lengths in the Changes file to a maximum of 100 characters - Edit line lengths in the docs the same way - Expand the SEE ALSO section of the docs - Drop patch for building on old Perl versions, no longer needed * Mon Sep 1 2014 Paul Howarth - 2.20-3 - Drop %%defattr, redundant since rpm 4.4 - Use %%license where possible * Sun Nov 24 2013 Paul Howarth - 2.20-1 - Update to 2.20 - Relax pre-req version requirements * Sun Sep 15 2013 Paul Howarth - 2.19-1 - Update to 2.19 - Remove obsolete and wrong version # from Makefile.PL (CPAN RT#88658) - Test if read() will return undef; if so, set an error message and (still) return undef - Change VERSION => $VERSION in Makefile.PL to VERSION_FROM => 'lib/Config/Tiny.pm' (CPAN RT#88670) * Fri Sep 13 2013 Paul Howarth - 2.17-1 - Update to 2.17 - Remove the file tests -efr during calls to read(); the open() tests for any error - The -f test was reporting /dev/null as a directory, not a file (CPAN RT#36974) - Clean up some error messages slightly * Fri Sep 6 2013 Paul Howarth - 2.16-1 - Update to 2.16 - Replace Path::Tiny with File::Spec, because the former's list of dependencies is soooo long :-( (see CPAN RT#88435 for Tree::DAG_Node) - Reinstate support for old distributions back to FC-3 - Use a locally bundled copy of File::Temp for the test suite if necessary, as we need the newdir method, which is only available from version 0.19 - Add patch to prevent ExtUtils::MakeMaker trying to use Module::Build on old distributions * Mon Sep 2 2013 Paul Howarth - 2.15-1 - Update to 2.15 - Clean up the shambolic dates in the Changes file - Add a note under Caveats about setting options more that once - only the first case is respected (CPAN RT#69795) - Add a $encoding parameter to read_file() and write_file(), and add t/04.utf8.t and t/04.utf8.txt (CPAN RT#71029, CPAN RT#85571) - Fix temporary directory creation in tests for BSD-based systems - Rename t/*.t files - Add MANIFEST.SKIP, Changelog.ini, Build.PL, META.json - Add a FAQ to the docs - Clean up the docs - This release by RSAVAGE -> update source URL - Specify all dependencies - Drop support for old rpm versions as we need Path::Tiny, which is not available there * Mon Jul 16 2012 Paul Howarth - 2.14-5 - Perl 5.16 post-bootstrap rebuild * Sun Jul 1 2012 Paul Howarth - 2.14-4 - 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 * Tue Feb 7 2012 Paul Howarth - 2.14-3 - Don't BR: perl(Test::MinimumVersion) if we're bootstrapping * Wed Jun 22 2011 Paul Howarth - 2.14-2 - Rebuild for perl 5.14.1 in Rawhide - Fix dist tag for CentOS 6 and Scientific Linux * Thu Mar 24 2011 Paul Howarth - 2.14-1 - Update to 2.14: - Resolved CPAN RT#63080: module can write multiline values but not read them - Removed -w from tests to allow tests with tainting on - Nobody else likes macros for commands * Sun Sep 5 2010 Paul Howarth - 2.13-1 - Update to 2.13: - Fix CPAN RT#30479: should warn or die when writing data it cannot later read - Fix CPAN RT#40585: member 'set;' doesn't exist - Fix CPAN RT#60703: display glitch in Config::Tiny 2.12 POD - No longer need to fix file permissions - Explicitly run additional release tests - BuildRequires: perl(Test::CPAN::Meta) * Wed Jun 23 2010 Paul Howarth - 2.12-10 - Rebuild for perl 5.12.1 in Rawhide * Tue Jun 8 2010 Paul Howarth - 2.12-9 - Fix dist tag for RHEL-6 Beta * Fri Feb 19 2010 Paul Howarth - 2.12-8 - Dist tag for Rawhide no longer needs special-casing - Use %%{_fixperms} macro instead of our own %%{__chmod} incantation * Thu Sep 3 2009 Paul Howarth - 2.12-7 - Define RPM macros in global scope * Wed Sep 3 2008 Paul Howarth - 2.12-6 - Import from Fedora - Add buildreq perl(ExtUtils::MakeMaker) * Thu Feb 28 2008 Tom "spot" Callaway - 2.12-5 - Rebuild normally, second pass * Wed Feb 27 2008 Tom "spot" Callaway - 2.12-4 - Rebuild for perl 5.10 (again), first pass * Mon Jan 14 2008 Tom "spot" Callaway - 2.12-3 - Rebuild normally, second pass * Sun Jan 13 2008 Tom "spot" Callaway - 2.12-2.1 - Rebuild with TMV, tests disabled for first pass * Fri Jan 11 2008 Tom "spot" Callaway - 2.12-2 - Rebuild for new perl * Thu Dec 13 2007 Ralf Corsépius - 2.12-1 - Update to 2.12 * Mon Oct 2 2006 Jose Pedro Oliveira - 2.10-1 - Updated to 2.10 * Sun Jul 16 2006 Jose Pedro Oliveira - 2.08-1 - Updated to 2.08 * Wed May 10 2006 Jose Pedro Oliveira - 2.07-1 - Updated to 2.07 * Sat Apr 22 2006 Jose Pedro Oliveira - 2.06-1 - Updated to 2.06 * Mon Mar 6 2006 Jose Pedro Oliveira - 2.05-1 - Updated to 2.05 * Sat Feb 18 2006 Jose Pedro Oliveira - 2.04-2 - Rebuild for FC5 (perl 5.8.8) * Sat Jan 28 2006 Jose Pedro Oliveira - 2.04-1 - Updated to 2.04 * Fri Dec 30 2005 Jose Pedro Oliveira - 2.03-1 - Updated to 2.03 * Mon Jun 27 2005 Jose Pedro Oliveira - 2.02-1 - Updated to 2.02 * Wed Apr 6 2005 Michael Schwendt - 2.01-2 - Rebuilt * Thu Mar 24 2005 Jose Pedro Oliveira - 2.01-1 - Updated to 2.01 * Sun Jul 25 2004 Marius L. Jøhndal - 0:2.00-0.fdr.1 - Updated to 2.00 * Sat Jul 10 2004 Marius L. Jøhndal - 0:1.9-0.fdr.1 - Updated to 1.9 * Fri Jul 2 2004 Marius L. Jøhndal - 0:1.8-0.fdr.1 - Updated to 1.8 * Tue Jun 29 2004 Marius L. Jøhndal - 0:1.7-0.fdr.1 - Updated to 1.7 * Sat Jun 5 2004 Marius L. Jøhndal - 0:1.6-0.fdr.3 - Changed URL to canonical location (bug 1140) - Added build req perl >= 1:5.6.1 and perl(Test::More) (bug 1140) - Added missing req perl(:MODULE_COMPAT_...) (bug 1140) - Updated to match most recent perl spec template (bug 1140) - Removed unneeded optimization settings and find *.bs (bug 1140) * Thu Mar 18 2004 Marius L. Jøhndal - 0:1.6-0.fdr.2 - Reduced directory ownership bloat * Thu Mar 11 2004 Marius L. Jøhndal - 0:1.6-0.fdr.1 - Updated to 1.6 * Wed Jan 7 2004 Marius L. Jøhndal 0:1.5-0.fdr.1 - Updated to 1.5 * Sat Dec 13 2003 Marius L. Jøhndal 0:1.3-0.fdr.1 - Initial RPM release