SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for perl-Config-General-2.52-4.1.x86_64.rpm :
Thu Jun 26 14:00:00 2014 lchiquittoAATTsuse.com
- remove obsolete patch from source:
0001-Fix-deprecation-warning-in-5.18-about-splitting-in-r.patch.

Fri Jul 26 14:00:00 2013 cooloAATTsuse.com
- updated to 2.52
- applied pod patch rt.cpan.org#79603
- fixed rt.cpan.org#80006, it tolerates now whitespaces
after the block closing >
- added -Plug parameter, which introduces plugin closures.
idea from rt.cpan.org#79694.
Currently available hooks are:
pre_open, pre_read, post_read, pre_parse_value, post_parse_value
- applied patch by Ville Skytt344, spelling fixes.
- fixed rt.cpan.org#85080, more spelling fixes.
- applied patch rt.cpan.org#85132, which fixes a deprecation
warning in perl 5.18 and above. Fixes #85668 as well.
- applied patch rt.cpan.org#85538, c-style comments
are ignored inside here-docs.
- fixed rt.cpan.org#82637, don\'t use indirect object syntax
in pod and code.
- remove obsolete 0001-Fix-deprecation-warning-in-5.18-about-splitting-in-r.patch

Fri Jun 21 14:00:00 2013 cooloAATTsuse.com
- add 0001-Fix-deprecation-warning-in-5.18-about-splitting-in-r.patch
to fix build with perl 5.18

Mon Jun 3 14:00:00 2013 cooloAATTsuse.com
- updated to 2.51
- fixed rt.cpan.org#77667 which resulted in invalid configs
written to file when using save_file() and a named block,
whose 2nd part starts with a /.
- fixed rt.cpan.org#64169 by applying patch by Dulaunoy Fabrice.
adds -NoEscape switch which turns off escaping of anything.
- implemented suggestion of rt.cpan.org#67564 by adding 3 new
parameters: -NormalizeOption, -NormalizeBlock and -NormalizeValue,
which take a subroutine reference and change the block,
option or value accordingly.
- fixed rt.cpan.org#65860+76953 undefined value error.

Wed Apr 6 14:00:00 2011 cooloAATTnovell.com
- fix license - \"same terms as perl itself\"

Thu Mar 31 14:00:00 2011 cooloAATTnovell.com
- update to 2.50
- fixed rt.cpan.org#63487 documentation error.
- fixed rt.cpan.org#61302, now croak if the config file
parameter is a directory and directory include is not
turned on.
- fixed rt.cpan.org#60429 META.yml typo
- added new option -AllowSingleQuoteInterpolation, which
turns on interpolation for variables inside single quotes.
- added test case for the new option

Tue Nov 30 13:00:00 2010 cooloAATTnovell.com
- switch to perl_requires macro

Fri Jul 16 14:00:00 2010 chrisAATTcomputersalat.de
- update to 2.4.9
- fixed rt.cpan.org#56532, \'#\' missed during fix for
56370 in 2.45.
- added test case for this too
- recreated by cpanspec 1.78
- noarch pkg

Fri Apr 16 14:00:00 2010 chrisAATTcomputersalat.de
- update to 2.48
- arg, uploaded the wrong file to pause, so another version
bump up.
- fixed typos in pod section for -ForceArray.
- 2.47
- fixed rt.cpan.org#53759 by adding new option -ForceArray.
when enabled a single config value enclosed in [] will become
an array forcefully.
- fixed typo in license: it is \"artistic\", not \"artificial\".
- 2.46
- fixed rt.cpan.org#56370: there was a sort() call in _store()
left, which lead to sorted arrays even if -SaveSorted were
turned off.
- removed Provides {cpan_name}
- removed .packlist, perllocal.pod
> noarch

Sun Apr 4 14:00:00 2010 chrisAATTcomputersalat.de
- update to 2.45
- fixed rt.cpan.org#50647 escaping bug. Now escaped $ or
backslash characters are handled correctly (across save too)
- fixed rt.cpan.org#52047, tied hash will remain tied
when savong to a file.
- fixed rt.cpan.org#54580, preserve single quotes during
variable interpolation corrected. No more using rand()
to mark single quotes but an incrementor instead.
- fixed rt.cpan.org#42721+54583, empty config values will no
more handed over to interpreting methods (as interpolate
or autotrue and the like) but returned as undef untouched.
- fixed perl-macros deps

Sun Dec 13 13:00:00 2009 chrisAATTcomputersalat.de
- update to 2.44
- fixed rt.cpan.org#49023 by rolling back change in 2.43
in line 158, regarding GLOB support.
- 2.43
- fixed rt.cpan.org#40925, $indichar replaced by internal
configuration variable EOFseparator, which contains
a 256 bit SHA checksum of the date I fixed the bug.
This will prevent future conflicts hopefully. In addition
it makes it possible to make it customizable, if neccessary,
in a future release.
- fixed rt.cpan.org#42721, return undef for empty values
- fixed rt.cpan.org#42331, return undef for empty objects
- fixed rt.cpan.org#44600, comments after blockname
causes parser failure.
- fixed rt.cpan.org#42287, whitespace at beginning or end
of a quoted value gets lost after save().
- fixed rt.cpan.org#46184, variables that were not previously
defined are deleted when -InterPolateEnv is enabled.
- fixed bug in config loader for FileHandle objects, it
supports now any compatible object. Hint by Ingo Schmiegel.
- applied spelling- and speedup patches by Ville Skyttä.
- applied documentation patch by Jordan Macdonald.
- cleanup spec

* sort tags

* define cpan_name

* update url

* update desc / author
- added perl-macros

* perl_gen_filelist

Tue Jul 7 14:00:00 2009 lruppAATTsuse.de
- update to 2.42:
+ Fixed bugs from rt.cpan.org:
24155, 27622, 27110, 27225, 27271,30063,30063,27225,27225,
30199,33216,33385,32978,33447,31529,33766,35766,34080,36607,
35122,36607,41570,41030,39159,41748,38635
+ added new parameter -SaveSorted. The default value is 0,
that means configs will be saved unsorted (as always),
however if you want to save it sorted, turn this parameter
to 1. Thanks to Herbert Breunung for the hint.
+ added -UTF8 flag, which opens files in utf8 mode
+ the directory globbing code used slashes to join
directory and file names. changed this to use catfile()
instead.
+ added support for -IncludeAgain to directory include
code too.
+ Allow to include the same file multiple times.
There is no loop detection if turned on. new option
introduced: -IncludeAgain => 1 (default turned off).


 
ICM