./devel/p5-Config-Tiny, Read/Write .ini style files with as little code as possible

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.30, Package name: p5-Config-Tiny-2.30, Maintainer: pkgsrc-users

"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. To
rephrase, Config::Tiny does not preserve your comments, whitespace,
or the order of your config file.


Required to run:
[lang/perl5]

Required to build:
[pkgtools/cwrappers]

Master sites: (Expand)

Filesize: 26.341 KB

Version history: (Expand)


CVS history: (Expand)


   2023-12-16 11:04:13 by Makoto Fujiwara | Files touched by this commit (2) | Package updated
Log message:
(devel/p5-Config-Tiny) Updated 2.29 to 2.30

2.30  2023-10-12T17:17:08
	- As of V 2.30, this module supports 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 and in t/02.main.t and in t/test.conf.
	- In each case, search for the word greetings to find the new code samples.
	- This patch was kindly provided by Steven Schoch, with some additions by Ron \ 
Savage.
   2023-07-06 11:43:03 by Thomas Klausner | Files touched by this commit (2483)
Log message:
*: recursive bump for perl 5.38
   2023-05-20 09:12:41 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
p5-Config-Tiny: update to 2.29.

2.29  2023-04-05T12:53:00
	- Edit to remove Test::Pod from TEST_REQUIRES in Makefile.PL, again.
		Thanx to Andrew Daugherity for the patch.
	- Update versiojnn # in t/02.main.t.
   2022-06-28 13:38:00 by Thomas Klausner | Files touched by this commit (3952)
Log message:
*: recursive bump for perl 5.36
   2022-01-21 01:20:59 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 2.28

Upstream changes:
Changes for version 2.28 - 2022-01-04

    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.
   2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016)
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Could not be committed due to merge conflict:
devel/py-traitlets/distinfo

The following distfiles were unfetchable (note: some may be only fetched
conditionally):

./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
   2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017)
Log message:
devel: Remove SHA1 hashes for distfiles
   2021-10-02 01:58:27 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 2.27

Upstream changes:
2.27  2021-09-21T15:48:00
        - 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.