From 2881809e3bde922a2d57d0ccfeb018eaa1ca9690e5a559900dbab931888d0b05 Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Mon, 16 Jul 2007 16:16:13 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Log-Log4perl?expand=0&rev=2 --- Log-Log4perl-1.07.tar.gz | 3 --- Log-Log4perl-1.12.tar.gz | 3 +++ perl-Log-Log4perl.changes | 48 +++++++++++++++++++++++++++++++++++ perl-Log-Log4perl.spec | 53 ++++++++++++++++++++++++++++++++++++--- 4 files changed, 100 insertions(+), 7 deletions(-) delete mode 100644 Log-Log4perl-1.07.tar.gz create mode 100644 Log-Log4perl-1.12.tar.gz diff --git a/Log-Log4perl-1.07.tar.gz b/Log-Log4perl-1.07.tar.gz deleted file mode 100644 index e68e1cc..0000000 --- a/Log-Log4perl-1.07.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:996d5404166c6bd3b176419ebbabe74384cc495a33a76a0f67ebf2778bd938b6 -size 220729 diff --git a/Log-Log4perl-1.12.tar.gz b/Log-Log4perl-1.12.tar.gz new file mode 100644 index 0000000..5cd6db8 --- /dev/null +++ b/Log-Log4perl-1.12.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acce6972e032710b0a840f6b6252af680c82e304de4117d7bb65def484823f6d +size 226812 diff --git a/perl-Log-Log4perl.changes b/perl-Log-Log4perl.changes index 3541532..d603f97 100644 --- a/perl-Log-Log4perl.changes +++ b/perl-Log-Log4perl.changes @@ -1,3 +1,51 @@ +------------------------------------------------------------------- +Mon Jul 16 12:00:29 CEST 2007 - ug@suse.de + +- version update from 1.07 to 1.12 +- Added Log::Log4perl::Resurrector to resurrect commented-out + Log4perl statements in all subsequently loaded modules (allows + for deploying L4p-enabled CPAN modules without requiring L4p). +- Added ALWAYS easy mode macro (level=OFF) +- Fixed logconfess() frame level bug reported by Ali Mesdaq. + Added test case. +- Added PatternLayout::Multiline code by Cory Bennett to + render multiline messages. +- Added log level TRACE (lets through even more messages + than DEBUG) (suggested by Craig). +- Added 'syswrite' flag to file appender to have it use + 'syswrite' instead of 'print', avoiding buffered or + interleaving messages originating from different processes + (thanks to Evan Miller). +- Nikita Dedik pointed out that Saturday is missing from + @Log::Log4perl::DateFormat::WEEK_DAYS +- Scott Cline noticed a potential problem with the DBI + appender reconnection logic in 'buffered' mode. Applied + a patch. +- Changed DBI reconnect logic to perform even if the DB + is pingable again. +- Applied code by Valerio Valdez Paolini with modifications + to PropertyConfigurator.pm to allow pulling values from + the property configurator by path. +- Added $^S check to FAQ, as suggested by J. David Blackstone. +- Applied Robert Jacobson's patch for the "DDD" formatter + in L4p::DateFormats, which now formats the day-of-year values + numerically and precedes them with zeroes if necessary. +- Added %M{x} PatternLayout notation as requested by + Ankur Gupta. +- Another Win32 test suite fix, no longer deleting an open + file but moving it aside (rt.cpan:23520). +- Applied test suite patch by Lars Thegler for + ancient perl 5.005_03. +- Applied patch by Jeremy Bopp to fix test suite running + under Cygwin. +- Fixed documentation bug in L4p:Appender::File, + s/recreate_signal/recreate_check_signal. Thanks to + Todd Chapman and Robert Jacobson for reporting this. +- Fixed init(), which now deletes any config file watchers + left over from previous init_and_watch() calls. Reported + by Andreas Koenig who saw sporadic errors in the test suite, + thanks! + ------------------------------------------------------------------- Wed Oct 25 09:26:39 CEST 2006 - ug@suse.de diff --git a/perl-Log-Log4perl.spec b/perl-Log-Log4perl.spec index 5e4f57f..97719d3 100644 --- a/perl-Log-Log4perl.spec +++ b/perl-Log-Log4perl.spec @@ -1,7 +1,7 @@ # -# spec file for package perl-Log-Log4perl (Version 1.07) +# spec file for package perl-Log-Log4perl (Version 1.12) # -# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # @@ -16,7 +16,7 @@ Group: Development/Libraries/Perl #Requires: Autoreqprov: on Summary: Log4j implementation for Perl -Version: 1.07 +Version: 1.12 Release: 1 Source: Log-Log4perl-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -76,7 +76,52 @@ mv .packlist.tmp .packlist %doc Changes LICENSE MANIFEST README eg xml %doc %{_mandir}/man3/* -%changelog -n perl-Log-Log4perl +%changelog +* Mon Jul 16 2007 - ug@suse.de +- version update from 1.07 to 1.12 +- Added Log::Log4perl::Resurrector to resurrect commented-out + Log4perl statements in all subsequently loaded modules (allows + for deploying L4p-enabled CPAN modules without requiring L4p). +- Added ALWAYS easy mode macro (level=OFF) +- Fixed logconfess() frame level bug reported by Ali Mesdaq. + Added test case. +- Added PatternLayout::Multiline code by Cory Bennett to + render multiline messages. +- Added log level TRACE (lets through even more messages + than DEBUG) (suggested by Craig). +- Added 'syswrite' flag to file appender to have it use + 'syswrite' instead of 'print', avoiding buffered or + interleaving messages originating from different processes + (thanks to Evan Miller). +- Nikita Dedik pointed out that Saturday is missing from + @Log::Log4perl::DateFormat::WEEK_DAYS +- Scott Cline noticed a potential problem with the DBI + appender reconnection logic in 'buffered' mode. Applied + a patch. +- Changed DBI reconnect logic to perform even if the DB + is pingable again. +- Applied code by Valerio Valdez Paolini with modifications + to PropertyConfigurator.pm to allow pulling values from + the property configurator by path. +- Added $^S check to FAQ, as suggested by J. David Blackstone. +- Applied Robert Jacobson's patch for the "DDD" formatter + in L4p::DateFormats, which now formats the day-of-year values + numerically and precedes them with zeroes if necessary. +- Added %%M{x} PatternLayout notation as requested by + Ankur Gupta. +- Another Win32 test suite fix, no longer deleting an open + file but moving it aside (rt.cpan:23520). +- Applied test suite patch by Lars Thegler for + ancient perl 5.005_03. +- Applied patch by Jeremy Bopp to fix test suite running + under Cygwin. +- Fixed documentation bug in L4p:Appender::File, + s/recreate_signal/recreate_check_signal. Thanks to + Todd Chapman and Robert Jacobson for reporting this. +- Fixed init(), which now deletes any config file watchers + left over from previous init_and_watch() calls. Reported + by Andreas Koenig who saw sporadic errors in the test suite, + thanks! * Wed Oct 25 2006 - ug@suse.de - version update from 1.02 to 1.07 - minor bugfixes