Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Config-Tiny-2.28-bp156.2.1 RPM for noarch

From OpenSuSE Leap 15.6 for noarch

Name: perl-Config-Tiny Distribution: SUSE Linux Enterprise 15 SP6
Version: 2.28 Vendor: openSUSE
Release: bp156.2.1 Build date: Sat Jul 22 11:23:54 2023
Group: Unspecified Build host: stones
Size: 47191 Source RPM: perl-Config-Tiny-2.28-bp156.2.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://metacpan.org/release/Config-Tiny
Summary: Read/Write .ini style files with as little code as possible
'Config::Tiny' is a Perl class to read and write .ini style configuration
files with as little code as possible, reducing load time and memory
overhead.

Most of the time it is accepted that Perl applications use a lot of memory
and modules.

The '*::Tiny' family of modules is specifically intended to provide an
ultralight alternative to the standard modules.

This module is primarily for reading human written files, and anything we
write shouldn't need to have documentation/comments. If you need something
with more power move up to Config::Simple, Config::General or one of the
many other 'Config::*' modules.

Lastly, Config::Tiny does *not* preserve your comments, whitespace, or the
order of your config file.

See Config::Tiny::Ordered (and possibly others) for the preservation of the
order of the entries in the file.

Provides

Requires

License

Artistic-1.0 OR GPL-1.0-or-later

Changelog

* Wed Jan 05 2022 Tina Müller <timueller+perl@suse.de>
  - updated to 2.28
    see /usr/share/doc/packages/perl-Config-Tiny/Changelog.ini
    [V 2.28]
    Date=2022-01-04T15:47:58
    Comments= <<EOT
    - Accept pull request from Todd Rinaldo to replace both uses of bareword filehandles
    with my variables. With thanx.
    - Accept 2019 pull request to Makefile.PL, for the purpose of modernization, and with
    some slight modifications, from Grinnz.
    - Make corresponding patches where appropriate to Tiny.pm and t/02.main.t.
    - Thanx to Grinnz aka Dan Book for the prompting.
    EOT
* Thu Sep 23 2021 Tina Müller <timueller+perl@suse.de>
  - updated to 2.27
    see /usr/share/doc/packages/perl-Config-Tiny/Changelog.ini
    [V 2.27]
    Date=2021-09-21T15:48:00
    Comments= <<EOT
    - 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.
    This patch to the code and POD includes the new test t/08.constructor.t.
    The patch was provided by D Hauke, with thanx.
    - Move test.conf back into t/, where it was years ago, before someone tried to remove
    all uses of File::Spec. But since File::Spec is used often now, there is no point
    in keeping test.conf in the root directory of the distro.
    EOT
* Tue Feb 02 2021 Tina Müller <timueller+perl@suse.de>
  - updated to 2.26
    see /usr/share/doc/packages/perl-Config-Tiny/Changelog.ini
* Thu Aug 01 2019 Stephan Kulow <coolo@suse.com>
  - Update to 0.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.
* Sun Oct 08 2017 coolo@suse.com
  - updated to 2.23
    see /usr/share/doc/packages/perl-Config-Tiny/Changelog.ini
    [V 2.23]
    Date=2015-10-14T09:11:00
    Comments= <<EOT
    - Add the utf8 BOM to this file. Let's hope the CPAN toolchain can cope. If it can't, another
    version of the code will have to be released.
    - Fix read() and write() so they work on files called '0' (zero). See RT#107754.
    Many thanx to Григорий Кудренко for the report and patch.
    - Add t/05.zero.t and t/0 to test the new code.
    - Reformat the source slightly.
    EOT
* Sat Mar 21 2015 mpluskal@suse.com
  - Update to 2.22
    * Fix licence info in Makefile.PL to say Perl.
  - Changes for 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.
      See RT#102125.
    * Remove Build.PL because Karen Etheridge tells me Module::Build
      is no longer in core. See RT#102126.
    * Edit line lengths in this file to a max of 100 chars.
    * Edit line lengths in the docs the same way.
    * Expand the See Also section of the docs.
* Tue Nov 26 2013 coolo@suse.com
  - updated to 2.20
    - Relax pre-req version requirements
* Fri Oct 04 2013 coolo@suse.com
  - updated to 2.19
    - Change VERSION => $VERSION in Makefile.PL to VERSION_FROM => 'lib/Config/Tiny.pm'.
      Reported by Jean-Louis Morel. See RT#88670.
    2.18  Sat Sep 14 10:03:00 2013
    - Remove obsolete and wrong version # from Makefile.PL.
      Reported by Jean-Louis Morel. See RT#88658.
    - Implement Kevin Ryde's suggestion to test if read() will return undef.
      If so, set an error message and (still) return undef.
    2.17  Fri Sep 13 12:41:00 2013
    - Remove the file tests -efr during calls to read(). The open() tests for any error.
      Also, the -f test was reporting /dev/null as a directory, not a file.
      Thanx to Kevin Ryde for pushing me to implement this. See RT#36974.
    - Clean up some error messages slightly.
    2.16  Fri Sep  6 11:54:00 2013
    - Replace Path::Tiny with File::Spec, because the former's list of dependencies is soooo long :-(.
      Changed files: t/02.main.t, t/04.utf8.t, Build.PL and Makefile.PL.
      See: RT#88435 (for Tree::DAG_Node) for an explanation.
    2.15  Sun Aug  4 14:59:00 2013
    - Clean up the shambolic dates in this file.
    - Add a note under Caveats about setting options more that once. Only the first case is respected.
      Thanx to Kimmel K. See RT#69795.
    - Add a $encoding parameter to read_file() and write_file(). See docs for details.
      Add t/04.utf8.t and t/04.utf8.txt.
      Thanx to Mark Lawrence and Wolfgang Husmann. See RT#71029 and RT#85571.
    - For BSD-based systems, when writing a file during tests, use:
      my($temp_dir) = File::Temp -> newdir('temp.XXXX', CLEANUP => 1, EXLOCK => 0, TMPDIR => 1);
    - Rename t/*.t files. I use '.' rather than '_' in file names because the latter is a shift char.
    - Add MANIFEST.SKIP, Changelog.ini, Build.PL, META.json.
    - Add an FAQ to the docs.
    - Clean up the docs.
* Fri Nov 18 2011 coolo@suse.com
  - use original .tar.gz
* Thu Mar 24 2011 pascal.bleser@opensuse.org
  - update to 2.14:
    * fix RT#63080: module can write multiline values but not read them

Files

/usr/lib/perl5/vendor_perl/5.26.1/Config
/usr/lib/perl5/vendor_perl/5.26.1/Config/Tiny.pm
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi
/usr/share/doc/packages/perl-Config-Tiny
/usr/share/doc/packages/perl-Config-Tiny/Changes
/usr/share/doc/packages/perl-Config-Tiny/README
/usr/share/licenses/perl-Config-Tiny
/usr/share/licenses/perl-Config-Tiny/LICENSE
/usr/share/man/man3/Config::Tiny.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri May 3 23:33:27 2024