debian/0000755000000000000000000000000012231374415007170 5ustar debian/docs0000644000000000000000000000000712137171132010034 0ustar README debian/README.debian0000644000000000000000000000110712137171132011264 0ustar This is Debian Linux's prepackaged version of Log4perl. Log::Log4perl is a Perl port of the widely popular log4j logging package. This version was put together by Manoj Srivastava , from the sources at the URL The changes in this package are essentially the addition of support for the Debian package maintenance scheme, by adding various debian.* files. There were some changes made to the makefile and config.h files to make the layout more suitable for Debian policy. arch-tag: 74262f02-7055-494b-8a29-5684850e53ae debian/rules0000755000000000000000000000067212226416540010255 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ debian/patches/0000755000000000000000000000000012226416541010620 5ustar debian/patches/0003-topic-debian-Fix-Wrong-path-for-interpreter.patch0000644000000000000000000000261512137171132022453 0ustar From 1c1bfe0b8781e020631256f0458510898957ee82 Mon Sep 17 00:00:00 2001 From: Manoj Srivastava Date: Thu, 3 Sep 2009 23:34:34 -0500 Subject: [topic--debian]: Fix Wrong path for interpreter Mostly tests and examples. Closes: #544536 Signed-off-by: Manoj Srivastava (cherry picked from commit 2745cbbd97ee8d334287b54b18097d7e1a66bb12) Signed-off-by: Manoj Srivastava --- eg/benchmarks/simple | 2 +- eg/newsyslog-test | 2 +- t/027Watch4.t | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eg/benchmarks/simple b/eg/benchmarks/simple index 9558efc..e24da07 100755 --- a/eg/benchmarks/simple +++ b/eg/benchmarks/simple @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w ########################################### # Log4perl Benchmarks # Mike Schilli, 2008 (m@perlmeister.com) diff --git a/eg/newsyslog-test b/eg/newsyslog-test index 466c897..9b907f8 100755 --- a/eg/newsyslog-test +++ b/eg/newsyslog-test @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w ########################################### # newsyslog-test # Mike Schilli, 200t (m@perlmeister.com) diff --git a/t/027Watch4.t b/t/027Watch4.t index 6f61097..0287510 100755 --- a/t/027Watch4.t +++ b/t/027Watch4.t @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w BEGIN { if($ENV{INTERNAL_DEBUG}) { debian/patches/0002-topic-man-fix-spelling-errors-in-man-pages.patch0000644000000000000000000002420012137171132022263 0ustar From 7a3ad19fb1dcf87be2a0b690b8dbd54d1ce5c36a Mon Sep 17 00:00:00 2001 From: Manoj Srivastava Date: Sun, 28 Apr 2013 02:48:57 -0700 Subject: [topic--man-fix]: spelling errors in man pages seperately separately explicitely explicitly noticable noticeable enviroment environment Signed-off-by: Manoj Srivastava (cherry picked from commit ca33ddc478e32e645ad8fce4760a6d8fbfd8cda1) --- Changes | 4 ++-- README | 6 +++--- lib/Log/Log4perl.pm | 8 ++++---- lib/Log/Log4perl/Appender/File.pm | 2 +- lib/Log/Log4perl/Appender/Limit.pm | 2 +- lib/Log/Log4perl/Config.pm | 2 +- lib/Log/Log4perl/FAQ.pm | 6 +++--- lib/Log/Log4perl/JavaMap.pm | 2 +- lib/Log/Log4perl/Level.pm | 2 +- t/026FileApp.t | 2 +- t/028Additivity.t | 2 +- 11 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Changes b/Changes index 459427d..81cfc6c 100644 --- a/Changes +++ b/Changes @@ -719,7 +719,7 @@ still be called __ANON__, but this can be overridden by defining local *__ANON__ = "subroutine_name"; - in them explicitely (thanks, Perlmonks :). + in them explicitly (thanks, Perlmonks :). 0.41 (12/12/2003) * (ms) Applied documentation update for Synchronized appender, suggested @@ -778,7 +778,7 @@ * (ms) Matthew Keene suggested to have an accessor for all appenders currently defined -- added appenders() method - * (ms) Test case 041SafeEval.t didn't share $0 explicitely and + * (ms) Test case 041SafeEval.t didn't share $0 explicitly and created some warnings, fixed that with (jf)'s help. * (ms) Added performance improvements suggested by Kyle R. Burton . is_debug/is_info/etc. diff --git a/README b/README index 60a47c3..f5ed349 100644 --- a/README +++ b/README @@ -628,7 +628,7 @@ How to use it But you need to be aware that there's a small hit every time your code encounters a log statement -- no matter if logging is enabled or not. "Log::Log4perl" has been designed to keep this so low that it will be - unnoticable to most applications. + unnoticeable to most applications. Here's a couple of tricks which help "Log::Log4perl" to avoid unnecessary delays: @@ -918,7 +918,7 @@ Categories If you're afraid that the components of your system are stepping on each other's toes or if you are thinking that different components should - initialize Log::Log4perl seperately, try to consolidate your system to + initialize Log::Log4perl separately, try to consolidate your system to use a centralized Log4perl configuration file and use Log4perl's *categories* to separate your components. @@ -1118,7 +1118,7 @@ Cool Tricks without having to retype the pattern definitions. Variable substitution via "${varname}" will first try to find an - explicitely defined variable. If that fails, it will check your shell's + explicitly defined variable. If that fails, it will check your shell's environment for a variable of that name. If that also fails, the program will "die()". diff --git a/lib/Log/Log4perl.pm b/lib/Log/Log4perl.pm index 301f9ed..5967fbd 100644 --- a/lib/Log/Log4perl.pm +++ b/lib/Log/Log4perl.pm @@ -366,7 +366,7 @@ sub get_logger { # Get an instance (shortcut) # Note that (4) L4pSubclass->get_logger() => ("L4pSubclass") # is indistinguishable from (3) and therefore can't be allowed. - # Wrapper classes always have to specify the category explicitely. + # Wrapper classes always have to specify the category explicitly. my $category; @@ -1285,7 +1285,7 @@ to allow for maximum performance, both with logging enabled and disabled. But you need to be aware that there's a small hit every time your code encounters a log statement -- no matter if logging is enabled or not. C has been designed to keep this so low that it will -be unnoticable to most applications. +be unnoticeable to most applications. Here's a couple of tricks which help C to avoid unnecessary delays: @@ -1589,7 +1589,7 @@ can be used. If you're afraid that the components of your system are stepping on each other's toes or if you are thinking that different components should -initialize Log::Log4perl seperately, try to consolidate your system +initialize Log::Log4perl separately, try to consolidate your system to use a centralized Log4perl configuration file and use Log4perl's I to separate your components. @@ -1806,7 +1806,7 @@ This is a convenient way to define two appenders with the same layout without having to retype the pattern definitions. Variable substitution via C<${varname}> -will first try to find an explicitely defined +will first try to find an explicitly defined variable. If that fails, it will check your shell's environment for a variable of that name. If that also fails, the program will C. diff --git a/lib/Log/Log4perl/Appender/File.pm b/lib/Log/Log4perl/Appender/File.pm index 895e236..f7e4283 100755 --- a/lib/Log/Log4perl/Appender/File.pm +++ b/lib/Log/Log4perl/Appender/File.pm @@ -284,7 +284,7 @@ Log::Log4perl::Appender::File - Log to file This is a simple appender for writing to a file. The C method takes a single scalar. If a newline character -should terminate the message, it has to be added explicitely. +should terminate the message, it has to be added explicitly. Upon destruction of the object, the filehandle to access the file is flushed and closed. diff --git a/lib/Log/Log4perl/Appender/Limit.pm b/lib/Log/Log4perl/Appender/Limit.pm index 38dc827..1f34990 100644 --- a/lib/Log/Log4perl/Appender/Limit.pm +++ b/lib/Log/Log4perl/Appender/Limit.pm @@ -219,7 +219,7 @@ __END__ WARN("This message will be sent immediately."); WARN("This message will be delayed by one hour."); sleep(3601); - WARN("This message plus the last one will be sent now, seperately."); + WARN("This message plus the last one will be sent now, separately."); =head1 DESCRIPTION diff --git a/lib/Log/Log4perl/Config.pm b/lib/Log/Log4perl/Config.pm index 6eebeeb..72cff47 100644 --- a/lib/Log/Log4perl/Config.pm +++ b/lib/Log/Log4perl/Config.pm @@ -1131,7 +1131,7 @@ certainly override it: log4perl.appender.A1.layout=Log::Log4perl::Layout::SimpleLayout C is the C that has C -explicitely clobber the log file if it exists. +explicitly clobber the log file if it exists. =head2 Configuration files encoded in utf-8 diff --git a/lib/Log/Log4perl/FAQ.pm b/lib/Log/Log4perl/FAQ.pm index 75cf7d6..8fa54b4 100644 --- a/lib/Log/Log4perl/FAQ.pm +++ b/lib/Log/Log4perl/FAQ.pm @@ -1436,7 +1436,7 @@ C<"append"> mode, the OS kernel ensures that multiple processes share one end-of-file marker, ensuring that each process writes to the I end of the file. (The value of C<"append"> for the C parameter is the default setting in Log4perl's file -appender so you don't have to set it explicitely.) +appender so you don't have to set it explicitly.) # Guarantees atomic writes @@ -1778,7 +1778,7 @@ you'll get an error message like Why? At compile time, C didn't realize that C would be needed later on and didn't wrap it into the executable created. To avoid this, either say -C in the script explicitely or +C in the script explicitly or compile it with pp -o mytest -M Log::Log4perl::Appender::Screen mytest.pl @@ -2267,7 +2267,7 @@ the place and slow down execution to a crawl at high debug levels. Remote-controlling logging in the hierarchical parts of an application via Log4perl's categories is one of its most distinguished features. It allows for enabling high debug levels in specified areas without -noticable performance impact. +noticeable performance impact. =head2 I want to use UTC instead of the local time! diff --git a/lib/Log/Log4perl/JavaMap.pm b/lib/Log/Log4perl/JavaMap.pm index 856732b..e850740 100644 --- a/lib/Log/Log4perl/JavaMap.pm +++ b/lib/Log/Log4perl/JavaMap.pm @@ -127,7 +127,7 @@ These will probably not be implemented =head1 ROLL YOUR OWN -Let's say you've in a mixed Java/Perl enviroment and you've +Let's say you've in a mixed Java/Perl environment and you've come up with some custom Java appender with behavior you want to use in both worlds, C. You write a Perl appender with the same behavior C. You diff --git a/lib/Log/Log4perl/Level.pm b/lib/Log/Log4perl/Level.pm index e61e839..9540985 100644 --- a/lib/Log/Log4perl/Level.pm +++ b/lib/Log/Log4perl/Level.pm @@ -268,7 +268,7 @@ if you pull it in providing the C<:levels> tag: use Log::Log4perl qw(:levels); This is the preferred way, there's usually no need to call -C explicitely. +C explicitly. The numerical values assigned to these constants are purely virtual, only used by Log::Log4perl internally and can change at any time, diff --git a/t/026FileApp.t b/t/026FileApp.t index aa074a0..107bcc7 100644 --- a/t/026FileApp.t +++ b/t/026FileApp.t @@ -59,7 +59,7 @@ close FILE; #################################################### # Append to a log file without specifying append mode -# explicitely +# explicitly #################################################### my $data = <reset(); ###################################################################### -# Define the root logger and another logger, additivity on explicitely +# Define the root logger and another logger, additivity on explicitly ###################################################################### Log::Log4perl->init(\<<'EOT'); log4perl.logger = INFO, A1 debian/patches/0001-topic-man-fix-Fixed-whatis-info-for-man-page.patch0000644000000000000000000000160512137171132022421 0ustar From 7033134a8072944eded783428af3175020559ab8 Mon Sep 17 00:00:00 2001 From: Manoj Srivastava Date: Sat, 31 Oct 2009 01:31:53 -0500 Subject: [topic--man-fix]: Fixed whatis info for man page Signed-off-by: Manoj Srivastava (cherry picked from commit bdfb9e85f2b1526c4cb4f5f446e774e7fd25c59e) --- lib/Log/Log4perl/Layout/PatternLayout/Multiline.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Log/Log4perl/Layout/PatternLayout/Multiline.pm b/lib/Log/Log4perl/Layout/PatternLayout/Multiline.pm index 934dbcc..8597ddd 100755 --- a/lib/Log/Log4perl/Layout/PatternLayout/Multiline.pm +++ b/lib/Log/Log4perl/Layout/PatternLayout/Multiline.pm @@ -28,7 +28,7 @@ __END__ =head1 NAME - Log::Log4perl::Layout::PatternLayout::Multiline +Log::Log4perl::Layout::PatternLayout::Multiline - Multiline Pattern Layout =head1 SYNOPSIS debian/patches/series0000644000000000000000000000024512137171132012031 0ustar 0001-topic-man-fix-Fixed-whatis-info-for-man-page.patch 0002-topic-man-fix-spelling-errors-in-man-pages.patch 0003-topic-debian-Fix-Wrong-path-for-interpreter.patch debian/watch0000644000000000000000000000064412226416540010225 0ustar # format version number, currently 2; this line is compulsory! version=2 # Line continuations are performed with \ # This is one format for an HTTP site, which is the same # as the FTP format #http://log4perl.sourceforge.net/releases/Log-Log4perl-(.*).tar.gz debian #ftp://ftp.sf.net/pub/sourceforge/l/lo//Log-Log4perl-(.*).tar.gz http://search.cpan.org/CPAN/authors/id/M/MS/MSCHILLI/Log-Log4perl-(.*).tar.gz debian debian/liblog-log4perl-perl.examples0000644000000000000000000000052012137171132014657 0ustar eg/5005it.pl eg/benchmarks eg/color eg/dupe-warning.conf eg/jabber.conf eg/L4pResurrectable.pm eg/l4p-tmpl eg/log4j-file-append-java.conf eg/log4j-file-append-perl.conf eg/log4j-manual-1.conf eg/log4j-manual-2.conf eg/log4j-manual-3.conf eg/log4j-utf8.conf eg/newsyslog-test eg/override_appender eg/prototype eg/syslog.pl eg/yamlparser debian/compat0000644000000000000000000000000212137171132010362 0ustar 9 debian/control0000644000000000000000000000347012231374443010600 0ustar Source: liblog-log4perl-perl VCS-Git: git://git.debian.org/~srivasta/debian/liblog-log4perl-perl.git VCS-Browser: http://git.debian.org/git/?p=users/srivasta/debian/liblog-log4perl-perl.git Section: perl Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Manoj Srivastava Standards-Version: 3.9.4 Homepage: http://search.cpan.org/~mschilli/Log-Log4perl-1.41/lib/Log/Log4perl.pm Build-Depends-Indep: perl-modules, libxml-dom-perl, debhelper (>= 9.0.0) Package: liblog-log4perl-perl Architecture: all Depends: ${misc:Depends}, perl Suggests: libdbd-csv-perl, libxml-dom-perl, liblog-dispatch-perl, libipc-shareable-perl Description: Perl port of the widely popular log4j logging package Log::Log4perl is a pure Perl port of the widely popular Apache/Jakarta log4j library for Java. In the spirit of log4j, Log::Log4perl addresses the shortcomings of typical ad-hoc or homegrown logging systems by providing three mechanisms to control the amount of data being logged and where it ends up at: * Levels allow you to specify the priority of log messages. Low-priority messages are suppressed when the system's setting allows for only higher-priority messages. * Categories define which parts of the system you want to enable logging in. Category inheritance allows you to elegantly reuse and override previously defined settings of different parts in the category hierarchy. So, at a central location in your system (either in a configuration file or in the startup code) you may specify which components (classes,functions) of your system should generate logs. * Appenders allow you to choose which output devices the log data is being written to, once it clears the previously listed hurdles. debian/changelog0000644000000000000000000011100012231374415011033 0ustar liblog-log4perl-perl (1.41-1.1ubuntu1) trusty; urgency=low * Merge from Debian unstable. Remaining changes: - Drop unneeded Universe Build-Depends-Indep libdbd-csv-perl and liblog-dispatch-perl and change them to Suggests from Recommends -- Scott Kitterman Tue, 22 Oct 2013 00:02:44 -0400 liblog-log4perl-perl (1.41-1.1) unstable; urgency=low * Non-maintainer upload. * Upload to unstable - Fix "defined(@array) is deprecated" warnings. (Closes: #721998, #722276, #722949) -- Salvatore Bonaccorso Wed, 02 Oct 2013 17:54:41 +0200 liblog-log4perl-perl (1.41-1) experimental; urgency=low * New upstream release * Bug fix: "new upstream version available", thanks to Jonas Genannt (Closes: #652033). Fixed in this version * Bug fix: "Mandatory parameters 'level', 'message' missing in call to Log::Dispatch::Output::log", thanks to Alexander Wirt (Closes: #688518). Fixed in this version -- Manoj Srivastava Sun, 28 Apr 2013 03:05:02 -0700 liblog-log4perl-perl (1.29-1ubuntu1) maverick; urgency=low * Merge from debian unstable. Remaining changes: - Drop unneeded Universe Build-Depends-Indep libdbd-csv-perl and liblog-dispatch-perl and change them to Suggests from Recommends -- Scott Kitterman Mon, 13 Sep 2010 22:14:22 -0400 liblog-log4perl-perl (1.29-1) unstable; urgency=low * New upstream release + (ms) Added documentation on how to use Log4perl's :easy macros with Catalyst in Log::Log4perl::Catalyst. + (ms) wrapper_register() now deals with caller_depth automatically. Backwards compatibility with old wrapper classes using caller_depth directly is provided. Documentation has been updated. + (ms) Felix Antonius Wilhelm Ostmann reported Resurrector.pm crashes, fixed as suggested by setting the %INC value to the module path. + (ms) Another caller_depth fix in Log::Log4perl::Catalyst. + (ms) Fixed logdie() caller_depth bug reported by Rob Retter. + (ms) [RT 56145] Saving errstr in DBI appender to survive ping() + (ms) Added INTERNAL_DEBUG env variable to test suite triggering all _INTERNAL_DEBUG statements to be printed for better error diagnosis on misbehaving systems. -- Manoj Srivastava Wed, 21 Jul 2010 00:39:21 -0700 liblog-log4perl-perl (1.28-1) unstable; urgency=low * New upstream release -- Manoj Srivastava Tue, 06 Apr 2010 01:00:06 -0700 liblog-log4perl-perl (1.26-1ubuntu3) lucid; urgency=low * Fix typo in Original-Maintainer field -- Lucas Nussbaum Wed, 10 Mar 2010 08:02:36 +0100 liblog-log4perl-perl (1.26-1ubuntu2) lucid; urgency=low * Drop build-dependency on liblog-dispatch-perl and libdbd-csv-perl, which don't seem to actually be used at build time. -- Steve Langasek Tue, 23 Feb 2010 00:20:15 +0000 liblog-log4perl-perl (1.26-1ubuntu1) lucid; urgency=low * Tone down the dependencies. -- Chuck Short Tue, 05 Jan 2010 09:22:05 -0500 liblog-log4perl-perl (1.26-1) unstable; urgency=low * New upstream release + (ms) [RT 50495] Perl code in the config file is now evaluated/ compiled after the configuration parser has done its work, opening up Perl subroutines to all configuration parsers, not just PropertyConfigurator. Configuration subs for cspecs, filter, warp_message and appender triggers are sheltered. The previous, flawed implementation surfaced while using a 'trigger' category, reported by Olivier Bilodeau. + (ms) [RT 50090] Added non-portable linebreaks to PatternLayout (requested by Zdeněk Juran). + (ms) [RT 50094] Docfix for PatternLayout in main manpage (spotted by Peter Rabbitson). + (ms) [RT 28679] Added exists() to "Threshold" keyword uppercase check. + (ms) Took out Class::Prototyped testcase after it got all weird and introduced backward-incompatible changes. -- Manoj Srivastava Mon, 30 Nov 2009 01:48:50 -0600 liblog-log4perl-perl (1.25-2) unstable; urgency=low * [bdfb9e8]: [topic--man-fix]: Fixed whatis info for man page -- Manoj Srivastava Sat, 31 Oct 2009 01:44:58 -0500 liblog-log4perl-perl (1.25-1) unstable; urgency=low * New upstream release + (ms) Appender::File is now closing (or sysclosing) the file on file_close() instead of just undef'ing the handle. + (ms) Added l4p-tmpl helper script to help whipping up a new log4perl configuration file. + (ms) Fixed uninitialized warning on XML configuration files, reported by jbkilian on the sourceforge mailing list. + (ms) Applied patch [RT 43426] by AFF to have appender_thresholds_adjust return number of appenders changed. + (ms) [RT 34400] New :nostrict target which allows redefining a category within a Log4perl configuration file without error or even a warning. + (ms) [RT 34401] Applied patch by Jae Gangemi, who fixed code references in @INC on Win32 systems. + (ms) [RT 32259] Patternlayout now supports %R, which returns the number of milliseconds elapsed from last logging event to the current logging event (thanks to Emmanuel Rodriguez for the patch). + (ms) [RT 30899] Color configuration and attribute support added to ScreenColoredLevels appender by Jason Kohles. + (ms) [RT 28987] If UNIVERSAL is available, appender existence is now verified by checking can() on the appender's new() method (applied modified patch by Gabriel Berriz). -- Manoj Srivastava Mon, 05 Oct 2009 02:50:23 -0500 liblog-log4perl-perl (1.24-3) unstable; urgency=low * [b1a3917]: [liblog-log4perl-perl]: PREFIX is no longer mutable, use DESTDIR. Preemptive bug fix. -- Manoj Srivastava Sun, 13 Sep 2009 18:33:36 -0500 liblog-log4perl-perl (1.24-2) unstable; urgency=low * [2745cbb]: [topic--debian]: Fix Wrong path for interpreter Mostly tests and examples. Bug fix: "Wrong path for interpreter in examples", thanks to Dario Minnucci \(midget\) (Closes: #544536). -- Manoj Srivastava Thu, 03 Sep 2009 23:36:40 -0500 liblog-log4perl-perl (1.24-1) unstable; urgency=low * New upstream version. + (ms) Fixed bug with Log::Log4perl::Util::tmpfile_name which surfaced on VMS, reported by Ben Humphreys. + (ms) Fixed system-wide threshold to no longer lower appender thresholds. Bug reported by Jean-Denis Muys. + (ms) Added benchmark to determine impact of eval-free handlers + (ms) Merged with eval_free branch. Now there are no more eval("") statements left in the code, making it much easier to debug. Performance on init() is about the same, performance on init_and_watch() (noops and logged statements alike) is 25% slower but still in the range of 400,000/sec on my 1.80Ghz CPU. -- Manoj Srivastava Thu, 13 Aug 2009 13:26:54 -0500 liblog-log4perl-perl (1.23-1) unstable; urgency=low * New upstream release + (ms) DBI-1.608 removed a DBD::File 'feature' that allowed leaving out parameters in a bound execute(). This caused the test suite to fail. Fixed the test cases to pass the correct number of parameters every time. + (ms) Better error message in the DBI appender on bad SQL, missing bind parameters, or other execute() errors. + (ms) Made DBI test suite more robust against preexisting conditions + (ms) Added force_next_check() for init_and_watch(), cleaned up Config::Watcher code. + (ms) Fixed test suite to run on Strawberry Perl on Win32 (reported by kmx on https://rt.cpan.org/Ticket/Display.html?id=45983) + (ms) Added 'utf8' option to screen appender and easy mode, some of it suggested by Shantanu Bhadoria. + (ms) is_xxx() returned true prior to L4p initialization. Fixed it and adapted test suite. + (ms) Added test cases on syswrite in recreate mode + (ms) Applied patch by Jens Berthold to avoid semaphore cleanup in spawned children. + (ms) Added %m{chomp} feature, 'message_chomp_before_newline' option, and documentation on newlines and logging messages, all suggested by Tim Bunce (see PatternLayout). -- Manoj Srivastava Wed, 13 May 2009 22:35:06 -0500 liblog-log4perl-perl (1.21-1) unstable; urgency=low * New upstream release. + (ms) Documentation typos fixed, reported by Breno G. de Oliveira [rt.cpan.org #42428]. + (ms) Fixed DBI appender error message, bug reported by DavidZ. + (ms) Fixed [rt.cpan.org #43740] reported by Martin Koehler. Now using proper POSIX return code EEXISTS instead of error message depending on English locale. * Only run unit tests when DEB_BUILD_OPTIONS does not contain nocheck. This brings us back in compliance with policy. -- Manoj Srivastava Mon, 06 Apr 2009 00:01:45 -0500 liblog-log4perl-perl (1.20-1) unstable; urgency=low * [385f9af]: Merge branch 'upstream'. New upstream release + (ms) Using semctl to reset the value of the semaphore in the Synchronized appender to prevent "Numerical result out of range" problem caused by an unbalanced SEM_UNDO when incrementing it. Reported by John Little. + (ms) Added parameters in curly braces to cspecs in PatternLayout. + (ms) As explained in http://rt.cpan.org/Ticket/Display.html?id=41505 the latest LWP release (5.822) got rid of all of its internal debugging functions, making infiltrate_lwp() and its test case useless. Disabling it for LWP>=5.822. -- Manoj Srivastava Wed, 24 Dec 2008 11:26:14 -0600 liblog-log4perl-perl (1.19-1) unstable; urgency=low * [85b445d] Update watch file to look at CPAN. * New upstream release * (ms) Applied patch by Peter Rabbitson, which fixes the caller() level when calling get_logger() on a subclass of Log4perl. * (ms) Added documentation on is_xxx() methods and clarified that it doesn't necessarily mean that a message gets logged if they're returning true (requested by Conway Allen via [rt.cpan.org #39085]. * (ms) Applied patch by Lee Johnson to appender_by_name() to allow for undefined appender names without issuing a warning, which was occurring with Catalyst::Log4perl. * (ms) Added docs on numerical levels and level strings in Log::Log4perl::Level. * (ms) Applied patch by Anthony Foiani for support of literal text in DateFormat format strings. -- Manoj Srivastava Mon, 24 Nov 2008 15:02:35 -0600 liblog-log4perl-perl (1.18-1) unstable; urgency=low * New upstream release * (ms) Added explanation that categories and loggers are the same thing (thanks to Rabbit). * (ms) Fixed t/053Resurrect to work with 5.005_03 * (ms) Added preinit_callback function for init_and_watch() * (ms) 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). * (ms) Applied patch by Jae Gangemi addding a no_warning option to the socket appender (http://rt.cpan.org/Ticket/Display.html?id=34399). * (ms) Fixed test suite to run on Strawberry Perl on Win32. * (ms) Added 'l4p' as a valid prefix in configuration files (equal to 'log4j' and 'log4perl' now). * Updated Standards-Version: no changes. -- Manoj Srivastava Tue, 02 Sep 2008 21:49:20 -0500 liblog-log4perl-perl (1.16-1) unstable; urgency=low * New upstream release * (ms) 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. * (ms) Added explanation for Log4perl messages during global destruction to FAQ. * (ms) Corrected 'Trapper' listing in FAQ, thanks to Christian Reiber. * (ms) 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) * (ms) 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) * (ms) Fixed recreate_check_interval = 0 bug reported by Bill Moseley. * (ms) 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). * Record the fact that this package's Debian development has moved to a git repository. * Converted to teh new streamlined target system. -- Manoj Srivastava Tue, 02 July 2008 21:49:20 -0500 liblog-log4perl-perl (1.15-2) unstable; urgency=low * Bug fix: "liblog-log4perl-perl: FTBFS with Perl 5.10: the empty /usr/lib/perl5 is gone", thanks to Niko Tyni. Closes: #467889 -- Manoj Srivastava Tue, 18 Mar 2008 18:02:14 -0500 liblog-log4perl-perl (1.15-1) unstable; urgency=low * New upstream release * (ms) appender_thresholds_adjust() with a parameter of 0 now does nothing (requested by Oliver Koch). * (kg) Added 'defer_connection' to Socket appender so it's more useful under Apache. * (ms) [rt.cpan.org #32738] fixed caller_depth for error_warn() (reported by Felix Antonius Wilhelm Ostmann) * (ms) [rt.cpan.org #32942] fixed get_logger() for subclassed Log4perl (reported by Felix Antonius Wilhelm Ostmann) -- Manoj Srivastava Fri, 15 Feb 2008 14:13:57 -0600 liblog-log4perl-perl (1.14-1) unstable; urgency=low * New upstream release Closes: Bug#462751 * (ms) Fixed test suite bug which surfaced in Darwin because temporary files contain '++' which freaked out the sloppy regex match. * (ms) Better handling of empty config files (reported by Robert Raisch) * (ms) Rewrote the Synchronized appender to use semaphores exclusivly (got rid of IPC::Shareable). * (ms) Added Log::Log4perl::Util::Semaphore for easy semop handling * (ms) Fixed t/026FileApp.t to work on MSWin32. * (ms) Another doc fix by Craig * (ms) Applied Fedora 7 patches * (ms) Added create_at_logtime option to file appender * (ms) Added trace level color (yellow) in ScreenColoredLevels appender as suggested by Arvind Jayaprakash in https://sourceforge.net/tracker/index.php? func=detail&aid=1791445&group_id=56939&atid=482388 * (ms) 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). * (ms) Added ALWAYS easy mode macro (level=OFF) * (ms) Fixed logconfess() frame level bug reported by Ali Mesdaq. Added test case. * (ms) Added PatternLayout::Multiline code by Cory Bennett to render multiline messages. * (ms) Added log level TRACE (lets through even more messages than DEBUG) (suggested by Craig). * (ms) 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). -- Manoj Srivastava Thu, 07 Feb 2008 17:12:15 -0600 liblog-log4perl-perl (1.10-1) unstable; urgency=low * New upstream release * (ms) Applied test suite patch by Lars Thegler for ancient perl 5.005_03. * (ms) Applied patch by Jeremy Bopp to fix test suite running under Cygwin. * (ms) Fixed documentation bug in L4p:Appender::File, s/recreate_signal/recreate_check_signal. Thanks to Todd Chapman and Robert Jacobson for reporting this. * (ms) 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! * (ms) Added $^S check to FAQ, as suggested by J. David Blackstone. * (ms) 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. * (ms) Added %M{x} PatternLayout notation as requested by Ankur Gupta. * (ms) Another Win32 test suite fix, no longer deleting an open file but moving it aside (rt.cpan:23520). * (kg) Nikita Dedik pointed out that Saturday is missing from @Log::Log4perl::DateFormat::WEEK_DAYS * (ms) Scott Cline noticed a potential problem with the DBI appender reconnection logic in 'buffered' mode. Applied a patch. * (ms) Changed DBI reconnect logic to perform even if the DB is pingable again. * (ms) Applied code by Valerio Valdez Paolini with modifications to PropertyConfigurator.pm to allow pulling values from the property configurator by path. * Added XS-VCS-Arch and XS-VCS-Browse to debian/control -- Manoj Srivastava Wed, 18 Apr 2007 17:21:58 -0500 liblog-log4perl-perl (1.07-1) unstable; urgency=low * New upstream release * (ms) Removed checks for unlink() in t/017Watch.t since they failed on win32. * (ms) Fixed doc bug in Appender::File reported by Robert Jacobson. * (ms) Added FAQ on why to use Log4perl and not another logging system on CPAN. * (ms) Fixed %M, %L, etc. level in logcarp/cluck/croak/confess (thanks to Ateeq Altaf) * (ms) Autocorrecting rootlogger/rootLogger typo * (ms) Better warning on missing loggers in config sanity check -- Manoj Srivastava Fri, 20 Oct 2006 19:35:06 -0500 liblog-log4perl-perl (1.06-1) unstable; urgency=low * New upstream release * (ms) Applied patch by Robert Jacobson to fix day-of-year in DateFormat, which was off by one. * (ms) Added FAQ on syslog * (ms) umask values for the file appender are now also accepted in octal form (0xxx). * (ms) The file appender now accepts owner/group settings of newly created log files. * (ms) Fixed appender cleanup, a bug caused composite appenders to be cleaned up during global destruction, which caused an * (ms) Added recreate signal handler to L4p::Appender::File for newsyslog support. Two new FAQ entries on dealing with newsyslog and log files being removed by external apps. * (ms) L4p::Config::Watch no longer sets the global $SIGNAL_CAUGHT by default but uses an instance variable instead to prevent clobbering L4p's config and watch mechanism. * (ms) die() on undefined configuration (rt 18103 by justice8@wanadoo.fr) * (ms) Hugh Esco submitted a FAQ on where to put logfiles * (ms) Applied patch provided by Chia-liang Kao to suppress an error message and skip tests in the suite when DBI is missing. ugly segfault with the Synchronized appender on FreeBSD. * Bug fix: "liblog-log4perl-perl: new version (1.06)", thanks to Alec Berryman (Closes: #378956). -- Manoj Srivastava Wed, 9 Aug 2006 00:33:35 -0500 liblog-log4perl-perl (1.04-1) unstable; urgency=low * New upstream release * (ms) If a conversion pattern was specified twice in a config file, the output was "ARRAY(0x804da00)" (bug reported by Bill Mason). Now, gobbling up property configurator values into an array is limited to appender properties and excludes the conversion pattern. * (ms) Multiple calls to import (usually happens if 'use L4p' gets called twice within the same namespace) caused nasty warnings, bug reported by Greg Olszewski. Fixed by ignoring subsequent calls from the same package to import(). * (ms) Changed rendering of logdie/warn/cluck/croak/... messages to fix a bug reported by Martin J. Evans. * (ms) Added a L4p::Appender::String appender to handle the rendering internally. * (ms) Documentation patch by Matisse Enzer on increased/ decreased log levels. * (ms) Fixed stack trace level of logcarp() * (ms) Carl Franks reported that the test suite failed on WinXP SP2 because of a hardcoded /tmp - fixed by File::Spec->tempdir(). * (ms) Added reconnect_attempts and reconnect_sleep parameters to DBI appender. * (ms) Bugfix for rt.cpan.org #17886 (tmp files in test suite) -- Manoj Srivastava Mon, 13 Mar 2006 07:11:19 -0600 liblog-log4perl-perl (1.03-1) unstable; urgency=low * New upstream release * (ms) Some perl-5.6.1 installations have a buggy Carp.pm. Skipping 4 test cases for these. Reported by Andy Ford and Matisse Enzer. * (ms) The DBI appender now reconnects on stale DB connections. * (ms) Fixed Win32 test bug as reported in http://rt.cpan.org/Ticket/Display.html?id=17436 by barbie. Instead of deleting a file still in use by an appender (which Windows doesn't like), the file gets now truncated. -- Manoj Srivastava Tue, 7 Feb 2006 23:36:33 -0600 liblog-log4perl-perl (1.02-2) unstable; urgency=low * liblog-log4perl-perl: missing dependency on libipc-shareable-perl Appender/Synchronized.pm from the liblog-log4perl-perl package uses IPC::Shareable which is contained in libipc-shareable-perl. Thanks to radu@studentenwerk.mhn.de (Closes: #349486) -- Manoj Srivastava Mon, 23 Jan 2006 10:36:43 -0600 liblog-log4perl-perl (1.02-1) unstable; urgency=low * New upstream release + (ms) Adapted t/006Config-Java.t to cope with Win32 path separators + (ms) Corrected typo in Chainsaw FAQ, reported by Bernd Dirksen. + (ms) Brian Edwards noticed that (Screen, File) were missing a base class declaration, causing $logger->add_appender() to fail. Fixed with test case. + (ms) Log::Log4perl::Appender::File now handles the case where the logfile suddenly disappears. + (ms) Fixed section indentation in main man page + (ms) Converted Ceki's last name to UTF-8 (a historic step!) -- Manoj Srivastava Fri, 30 Dec 2005 13:51:04 -0600 liblog-log4perl-perl (1.01-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) Added 'utf8' and 'binmode' flags to Log::Log4perl::Appender::File per suggestion by Jonathan Warden. * (ms) Made test cases 003Layout.t and 033UsrCspec.t resilient against broken ActiveState 5.8.4 and 5.8.7. * (ms) Skipped failing test cases for 5.005, looks like the caller() level in carp() is wrong, but not worth fixing. * (ms) Fixed the bug with the caller level of the first log message sent after init_and_watch() detected a change. Added test case to 027Watch2.t. * (ms) Added FAQ on UTF-8. * (ms) Applied patch by David Britton, improving performance during the init() call. * (ms) Fixed bug https://rt.cpan.org/Ticket/Display.html?id=14776 to prevent it from modifying $_. Thanks to Steffen Winkler. -- Manoj Srivastava Sun, 23 Oct 2005 17:23:03 -0500 liblog-log4perl-perl (1.00-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) Added tag qw(:no_extra_logdie_message) to suppress duplicate die() messages in scripts using simple configurations and LOGDIE(). Added logexit() as an alternative way. * (ms) Fixed bug with logcarp/croak/cluck, which were using the wrong Carp level. * (kg) Fixing bug in Appender::Limit regarding $_ scope * (ms) corrected typo in Synchronized.pm found by Rob Redmon. * (ms) Fixed bug with Appender::File reported by Michael Smith. Checking now if print() succeeds, catching errors with full disks and ulimit'ed environments. * (ms) Added LOGCARP(), LOGCLUCK(), LOGCONFESS(), LOGCROAK() macros in :easy mode (suggested by Jud Dagnall). * (ms) $INITIALIZED now gets reset during logger cleanup. -- Manoj Srivastava Sat, 20 Aug 2005 10:40:39 -0500 liblog-log4perl-perl (0.52-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) Jonathan Manning provided a patch for DateFormat.pm to fix 3-letter month abbreviations and a shortcut to simulate Apache's log format. * (kg) Ola Finsbraaten provided a patch to provide a better error message when a logger is defined twice in a config. -- Manoj Srivastava Fri, 3 Jun 2005 16:10:54 -0500 liblog-log4perl-perl (0.51-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) Jon Bjornstad noticed that the file appender wasn't including $! in the die() exception thrown if open_file() fails. Added it. * (ms) Added umask option to file appender * (ms) Fix to L4p::Util::module::available() for Win32 compliance by Roger Yager * (ms) Added check to L4p::Util::module_available() returning true if the pm file is available in %INC, indicating that it has already been loaded. This fixes a problem when running L4p in a PAR binary. * (ms) Added remove_appender() and eradicate_appender() method to Logger.pm, test cases and documentation on the main Log4perl page. * (ms) Added a generic buffered composite appender, L4p::Appender::Buffer, buffering messages until a trigger condition is met. -- Manoj Srivastava Wed, 12 Jan 2005 13:21:10 -0600 liblog-log4perl-perl (0.50-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) Added ':resurrect' source filter, which uncomments all lines starting with "###l4p". Can be used for hidden L4p statements, which are then activated by calling 'use Log::Log4perl qw(:resurrect)'. * (ms) Fixed Win32 test suite bug: File::Spec->catfile() returns '/' as a path separator on both Unix and Win32, while Log4perl's layouts (derived from caller() info) use '\' on Win32 and '/' on Unix. Changed tests to only verify file name, not path. * (ms) Added 'appender_by_name()' to retrieve an appender defined in the configuration file by name later. * (ms) Added FAQ on "stubbing out" L4p macros in environments that don't have L4p installed. * (ms) Added convenience function appender_thresholds_adjust() to adjust thresholds of chosen (or all) appenders * (ms) Got rid of Test::Simple dependency * (ms) Moved autoflush setting in L4p::Appender::File from log() to file_open(), running only once, not with every message. * (ms) Applied doc fixes suggested by Jon Bjornstad. * (ms) Added ScreenANSIColor appender to colorize messages based on their priority. See Log::Log4perl::Appender::ScreenANSIColor. -- Manoj Srivastava Wed, 8 Dec 2004 10:26:18 -0600 liblog-log4perl-perl (0.49-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) init_and_watch() no longer die()s on reloading syntactically wrong configuration files but issues a warning and then reloads the last working config. * (ms) init() now also accepts an open file handle (passed in as a glob) to a configuration file or a ref to an IO::File object. * (ms) Jos I. Boumans and Chris Winters reported an error thrown by L4p in their app SPOPS: During global construction. Looks like the Logger object's internal hash is cleared and then the is_ method gets called, resulting in a runtime exception. Added proposed remedy checking if the called method is defined by ref. * (ms) Added check to init_and_watch if obtaining the mod timestamp failed. -- Manoj Srivastava Mon, 8 Nov 2004 17:29:07 -0600 liblog-log4perl-perl (0.48-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) fixed bug reported by Chip Salzenberg : logdie() and logwarn() are now compliant with the warn() and die() standard which suppresses the "at file line x" message if the message ends with a "\n". * (ms) New interface for custom config parsers. Log::Log4perl::Config::BaseConfigurator now provides a base class for new config parsers. Init can now be called like Log::Log4perl->init($parser) with a parser object, which is derived from Log::Log4perl::Config::BaseConfigurator and provides a parse() method (no arguments). The file (or whatever) to be parsed can be set by calling $parser->text(\@lines) or $parser->file($name) before calling L4p->init($parser). The Property, DOM and LDAP configurators have been adapted, check their implementation for details. * (ms) Added integrity check for Log4perl configurations: Log4perl now issues a warning if a configuration doesn't define any appenders. Should anyone not like this, it can be turned off by setting $L4p::Config::CONFIG_INTEGRITY_CHECK = 0 before calling init(). * (ms) Fixed bug reported by Johannes Kilian with __DIE__ handler and "PatternLayout" shortcut. Replaced 'eval { require ... }' by L4p::Util::module_available in L4p::Config.pm. * (ms) Did away with $IS_LOADED internal variable. * (ms) Fixed bug with L4p::INITIALIZED vs. L4P::Logger::INITIALIZED, added t/020Easy2.t. * (ms) Added adm/cvskwexp script to check if we're running into CVS trouble because of Log keyword expansion. -- Manoj Srivastava Thu, 30 Sep 2004 15:47:45 -0500 liblog-log4perl-perl (0.47-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) Added suggestion by Hutton Davidson to make the socket appender more forgiving. New option "silent_recovery" will silently ignore errors and recover if possible on initiallly dead socket connections. * (ms) Fixed bug with initialized() -- checking once caused subsequent calls to return true. * (ms) run t/045Composite.t only if Storable is installed -- earlier perl versions (like 5.6.1) don't have it by default. * (ms) fixed test case in t/020Easy.t for buggy perl 5.6.1 * (ms) added Log::Log4perl::infiltrate_lwp() to make LWP::UserAgent play in the L4p framework upon request. * (ms) perl 5.00503 mysteriously core dumps in t/017Watch.t, seems like this was introduced in 0.46. Disabled these tests for now if we're on 5.00503 to avoid installation hickups. Longer term, need to investigate. -- Manoj Srivastava Fri, 13 Aug 2004 18:54:34 -0500 liblog-log4perl-perl (0.46-1) unstable; urgency=low * New upstream release. Please look at the Changes file for details. This is a maintenance (bug fixing) upgrade. -- Manoj Srivastava Mon, 21 Jun 2004 11:21:15 -0500 liblog-log4perl-perl (0.43-2) unstable; urgency=low * Bug fix: "liblog-log4perl-perl: Missing Suggests for liblog-dispatch-perl", thanks to Loic Minier (Closes: #244653). -- Manoj Srivastava Tue, 20 Apr 2004 15:37:59 -0500 liblog-log4perl-perl (0.43-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) Applied patch by Markus Peter for 'pipe' mode in Log::Log4perl::Appender::File * (ms) Added composite appender Log::Log4perl::Appender::Limit to limit message delivery to adjustable time windows. * (ms) Fixed last 033UsrCspec.t test case to run on Win32 as well (path fixed). * (ms) Lars Thegler provided a patch to keep compatibility with 5.005_03. -- Manoj Srivastava Thu, 1 Apr 2004 22:50:51 -0600 liblog-log4perl-perl (0.42-1) unstable; urgency=low * New upstream version. Excerpted changes: * (kg) added filters to XML DOMConfig and DTD * (ms) Fixed caller level to cspecs by adding one * (ms) Added init_once() and documentation * (ms) Worked around the perl bug that triggers __DIE__ handlers even if die() occurs within an eval(). So if you did BEGIN { $SIG{__DIE__} = sub { print "ouch!"; die }; } use Log::Log4perl; and Time::HiRes wasn't available, the eval { require Time::HiRes } in PatternLayout.pm triggered the __DIE__ handler. Now there's a function module_available() in L4p::Util to check if a module is installed. * (ms) Fixed %M cspec in PatternLayout in case a logging method is called within one (or more) eval {} block(s). caller(n+m) will be called repeatedly if necessary to get the next real subroutine. Anonymous subroutines will still be called __ANON__, but this can be overridden by defining local *__ANON__ = "subroutine_name"; in them explicitely (thanks, Perlmonks :). -- Manoj Srivastava Mon, 16 Feb 2004 21:44:12 -0600 liblog-log4perl-perl (0.41-1) unstable; urgency=low * New upstream release. Excerpted changes: * (ms) Applied documentation update for Synchronized appender, suggested by David Viner * (ms) Added option to Log::Log4perl::Layout::PatternLayout to enable people to provide their own timer functions. -- Manoj Srivastava Wed, 24 Dec 2003 10:29:24 -0600 liblog-log4perl-perl (0.40-1) unstable; urgency=low * New upstream release. This contains a number of bug fixes. Excerpted changes: * (ms) Added file_open(), file_close() and file_switch() to l4p::Appender::File * (ms) Added logic for 'composite appenders'. Appenders can now be configured to relay messages to other appenders. Added Log::Log4perl::Appender::Synchronized, an appender guaranteeing atomic logging of messages via semaphores. * (ms) Added basic substitution to PropertyConfigurator. Now you can define variables (like in "name=value") and subsequent patterns of "${name}" will be replaced by "value" in the configuration file. * (kg) Followed Mike's lead and added variable substitution to the DOMConfigurator. * (ms) Added Log::Log4perl::Appender::Socket as a simple Socket appender featuring connection recovery. * (ms) added %T to PatternLayout as a stack traced as suggested by Brett Rann . * (ms) Added signal handling to init_and_watch * (ms) renamed l4p-internal DEBUG constant to avoid confusion with DEBUG() and $DEBUG as suggested by Jim Cromie . -- Manoj Srivastava Sat, 13 Dec 2003 11:14:39 -0600 liblog-log4perl-perl (0.36-1) unstable; urgency=low * Initial Install -- Manoj Srivastava Sat, 2 Aug 2003 11:30:23 -0500 debian/.git-dpm0000644000000000000000000000044012137171132010524 0ustar # see git-dpm(1) from git-dpm package 1c1bfe0b8781e020631256f0458510898957ee82 1c1bfe0b8781e020631256f0458510898957ee82 2a761d7f9fd2cbe30368f50740f3238151a2aee6 2a761d7f9fd2cbe30368f50740f3238151a2aee6 liblog-log4perl-perl_1.41.orig.tar.gz 2102d9c3cb679a78084e14e26e68828b58420c57 273464 debian/copyright0000644000000000000000000000216712226416540011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: liblog-log4perl-perl Source: Files: * Copyright: 2002-2009 by Mike Schilli and Kevin Goess . 2002 by Erik Selberg 2003 by James FitzGibbon License: Artistic-1.0 Comment: This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. Files: debian/* Copyright: 2004, 2005, 2006, 2013 Manoj Srivastava License: Artistic-1.0 License: Artistic-1.0 This program is free software; you can redistribute it and/or modify it under the terms of the "Artistic License" which comes with Debian. . THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. . On Debian systems, the complete text of the Artistic License can be found in "/usr/share/common-licenses/Artistic". debian/source/0000755000000000000000000000000012226416541010471 5ustar debian/source/format0000644000000000000000000000001412137171132011672 0ustar 3.0 (quilt)