Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: perl-YAML-Tiny | Distribution: openSUSE Tumbleweed |
Version: 1.760.0 | Vendor: openSUSE |
Release: 1.1 | Build date: Tue Dec 17 06:36:26 2024 |
Group: Unspecified | Build host: reproducible |
Size: 89308 | Source RPM: perl-YAML-Tiny-1.760.0-1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://metacpan.org/release/YAML-Tiny | |
Summary: Read/Write YAML files with as little code as possible |
*YAML::Tiny* is a perl class for reading and writing YAML-style files, written 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 and zero-dependency alternative to many more-thorough standard modules. This module is primarily for reading human-written files (like simple config files) and generating very simple human-readable files. Note that I said *human-readable* and not *geek-readable*. The sort of files that your average manager or secretary should be able to look at and make sense of. YAML::Tiny does not generate comments, it won't necessarily preserve the order of your hashes, and it will normalise if reading in and writing out again. It only supports a very basic subset of the full YAML specification. Usage is targeted at files like Perl's META.yml, for which a small and easily-embeddable module is extremely attractive. Features will only be added if they are human readable, and can be written in a few lines of code. Please don't be offended if your request is refused. Someone has to draw the line, and for YAML::Tiny that someone is me. If you need something with more power move up to YAML (7 megabytes of memory overhead) or YAML::XS (6 megabytes memory overhead and requires a C compiler). To restate, YAML::Tiny does *not* preserve your comments, whitespace, or the order of your YAML data. But it should round-trip from Perl structure to file and back again just fine.
Artistic-1.0 OR GPL-1.0-or-later
* Tue Dec 17 2024 Tina Müller <timueller+perl@suse.de> - updated to 1.760.0 (1.76) see /usr/share/doc/packages/perl-YAML-Tiny/Changes 1.76 2024-12-16 18:59:46Z [FIXED] - revert change from #60: "yes", "y" etc are not actually booleans. (see issue #66). 1.75 2024-12-15 21:24:54Z [FIXED] - fixed regression in %QUOTE (Nathan Monfils, PR#60) [later reverted in release 1.76, see above) - fix version comparison logic for forward compatibility (BooK, PR#63) * Fri Mar 24 2023 Tina Müller <timueller+perl@suse.de> - updated to 1.74 see /usr/share/doc/packages/perl-YAML-Tiny/Changes 1.74 2023-03-23 03:19:08Z [FIXED] - a few documentation tweaks (thanks, Giovanni Los and Richlv!) * Thu Feb 22 2018 coolo@suse.com - updated to 1.73 see /usr/share/doc/packages/perl-YAML-Tiny/Changes 1.73 2018-02-21 21:07:59Z - shipping 1.72 as stable, with no changes. 1.72 2017-02-12 23:17:26Z (TRIAL RELEASE) [FIXED] - fix compatibility with Test::Builder 0.94 in test shim 1.71 2017-02-04 05:44:07Z (TRIAL RELEASE) [FIXED] - Perform correct stripping of leading white space in literal/folded text blocks (Flavio Poletti, GitHub #44, fixes RT#56045). * Tue Feb 14 2017 coolo@suse.com - updated to 1.70 see /usr/share/doc/packages/perl-YAML-Tiny/Changes 1.70 2017-01-22 08:59:54Z [FIXED] - Some errors writing to a file were incorrectly reported. * Tue Jul 28 2015 coolo@suse.com - updated to 1.69 see /usr/share/doc/packages/perl-YAML-Tiny/Changes * Wed May 13 2015 coolo@suse.com - updated to 1.67 see /usr/share/doc/packages/perl-YAML-Tiny/Changes 1.67 2015-05-12 00:10:24Z [FIXED] - instead of erroring on duplicate keys found in a hash (introduced in version 1.63), now we only warn. This fixes an issue in Strawberry Perl (via CPAN::Meta::YAML) when parsing a configuration file. [CHANGED] - Updated File::Temp test prereq to 0.19 for 'newdir' * Tue Apr 14 2015 coolo@suse.com - updated to 1.66 see /usr/share/doc/packages/perl-YAML-Tiny/Changes 1.66 2015-03-16 22:26:30Z [CHANGED] - removed bundled Test::TempDir::Tiny to rely on File::Temp for temporary directories during testing 1.65 2015-03-13 23:02:34Z [CHANGED] - artifacts left behind from testing are now cleaned up (GH#34) 1.64 2014-10-08 02:56:30Z [CHANGED] - remove silencing of any errors encountered while loading Scalar::Util (GH#33, Graham Knop) - now using JSON::MaybeXS in tests instead of JSON.pm 1.63 2014-06-11 21:58:18Z [FIXED] - incorrect error messages fixed, when $@ is clobbered when Carp wasn't loaded (GH#30, GH#31, Hilko Bengen) [CHANGED] - now checking for, and erroring on, duplicate keys found in a hash (GH#32, Hilko Bengen) 1.62 2014-03-16 12:28:44Z [FIXED] - fix handling of trailing colon in key name (RT#92916, H.Merijn Brand) 1.61 2014-02-24 16:59:49Z [FIXED] - fixed a test for VMS (RT#93297, Craig Berry) 1.60 2014-02-13 20:31:56Z - shipping 1.59 as stable, with no changes. 1.59 2014-02-06 03:10:35Z (TRIAL RELEASE) [CHANGED] - numeric values are now quoted whenever they've been used as a string (fixes inconsistent behaviour seen with numeric values, due to differences between the XS and pure-perl variants of Data::Dumper). (github issue #24) - numeric hash keys are now always quoted. * Sun Feb 09 2014 coolo@suse.com - updated to 1.58 [INCOMPATIBLE CHANGE] - 1.57 omitted a change entry for the following change: - Previously, YAML::Tiny was sloppy about file encodings. It is now strict. The 'read' method and 'LoadFile' function expect UTF-8 encoded files. The 'write' method and 'DumpFile' function produce UTF-8 encoded files. The 'read_string' and 'write_string' methods and the 'Load' and 'Dump' functions expect or generate (decoded) character data. - Previously, some errors would throw exceptions and some would return the error condition in $YAML::Tiny::errstr. Now all errors throw exceptions. Use of $errstr and the errstr method are deprecated. (David Golden) [FIXED] - Fixed write method to encode YAML file with UTF-8 (David Golden) - Improved SYNOPSIS and documentation of new (David Golden) [TESTING] - Tests have been cleaned up and reorganized. Test coverage has been significnatly improved. (Ingy döt Net, David Golden, Jim Keenan, Karen Etheridge) * Fri Oct 04 2013 coolo@suse.com - updated to 1.56 - read_string documentation error fixed (RT#74409, thanks Tim Heaney!) - re-release with fixed compile test - again packaging with ExtUtils::MakeMaker - convert to Dist::Zilla - Updated format to conform to CPAN::Changes::Spec - really fixed metadata - updated repository metadata to reflect move to github * Wed May 23 2012 coolo@suse.com - updated to 1.51 - The fix described in 1.48 was incorrect. Removing an additional if $@ to fix it properly. - Make the Scalar::Util version check resistant to bugs caused by development versions.
/usr/lib/perl5/vendor_perl/5.40.0/YAML /usr/lib/perl5/vendor_perl/5.40.0/YAML/Tiny.pm /usr/share/doc/packages/perl-YAML-Tiny /usr/share/doc/packages/perl-YAML-Tiny/CONTRIBUTING /usr/share/doc/packages/perl-YAML-Tiny/Changes /usr/share/doc/packages/perl-YAML-Tiny/README /usr/share/licenses/perl-YAML-Tiny /usr/share/licenses/perl-YAML-Tiny/LICENSE /usr/share/man/man3/YAML::Tiny.3pm.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Wed Feb 12 23:53:52 2025