debian/0000775000000000000000000000000012314245734007175 5ustar debian/copyright0000664000000000000000000000307112305054164011124 0ustar This package was debianized by Benoit Joly on Sat Apr 12 2003 18:32:20 -0400. It was downloaded from: http://logging.apache.org/log4j/1.2/download.html Upstream Authors: Copyright (C) 1999-2007, The Apache Software Foundation Contributors: Mathias Bogaert James P. Cakalic Paul Glezen Ceki Gülcü Anders Kristensen Jim Moore Jon Skeet Chris Taylor For more details about the upstream authors, see: http://jakarta.apache.org/log4j/docs/contributors.html License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. The full text of the license can be found in `/usr/share/common-licenses/Apache-2.0'. Debian packaging: (C) 2001 - 2004, Benoit Joly (C) 2005 - 2007, Kalle Kivimaa (C) 2005 - 2007, Wolfgang Baer , Michael Koch (C) 2007 Varun Hiremath , Kumar Appaiah The Debian packaging of this package is licensed under the Apache Software License 2.0 (see above). debian/dirs0000664000000000000000000000001712305054164010052 0ustar usr/share/java debian/liblog4j1.2-java.manifest0000664000000000000000000000352312314245631013572 0ustar /usr/share/java/log4j-1.2.jar: Bundle-SymbolicName: org.apache.log4j Bundle-ManifestVersion: 2 Bundle-Name: Apache Log4j Bundle-Version: 1.2.17 Bundle-Vendor: Apache Software Foundation Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt Export-Package: org.apache.log4j.net;uses:="org.apache.log4j,org.apache.log4j.spi,javax.mail,org.apache.log4j.helpers,org.apache.log4j.xml,javax.mail.internet",org.apache.log4j.jmx;uses:="org.apache.log4j,javax.management,org.apache.log4j.helpers,org.apache.log4j.spi",org.apache.log4j.jdbc;uses:="org.apache.log4j,org.apache.log4j.spi",org.apache.log4j.config;uses:="org.apache.log4j.helpers,org.apache.log4j,org.apache.log4j.spi",org.apache.log4j.helpers;uses:="org.apache.log4j,org.apache.log4j.spi",org.apache.log4j;uses:="org.apache.log4j.spi,org.apache.log4j.helpers,org.apache.log4j.or,org.apache.log4j.config",org.apache.log4j.nt;uses:="org.apache.log4j.helpers,org.apache.log4j,org.apache.log4j.spi",org.apache.log4j.or.sax;uses:="org.apache.log4j.or",org.apache.log4j.spi;uses:="org.apache.log4j,org.apache.log4j.helpers,com.ibm.uvm.tools,org.apache.log4j.or",org.apache.log4j.or;uses:="org.apache.log4j.helpers,org.apache.log4j.spi,org.apache.log4j",org.apache.log4j.xml;uses:="org.apache.log4j.config,org.apache.log4j.helpers,org.apache.log4j,org.apache.log4j.spi,org.apache.log4j.or",org.apache.log4j.varia;uses:="org.apache.log4j.spi,org.apache.log4j,org.apache.log4j.helpers" Import-Package: com.ibm.uvm.tools;resolution:=optional,javax.mail;resolution:=optional,javax.mail.internet;resolution:=optional,javax.management;resolution:=optional,javax.naming;resolution:=optional,javax.swing;resolution:=optional,javax.swing.border;resolution:=optional,javax.swing.event;resolution:=optional,javax.swing.table;resolution:=optional,javax.swing.text;resolution:=optional,javax.swing.tree;resolution:=optional debian/liblog4j1.2-java-doc.doc-base0000664000000000000000000000054312305054164014202 0ustar Document: liblog4j1.2-java-doc Title: Documenation for log4j 1.2 Author: The Apache log4j team Abstract: This is the documentation for log4j, a logging library for java. The documentation includes the javadoc API. Section: Programming Format: HTML Index: /usr/share/doc/liblog4j1.2-java/api/index.html Files: /usr/share/doc/liblog4j1.2-java/api/*.html debian/maven.ignoreRules0000664000000000000000000000006412305054164012516 0ustar com.sun.jmx jmxri jar * com.sun.jdmk jmxtools jar * debian/compat0000664000000000000000000000000212305054164010366 0ustar 7 debian/liblog4j1.2-java.poms0000664000000000000000000000036712305054164012744 0ustar pom.xml --has-package-version --java-lib --usj-name=log4j-1.2 --artifact=dist/lib/log4j-*.jar dist/lib/log4j.javadoc.pom --has-package-version --artifact=dist/lib/log4j.javadoc.jar --classifier=javadoc --ignore-pom --package=liblog4j-1.2-java-doc debian/liblog4j1.2-java-doc.install0000664000000000000000000000005012305054164014164 0ustar docs/api usr/share/doc/liblog4j1.2-java debian/README.Debian0000664000000000000000000000401312305054164011227 0ustar apache-log4j1.2 for Debian -------------------------- This is the apache logging library version 1.2. If your package depends on it please use the /usr/share/java/log4j-1.2.jar symlink. Some information from the INSTALL documentation: You can now test your installation by first compiling the following simple program. import org.apache.log4j.Logger; import org.apache.log4j.BasicConfigurator; public class Hello { static Logger logger = Logger.getLogger(Hello.class); public static void main(String argv[]) { BasicConfigurator.configure(); logger.debug("Hello world."); logger.info("What a beautiful day."); } } After compilation, try it out by issuing the command java Hello You should see log statements appearing on the console. Refer to the javadoc documentation and the user manual on how to include log statements in your own code. ================== log4j dependencies ================== Log4j is based on JDK 1.1 with the following additional requirements: ---------------------------- Package org.apache.log4j.xml ---------------------------- The DOMConfigurator is based on the DOM Level 1 API. The DOMConfigurator.configure(Element) method will work with any XML parser that will pass it a DOM tree. The DOMConfigurator.configure(String filename) method and its variants require a JAXP compatible XMLparser, for example the Apache Xerces parser. Compiling the DOMConfigurator requires the presence of a JAXP parser in the classpath. ------------ SMTPAppender ------------ The SMTPAppender relies on the JavaMail API. It has been tested with JavaMail API version 1.2. The JavaMail API requires the JavaBeans Activation Framework package. You can download the JavaMail API at: http://java.sun.com/products/javamail/ or just apt-get install libgnumail-java in Debian :-) -- Benoit Joly , Sat Apr 12 18:36:10 2003 debian/maven.rules0000664000000000000000000000011112305054164011343 0ustar s/ant/org.apache.ant/ * * s/.*/debian/ * log4j log4j * s/1\.2\..*/1.2.x/ debian/watch0000664000000000000000000000016612305054164010224 0ustar version=3 http://archive.apache.org/dist/logging/log4j/(1.2.[\d]+)/log4j-(1.2.[\d]+).tar.gz debian debian/orig-tar.sh debian/source/0000775000000000000000000000000012305057757010503 5ustar debian/source/format0000664000000000000000000000001412305054164011676 0ustar 3.0 (quilt) debian/README.Debian-source0000664000000000000000000000047012305054164012530 0ustar jakarta-log4j1.2 ---------------- The package includes jars and a Windows binary DLL, which are not be included in the original tarball. The orig-tar.sh in this directory is used to recreate a clean tarball by removing the jar and DLL. -- Kumar Appaiah , Wed, 26 Sep 2007 13:03:52 +0530 debian/patches/0000775000000000000000000000000012305057757010632 5ustar debian/patches/series0000664000000000000000000000007612305054164012037 0ustar build_fix.patch remove-activation-framework-dependency.patch debian/patches/build_fix.patch0000664000000000000000000000264512305054164013614 0ustar Description: Enables the compilation of the JMX classes and tweaks the Javadoc. Author: Thomas Koch Forwarded: no --- a/build.xml +++ b/build.xml @@ -167,12 +167,12 @@ - + @@ -497,7 +497,6 @@ protected="true" author="true" use="true" - overview="${docs.dest}/overview.html" doctitle="log4j version ${version}<br>API Specification" windowtitle="Log4j Version ${version}" header='<b>Log4j ${version}</b><!-- Licensed to the Apache Software Foundation (ASF) under one or more @@ -517,8 +516,6 @@ -->' bottom="Copyright 2000-2007 Apache Software Foundation."> - - debian/patches/remove-activation-framework-dependency.patch0000664000000000000000000000253012305054164021403 0ustar Description: Remove the dependency on the Activation Framework (integrated to Java 6 and later) Author: Emmanuel Bourg --- a/build.xml +++ b/build.xml @@ -118,7 +118,6 @@ - --- a/tests/build.xml +++ b/tests/build.xml @@ -35,7 +35,6 @@ - @@ -70,7 +69,6 @@ - debian/rules0000775000000000000000000000142412305057337010256 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/javahelper.mk include /usr/share/cdbs/1/class/ant.mk PACKAGE := $(DEB_SOURCE_PACKAGE) VERSION := $(DEB_UPSTREAM_VERSION) JAVA_HOME := /usr/lib/jvm/default-java ANT_HOME := /usr/share/ant DEB_JARS := gnumail DEB_ANT_BUILD_TARGET := jar javadoc DEB_ANT_ARGS := -Dversion=$(VERSION) clean:: -$(RM) -r docs -rm -rf debian/tmp rm -Rf debian/liblog4j-1.2-java-doc/* rm -Rf debian/log4j-${VERSION}.bar mh_clean common-build-indep:: cp pom.xml dist/lib/log4j.javadoc.pom jar cvf dist/lib/log4j.javadoc.jar -C docs/api/ . install/liblog4j1.2-java:: $(RM) dist/lib/log4j-*-sources.jar mh_install get-orig-source: -uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download debian/orig-tar.sh0000775000000000000000000000077212305054164011261 0ustar #!/bin/sh -e # called by uscan with '--upstream-version' VERSION=$2 ORIG_TAR=$3 TAR=../apache-log4j1.2_$VERSION.orig.tar.gz DIR=apache-log4j1.2-$VERSION.orig # clean up the upstream tarball tar xvzf $ORIG_TAR mv apache-log4j-$VERSION $DIR GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude 'site' --exclude '*.dll' $DIR rm -rf $DIR # move to directory 'tarballs' if [ -r .svn/deb-layout ]; then . .svn/deb-layout mv $3 $origDir echo "moved $3 to $origDir" fi exit 0 debian/log4j.bnd0000664000000000000000000000103612305054164010674 0ustar version=VERSION Export-Package: !org.apache.log4j.lf5.*,!org.apache.log4j.chainsaw.*,org.apache.log4j.* Import-Package: javax.mail.*;resolution:=optional,javax.management;resolution:=optional,javax.naming;resolution:=optional,com.ibm.uvm.tools;resolution:=optional,javax.swing.*;resolution:=optional Bundle-Version: ${version} Bundle-Description: Apache Log4j 1.2 Bundle-Name: Apache Log4j Bundle-SymbolicName: org.apache.log4j Bundle-DocURL: http://logging.apache.org/log4j/1.2 Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt debian/liblog4j-1.2-java-doc/0000775000000000000000000000000012305057757012671 5ustar debian/changelog0000664000000000000000000003202012314245734011044 0ustar apache-log4j1.2 (1.2.17-4ubuntu3) trusty; urgency=medium * d/liblog4j1.2.manifest: Add missing Bundle-SymbolicName to manifest. -- James Page Tue, 25 Mar 2014 09:26:51 +0000 apache-log4j1.2 (1.2.17-4ubuntu2) trusty; urgency=medium * d/liblog4j1.2.manifest,control,rules: Add OSGi manifest for log4j using javahelper (LP: #894302). -- James Page Mon, 03 Mar 2014 10:56:35 +0000 apache-log4j1.2 (1.2.17-4ubuntu1) trusty; urgency=low * Merge from Debian unstable (LP: #1246295). Remaining changes: - d/{rules,control}: Remove dependency on bnd and don't add OSGi headers to jar file. -- Yolanda Robla Tue, 30 Oct 2013 13:41:00 +0100 apache-log4j1.2 (1.2.17-4) unstable; urgency=low * Removed the dependency on libjboss-jmx-java since javax.management is now part of the JDK. * Enabled the compilation of the org.apache.log4j.jmx.Agent class * Added a description to build_fix.patch -- Emmanuel Bourg Tue, 27 Aug 2013 09:52:20 +0200 apache-log4j1.2 (1.2.17-3ubuntu1) saucy; urgency=low * Merge from Debian unstable. Remaining changes: - d/control: Depend on libmx4j-java (main) instead of libjboss-jmx-java (universe). - d/{rules,control}: Remove dependency on bnd and don't add OSGi headers to jar file. -- James Page Thu, 11 Jul 2013 11:29:55 +0100 apache-log4j1.2 (1.2.17-3) unstable; urgency=low * Removed the dependency on the Activation Framework (libgnujaf-java) * debian/rules: Improved the clean target * Use canonical URLs for the Vcs-* fields -- Emmanuel Bourg Thu, 16 May 2013 14:46:43 +0200 apache-log4j1.2 (1.2.17-2ubuntu1) saucy; urgency=low * Merge from Debian unstable. Remaining changes: - d/control: Depend on libmx4j-java (main) instead of libjboss-jmx-java (universe). - d/{rules,control}: Remove dependency on bnd and don't add OSGi headers to jar file. -- James Page Mon, 13 May 2013 09:57:05 +0100 apache-log4j1.2 (1.2.17-2) unstable; urgency=low * Team upload. * Upload to unstable. -- tony mancill Mon, 06 May 2013 20:43:34 -0700 apache-log4j1.2 (1.2.17-1) experimental; urgency=low * Team upload. * New upstream release * Refreshed the patch * debian/watch: Fixed the URL * Updated Standards-Version to 3.9.4 (no changes) [ Tony Mancill ] * Remove Michael Koch from Uploaders. (Closes: #653986) -- Emmanuel Bourg Tue, 02 Apr 2013 15:23:23 +0200 apache-log4j1.2 (1.2.16-3ubuntu2) quantal; urgency=low * No-change rebuild with openjdk-7 as default-jdk. -- James Page Fri, 18 May 2012 11:33:24 +0100 apache-log4j1.2 (1.2.16-3ubuntu1) precise; urgency=low * Merge from Debian testing (LP: #922890). Remaining changes: - d/control: Depend on libmx4j-java (main) instead of libjboss-jmx-java (universe). - d/{rules,control}: Remove dependency on bnd and don't add OSGi headers to jar file. -- James Page Thu, 09 Feb 2012 16:28:22 +0000 apache-log4j1.2 (1.2.16-3) unstable; urgency=low * Add Bundle-SymbolicName to jar manifest * Update Import-Package OSGi attribute * Add Jakub Adam to Uploaders * Updated Standards-Version to 3.9.2 * Removed Thomas Koch from Uploaders. Thanks for your contributions. -- Jakub Adam Sun, 27 Nov 2011 19:01:34 +0100 apache-log4j1.2 (1.2.16-2ubuntu2) precise; urgency=low * d/control: Really Depend on libmx4j-java (main) instead of libjboss-jmx-java (universe) to keep log4j in main. -- James Page Thu, 24 Nov 2011 11:53:42 +0000 apache-log4j1.2 (1.2.16-2ubuntu1) precise; urgency=low * Updates to retain log4j in Ubuntu main: - d/control: Depend on libmx4j-java (main) instead of libjboss-jmx-java (universe). - d/{rules,control}: Remove dependency on bnd and don't add OSGi headers to jar file. -- James Page Thu, 24 Nov 2011 09:39:36 +0000 apache-log4j1.2 (1.2.16-2) unstable; urgency=low [ Ludovic Claude ] * Add myself to uploaders * Rename source package to apache-log4j1.2 (Closes: #598007) * d/maven.rules: use * instead of jar to match log4j, as version 1.2.16 has a pom type of 'bundle' and this means that the version installed in the Maven repository is 'debian' instead of '1.2.x' (Closes: #618263) * d/control: update Homepage to reflect the new location of log4j * include OSGi metadata in the jar, add Build-Depends on bnd * Add --has-package-version to libapache-log4j1.2-java.poms * Deploy javadoc jar into the Maven repository [ Niels Thykier ] * Updated Vcs-* fields. [ Torsten Werner ] * Remove Kalle from Uploaders list. * Do no longer build the liblog4j1.2-java-gcj package. * Fix typo in Description. -- Torsten Werner Fri, 23 Sep 2011 23:03:09 +0200 jakarta-log4j (1.2.16-1) experimental; urgency=low * New upstream release * debian/control: + Standards version is now 3.9.1 (No changes needed). + Recommends: liblog4j1.2-java-gcj downgraded to Suggests (Closes: #583260) + Add Suggests on liblog4j1.2-java-doc * Remove pom.xml.patch, changes applied upstream, refresh build.xml.patch -- Ludovic Claude Fri, 14 May 2010 00:11:30 +0200 jakarta-log4j (1.2.15-11) unstable; urgency=low * Team upload. * Move the patches to quilt, add a Build-Depends on quilt * JMX package is built and patch from Thomas Koch has been applied with changes (Closes: #503837) * Use default-jdk-doc instead of classpath-doc/openjdk-6-doc (Closes: #567275) * Remove dependencies on all java runtimes and java-common (Closes: #576737) * Source format 3.0 (quilt) - removed quilt as build dependency - removed include patchsys-quilt.mk in d/rules -- Ludovic Claude Mon, 05 Apr 2010 16:30:15 +0200 jakarta-log4j (1.2.15-10) unstable; urgency=low * Fixed Maven support (Closes: #571046) - d/m.ignoreRules: added JMX stuff - pom.xml patch : javax.jms and java.mail set as optional * Standards-Version to 3.8.4 * debhelper compat to 7 -- Gabriele Giacone <1o5g4r8o@gmail.com> Wed, 24 Feb 2010 02:33:46 +0100 jakarta-log4j (1.2.15-9) unstable; urgency=low * Added libjboss-jmx-java to suggests: -- Thomas Koch Thu, 14 Jan 2010 15:51:45 +0100 jakarta-log4j (1.2.15-8) unstable; urgency=low * Build with jmx support -- Thomas Koch Tue, 12 Jan 2010 11:02:21 +0100 jakarta-log4j (1.2.15-7) unstable; urgency=low * Upload to unstable -- Torsten Werner Sun, 09 Aug 2009 11:25:57 +0200 jakarta-log4j (1.2.15-6) experimental; urgency=low [ Ludovic Claude ] * Add the Maven POM to the package * Add a Build-Depends dependency on maven-repo-helper * Move API documentation to /usr/share/doc/liblog4j1.2-java/api [ Torsten Werner ] * Fix doc-base file. -- Torsten Werner Sun, 02 Aug 2009 21:51:13 +0200 jakarta-log4j (1.2.15-5) unstable; urgency=low * Add myself to Uploaders. * Do no longer quote the full text of the Apache-2.0 license. * Add missing Depends: ${misc:Depends}. * Change Section: java. * Update Standards-Version: 3.8.2 (no changes). * Fix spelling api -> API. -- Torsten Werner Thu, 30 Jul 2009 18:24:10 +0200 jakarta-log4j (1.2.15-4) unstable; urgency=low * liblog4j-java: Depend on default-jre-headless as the preferred runtime, keep the existing alternatives for now. -- Matthias Klose Mon, 04 Aug 2008 23:55:26 +0200 jakarta-log4j (1.2.15-3) unstable; urgency=medium * debian/control: + Use default-java-jdk in place of java-gcj-compat-dev. (Closes: #477866) + Switch to use Varun and Kumar's debian.org addresses. + Standards version is now 3.7.3 (No changes needed). + Use Vcs-Broswer and Vcs-Svn in place of XS-Vcs-*. * debian/rules: + Switch JAVA_HOME location to /usr/lib/jvm/default-java. * debian/copright: + Update to UTF-8, and add a copyright for the Apache Software Foundartion. -- Kumar Appaiah Sun, 27 Apr 2008 17:35:01 +0530 jakarta-log4j (1.2.15-2) unstable; urgency=low [ Matthias Klose ] * Really build the native jars, don't ship an empty package. Closes: #453941. -- Kumar Appaiah Sun, 02 Dec 2007 20:24:35 +0530 jakarta-log4j (1.2.15-1) unstable; urgency=low [ Kumar Appaiah ] * New upstream release. * debian/compat: bumped to 5. * debian/watch: Added file. * debian/control: + Added Kumar Appaiah and Varun Hiremath to Uploaders. + Moved all build dependencencies to Build-Depends. + Depend on cdbs. + Added Homepage, XS-Vcs-Svn and XS-Vcs-Browser fields. * debian/liblog4j1.2-java-doc.doc-base: Specigy API doc location. * debian/liblog4j1.2-java.links: Removed. Functionality in debian/rules. * debian/orig-tar.sh: Added to ease repackaging. * debian/README.Debian-source: Added to explain repackaging. * debian/patches/01_build_fix.patch: Fix javadoc issues and compiler target versions. * debian/rules: + Move to cdbs. + Ensure we build native jars. + Ensure the generated docs are removed to prevent an FTBFS on successive builds. [ Varun Hiremath ] * Ensure upstream javadocs are removed while repackaging. -- Varun Hiremath Fri, 28 Sep 2007 15:30:56 +0530 jakarta-log4j (1.2.13-5) unstable; urgency=low * Rename source package. Closes: #308339. * Updated Standard-Version to 3.7.2. -- Michael Koch Sun, 15 Jul 2007 15:35:02 +0200 jakarta-log4j1.2 (1.2.13-4) unstable; urgency=low * Build a liblog4j1.2-java-gcj package. Closes: #427243. * Updated package descriptions. * Removed Wolfgang and added myself to Uploaders. -- Michael Koch Sat, 30 Jun 2007 10:45:43 -0100 jakarta-log4j1.2 (1.2.13-3) unstable; urgency=low * Build using java-gcj-compat-dev (merged from Ubuntu). -- Matthias Klose Fri, 8 Dec 2006 10:45:35 +0100 jakarta-log4j1.2 (1.2.13-2) unstable; urgency=low * Added binary-arch build target (noop) (closes: #395615) -- Kalle Kivimaa Sat, 28 Oct 2006 08:30:00 +0300 jakarta-log4j1.2 (1.2.13-1) unstable; urgency=low * New upstream release * kaffe compiler transition * Remove build dependencies on libcrimson-java, libjaxp1.2-java (not needed) * Build javadoc from source * Updated README.Debian to what we actually build -- Wolfgang Baer Wed, 18 Jan 2006 17:33:47 +0100 jakarta-log4j1.2 (1.2.12-1) unstable; urgency=low * New upstream release (closes: #328253) + Apache License 2.0 - updated debian/copyright * Use kaffe for building instead of jikes alone Fixes the FTBS (closes: #334634) * Remove useless parts from README.Debian * Standards-Version 3.6.2 (no changes) * Don't depend on java-common * Remove outdated log4j 1.1 section from description * Register manual with doc-base * Add myself to uploaders -- Wolfgang Baer Fri, 28 Oct 2005 21:52:06 +0200 jakarta-log4j1.2 (1.2.9-1) unstable; urgency=low * New upstream version (differs from 1.2.8 only in that some methods are deprecated in preparation for 1.3) * Javadocs are now retained from the upstream distribution. This is just a temporary measure until gjdoc works (closes: #265746) -- Kalle Kivimaa Sat, 13 Nov 2004 16:00:00 +0200 jakarta-log4j1.2 (1.2.8-7) unstable; urgency=high * Javadocs are now correctly generated (closes: #265746) -- Kalle Kivimaa Sun, 15 Aug 2004 15:00:00 +0300 jakarta-log4j1.2 (1.2.8-6) unstable; urgency=high * rules script now correctly includes log4j.dtd (closes: #265704) * Bogus libmx4j-java classes removed from jikes classpath (closes: #265710) -- Kalle Kivimaa Sat, 14 Aug 2004 18:00:00 +0300 jakarta-log4j1.2 (1.2.8-5) unstable; urgency=low * rules script was missing two removes related to bug #221236. -- Kalle Kivimaa Fri, 13 Aug 2004 12:30:00 +0300 jakarta-log4j1.2 (1.2.8-4) unstable; urgency=low * Builds from source (closes: #221236) (removed chainsaw and lf5 parts, these will be available in liblog4j1.2-contrib-java) * Adopted the package to pkg-java-maintainers (closes: #263869) -- Kalle Kivimaa Fri, 13 Aug 2004 11:00:00 +0300 jakarta-log4j1.2 (1.2.8-3) unstable; urgency=low * Changed section from contrib to main. (closes: #237362, #230441) * Modified depends to depend on java1-runtime or java2-runtime. -- Benoit Joly Sat, 27 Mar 2004 15:42:06 -0500 jakarta-log4j1.2 (1.2.8-2) unstable; urgency=low * New description. -- Benoit Joly Wed, 23 Apr 2003 00:14:26 -0400 jakarta-log4j1.2 (1.2.8-1) unstable; urgency=low * New package for version 1.2 of the log4j API. (closes: #188708) -- Benoit Joly Thu, 10 Apr 2003 00:03:47 -0400 debian/control0000664000000000000000000000422212305057351010574 0ustar Source: apache-log4j1.2 Section: java Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Java Maintainers Uploaders: Varun Hiremath , Kumar Appaiah , Torsten Werner , Ludovic Claude , Jakub Adam , Emmanuel Bourg Build-Depends: debhelper (>= 7), cdbs, default-jdk, ant, libgnumail-java, maven-repo-helper, default-jdk-doc, javahelper Standards-Version: 3.9.4 Homepage: http://logging.apache.org/log4j/1.2/ Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/apache-log4j1.2 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/apache-log4j1.2 Package: liblog4j1.2-java Architecture: all Depends: ${misc:Depends} Suggests: liblog4j1.2-java-doc, libgnumail-java Description: Logging library for java log4j is a tool to help the programmer output log statements to a variety of output targets. . It is possible to enable logging at runtime without modifying the application binary. The log4j package is designed so that log statements can remain in shipped code without incurring a high performance cost. . One of the distinctive features of log4j is the notion of hierarchical loggers. Using loggers it is possible to selectively control which log statements are output at arbitrary granularity. . Log4j can output to: a file, a rolling file, a database with a JDBC driver, many output asynchronously, a JMS Topic, a swing based logging console, the NT event log, /dev/null, a SMTP server (using javamail), a socket server, syslog, telnet daemon and stdout. . The format of the output can be defined using one of the various layout (or user defined layout) like: simple text, html, date, pattern defined and XML. Package: liblog4j1.2-java-doc Architecture: all Section: doc Depends: ${misc:Depends}, default-jdk-doc Description: Documentation for liblog4j1.2-java The javadoc API documentation for the logging library from the Apache Jakarta project. The documentation is for the version 1.2 of the log4j API.