forked from pool/perl-Log-Log4perl
This commit is contained in:
parent
657a206d27
commit
29e87d9df5
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8c30de4469c9261de2a1b435b0a1759d9070a4486b6f1572b132d7fbcac4b73f
|
|
||||||
size 230899
|
|
3
Log-Log4perl-1.18.tar.gz
Normal file
3
Log-Log4perl-1.18.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f51aeb82936034d352a227513817228212e01b3f96c73a974a9a6e535bc11b98
|
||||||
|
size 235406
|
@ -1,3 +1,40 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 5 16:12:29 CEST 2008 - ug@suse.de
|
||||||
|
|
||||||
|
* Added explanation that categories and loggers are the same
|
||||||
|
thing (thanks to Rabbit).
|
||||||
|
* Fixed t/053Resurrect to work with 5.005_03
|
||||||
|
* Added preinit_callback function for init_and_watch()
|
||||||
|
* Applied patch by Andy Grundman which speeds up is_LEVEL()
|
||||||
|
calls by skipping unnecessary string concatenations
|
||||||
|
(http://rt.cpan.org/Ticket/Display.html?id=38537).
|
||||||
|
* Applied patch by Jae Gangemi addding a no_warning option to the
|
||||||
|
socket appender
|
||||||
|
(http://rt.cpan.org/Ticket/Display.html?id=34399).
|
||||||
|
* Fixed test suite to run on Strawberry Perl on Win32.
|
||||||
|
* Added 'l4p' as a valid prefix in configuration files (equal
|
||||||
|
to 'log4j' and 'log4perl' now).
|
||||||
|
* Changed appender destruction during cleanup to show warning
|
||||||
|
messages thrown by destructors. Previously L4p ignored these
|
||||||
|
messages which caused failed DB flushes to go unnoticed with
|
||||||
|
the DB appender.
|
||||||
|
* Added explanation for Log4perl messages during global
|
||||||
|
destruction to FAQ.
|
||||||
|
* Corrected 'Trapper' listing in FAQ, thanks to Christian Reiber.
|
||||||
|
* Applied patch by Mitchell Perilstein for 5.005it and the
|
||||||
|
two-argument binmode() that 5.005 doesn't support.
|
||||||
|
(http://rt.cpan.org/Ticket/Display.html?id=34051)
|
||||||
|
* Applied patch by Emmanuel Rodriguez (POTYL) doing away with
|
||||||
|
hard-coded line numbers in 024WarnDieCarp.t to make it work
|
||||||
|
cpan2rpm for building RPM packages
|
||||||
|
(http://rt.cpan.org/Public/Bug/Display.html?id=35370)
|
||||||
|
* Fixed recreate_check_interval = 0 bug reported by
|
||||||
|
Bill Moseley.
|
||||||
|
* Added 'header_text' parameter to the file appender to
|
||||||
|
have it write a header every time it opens (or re-opens)
|
||||||
|
a new log file (suggested by Steven Lembark).
|
||||||
|
* version 1.18
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 4 11:20:41 CEST 2008 - ug@suse.de
|
Fri Apr 4 11:20:41 CEST 2008 - ug@suse.de
|
||||||
|
|
||||||
|
@ -1,10 +1,17 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Log-Log4perl (Version 1.15)
|
# spec file for package perl-Log-Log4perl (Version 1.18)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 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.
|
|
||||||
#
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
@ -17,7 +24,7 @@ Group: Development/Libraries/Perl
|
|||||||
#Requires:
|
#Requires:
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: Log4j implementation for Perl
|
Summary: Log4j implementation for Perl
|
||||||
Version: 1.15
|
Version: 1.18
|
||||||
Release: 1
|
Release: 1
|
||||||
Source: Log-Log4perl-%{version}.tar.gz
|
Source: Log-Log4perl-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -78,6 +85,40 @@ mv .packlist.tmp .packlist
|
|||||||
%doc %{_mandir}/man3/*
|
%doc %{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Sep 05 2008 ug@suse.de
|
||||||
|
* Added explanation that categories and loggers are the same
|
||||||
|
thing (thanks to Rabbit).
|
||||||
|
* Fixed t/053Resurrect to work with 5.005_03
|
||||||
|
* Added preinit_callback function for init_and_watch()
|
||||||
|
* Applied patch by Andy Grundman which speeds up is_LEVEL()
|
||||||
|
calls by skipping unnecessary string concatenations
|
||||||
|
(http://rt.cpan.org/Ticket/Display.html?id=38537).
|
||||||
|
* Applied patch by Jae Gangemi addding a no_warning option to the
|
||||||
|
socket appender
|
||||||
|
(http://rt.cpan.org/Ticket/Display.html?id=34399).
|
||||||
|
* Fixed test suite to run on Strawberry Perl on Win32.
|
||||||
|
* Added 'l4p' as a valid prefix in configuration files (equal
|
||||||
|
to 'log4j' and 'log4perl' now).
|
||||||
|
* Changed appender destruction during cleanup to show warning
|
||||||
|
messages thrown by destructors. Previously L4p ignored these
|
||||||
|
messages which caused failed DB flushes to go unnoticed with
|
||||||
|
the DB appender.
|
||||||
|
* Added explanation for Log4perl messages during global
|
||||||
|
destruction to FAQ.
|
||||||
|
* Corrected 'Trapper' listing in FAQ, thanks to Christian Reiber.
|
||||||
|
* Applied patch by Mitchell Perilstein for 5.005it and the
|
||||||
|
two-argument binmode() that 5.005 doesn't support.
|
||||||
|
(http://rt.cpan.org/Ticket/Display.html?id=34051)
|
||||||
|
* Applied patch by Emmanuel Rodriguez (POTYL) doing away with
|
||||||
|
hard-coded line numbers in 024WarnDieCarp.t to make it work
|
||||||
|
cpan2rpm for building RPM packages
|
||||||
|
(http://rt.cpan.org/Public/Bug/Display.html?id=35370)
|
||||||
|
* Fixed recreate_check_interval = 0 bug reported by
|
||||||
|
Bill Moseley.
|
||||||
|
* Added 'header_text' parameter to the file appender to
|
||||||
|
have it write a header every time it opens (or re-opens)
|
||||||
|
a new log file (suggested by Steven Lembark).
|
||||||
|
* version 1.18
|
||||||
* Fri Apr 04 2008 ug@suse.de
|
* Fri Apr 04 2008 ug@suse.de
|
||||||
- version update from 1.12 to 1.15
|
- version update from 1.12 to 1.15
|
||||||
- appender_thresholds_adjust() with a parameter of 0 now
|
- appender_thresholds_adjust() with a parameter of 0 now
|
||||||
|
Loading…
x
Reference in New Issue
Block a user