[pkg-java] r13385 - in tags/logback: . 1:0.9.28-1/debian
Damien Raude-Morvan
drazzib at alioth.debian.org
Sat Mar 5 17:39:15 UTC 2011
Author: drazzib
Date: 2011-03-05 17:39:11 +0000 (Sat, 05 Mar 2011)
New Revision: 13385
Added:
tags/logback/1:0.9.28-1/
tags/logback/1:0.9.28-1/debian/build.xml
tags/logback/1:0.9.28-1/debian/changelog
tags/logback/1:0.9.28-1/debian/control
tags/logback/1:0.9.28-1/debian/rules
Removed:
tags/logback/1:0.9.28-1/debian/build.xml
tags/logback/1:0.9.28-1/debian/changelog
tags/logback/1:0.9.28-1/debian/control
tags/logback/1:0.9.28-1/debian/rules
Log:
[svn-buildpackage] Tagging logback 1:0.9.28-1
Deleted: tags/logback/1:0.9.28-1/debian/build.xml
===================================================================
--- trunk/logback/debian/build.xml 2011-03-01 13:57:28 UTC (rev 13373)
+++ tags/logback/1:0.9.28-1/debian/build.xml 2011-03-05 17:39:11 UTC (rev 13385)
@@ -1,102 +0,0 @@
-<?xml version="1.0"?>
-<project name="logback" basedir="..">
-
-<target name="init">
- <property name="build.dir" value="build"/>
- <property name="dist.dir" value="dist"/>
-
- <property name="core.src.dir" value="logback-core/src/main"/>
- <property name="core.build.dir" value="${build.dir}/core"/>
- <property name="core.jar" value="${dist.dir}/${deb.package}-${deb.version}-core.jar"/>
-
- <property name="classic.src.dir" value="logback-classic/src/main"/>
- <property name="classic.build.dir" value="${build.dir}/classic"/>
- <property name="classic.jar" value="${dist.dir}/${deb.package}-${deb.version}-classic.jar"/>
-
- <property name="access.src.dir" value="logback-access/src/main"/>
- <property name="access.build.dir" value="${build.dir}/access"/>
- <property name="access.jar" value="${dist.dir}/${deb.package}-${deb.version}-access.jar"/>
-</target>
-
-<target name="compile.core" depends="init">
- <mkdir dir="${core.build.dir}"/>
- <javac srcdir="${core.src.dir}"
- destdir="${core.build.dir}"
- classpath="${fam.build.dir}"
- source="1.5" target="1.5"
- debug="on">
- </javac>
-</target>
-
-<target name="compile.classic" depends="compile.core">
- <mkdir dir="${classic.build.dir}"/>
- <javac srcdir="${classic.src.dir}"
- destdir="${classic.build.dir}"
- classpath="${core.build.dir}"
- source="1.5" target="1.5"
- debug="on">
- </javac>
-</target>
-
-<target name="compile.access" depends="compile.core">
- <mkdir dir="${access.build.dir}"/>
- <javac srcdir="${access.src.dir}"
- destdir="${access.build.dir}"
- classpath="${core.build.dir}"
- source="1.5" target="1.5"
- debug="on">
- </javac>
-</target>
-
-<target name="jar.core" depends="compile.core">
- <jar jarfile="${core.jar}"
- basedir="${core.build.dir}" />
-</target>
-
-<target name="jar.classic" depends="compile.classic">
- <jar jarfile="${classic.jar}"
- basedir="${classic.build.dir}" />
-</target>
-
-<target name="jar.access" depends="compile.access">
- <jar jarfile="${access.jar}"
- basedir="${access.build.dir}" />
-</target>
-
-<target name="jar.all" depends="jar.core, jar.classic"> <!-- , jar.access -->
-</target>
-
-<target name="javadoc">
-
- <javadoc
- packagenames="*"
- destdir="${dist.dir}/api"
- access="protected"
- old="false"
- verbose="false"
- version="true"
- use="true"
- author="true"
- >
- <fileset dir=".">
- <include name="${core.src.dir}/**/*.java"/>
- <include name="${classic.src.dir}/**/*.java"/>
- <!--<include name="${access.src.dir}/**/*.java"/>-->
- </fileset>
- </javadoc>
-
-</target>
-
-
-
-<target name="clean" depends="init">
- <delete dir="${build.dir}"/>
- <delete dir="${dist.dir}"/>
-
- <mkdir dir="${build.dir}"/>
- <mkdir dir="${dist.dir}"/>
-</target>
-
-
-
-</project>
Copied: tags/logback/1:0.9.28-1/debian/build.xml (from rev 13384, trunk/logback/debian/build.xml)
===================================================================
--- tags/logback/1:0.9.28-1/debian/build.xml (rev 0)
+++ tags/logback/1:0.9.28-1/debian/build.xml 2011-03-05 17:39:11 UTC (rev 13385)
@@ -0,0 +1,105 @@
+<?xml version="1.0"?>
+<project name="logback" basedir="..">
+
+<taskdef name="groovyc"
+ classname="org.codehaus.groovy.ant.Groovyc"/>
+
+<target name="init">
+ <property name="build.dir" value="build"/>
+ <property name="dist.dir" value="dist"/>
+
+ <property name="core.src.dir" value="logback-core/src/main"/>
+ <property name="core.build.dir" value="${build.dir}/core"/>
+ <property name="core.jar" value="${dist.dir}/${deb.package}-${deb.version}-core.jar"/>
+
+ <property name="classic.src.dir" value="logback-classic/src/main"/>
+ <property name="classic.build.dir" value="${build.dir}/classic"/>
+ <property name="classic.jar" value="${dist.dir}/${deb.package}-${deb.version}-classic.jar"/>
+
+ <property name="access.src.dir" value="logback-access/src/main"/>
+ <property name="access.build.dir" value="${build.dir}/access"/>
+ <property name="access.jar" value="${dist.dir}/${deb.package}-${deb.version}-access.jar"/>
+</target>
+
+<target name="compile.core" depends="init">
+ <mkdir dir="${core.build.dir}"/>
+ <javac srcdir="${core.src.dir}"
+ destdir="${core.build.dir}"
+ classpath="${fam.build.dir}"
+ source="1.5" target="1.5"
+ debug="on">
+ </javac>
+</target>
+
+<target name="compile.classic" depends="compile.core">
+ <mkdir dir="${classic.build.dir}"/>
+ <groovyc srcdir="${classic.src.dir}" destdir="${classic.build.dir}">
+ <javac classpath="${core.build.dir}"
+ source="1.5" target="1.5"
+ debug="on">
+ </javac>
+ </groovyc>
+</target>
+
+<target name="compile.access" depends="compile.core">
+ <mkdir dir="${access.build.dir}"/>
+ <javac srcdir="${access.src.dir}"
+ destdir="${access.build.dir}"
+ classpath="${core.build.dir}"
+ source="1.5" target="1.5"
+ debug="on">
+ </javac>
+</target>
+
+<target name="jar.core" depends="compile.core">
+ <jar jarfile="${core.jar}"
+ basedir="${core.build.dir}" />
+</target>
+
+<target name="jar.classic" depends="compile.classic">
+ <jar jarfile="${classic.jar}"
+ basedir="${classic.build.dir}" />
+</target>
+
+<target name="jar.access" depends="compile.access">
+ <jar jarfile="${access.jar}"
+ basedir="${access.build.dir}" />
+</target>
+
+<target name="jar.all" depends="jar.core, jar.classic"> <!-- , jar.access -->
+</target>
+
+<target name="javadoc">
+
+ <javadoc
+ packagenames="*"
+ destdir="${dist.dir}/api"
+ access="protected"
+ old="false"
+ verbose="false"
+ version="true"
+ use="true"
+ author="true"
+ >
+ <fileset dir=".">
+ <include name="${core.src.dir}/**/*.java"/>
+ <include name="${classic.src.dir}/**/*.java"/>
+ <!--<include name="${access.src.dir}/**/*.java"/>-->
+ </fileset>
+ </javadoc>
+
+</target>
+
+
+
+<target name="clean" depends="init">
+ <delete dir="${build.dir}"/>
+ <delete dir="${dist.dir}"/>
+
+ <mkdir dir="${build.dir}"/>
+ <mkdir dir="${dist.dir}"/>
+</target>
+
+
+
+</project>
Deleted: tags/logback/1:0.9.28-1/debian/changelog
===================================================================
--- trunk/logback/debian/changelog 2011-03-01 13:57:28 UTC (rev 13373)
+++ tags/logback/1:0.9.28-1/debian/changelog 2011-03-05 17:39:11 UTC (rev 13385)
@@ -1,53 +0,0 @@
-logback (1:0.9.18+dak1-1) unstable; urgency=low
-
- * Revert to 0.9.18 release.
- - 0.9.20 as incompatible API changes:
- upstream removed methods in StaticLoggerBinder
- which cause FTBFS on red5 package (See: #577859).
-
- -- Damien Raude-Morvan <drazzib at debian.org> Mon, 26 Apr 2010 22:03:01 +0200
-
-logback (0.9.20-1) unstable; urgency=low
-
- * Team upload
- * New upstream release
- * Change 'maintainers' into 'Maintainers'.
- * Switch to source format 3.0.
- * Update Standards-Version: 3.8.4
-
- -- Torsten Werner <twerner at debian.org> Sun, 11 Apr 2010 21:12:47 +0200
-
-logback (0.9.18-1) unstable; urgency=low
-
- * New upstream release.
- - Now dual-licensed under the EPL 1.0 and LGPL 2.1
- - Update debian/copyright
- * Bump debhelper version to >= 7
- * Extract debian/rules get-orig-source script into debian/orig-tar.sh
- and debian/orig-tar.exclude
-
- -- Damien Raude-Morvan <drazzib at debian.org> Thu, 03 Dec 2009 23:24:54 +0100
-
-logback (0.9.17-1) unstable; urgency=low
-
- * New upstream release.
- * Set Maintainer field to Debian Java Team
- * Add myself as Uploaders
- * Build-Depends on default-jdk instead of default-jdk-builddep
- because we don't build a native GCJ package.
- * Bump Standards-Version to 3.8.3 (no changes needed)
- * Documentation:
- - Move api documentation to /usr/share/doc/liblogback-java/api/
- - Register Logback manual with doc-base
- * Maven POMs:
- - Add a Build-Depends-Indep dependency on maven-repo-helper
- - Use mh_installpoms and mh_installjar to install the POM and the jar to the
- Maven repository
-
- -- Damien Raude-Morvan <drazzib at debian.org> Fri, 25 Sep 2009 00:19:01 +0200
-
-logback (0.9.15-1) unstable; urgency=low
-
- * Initial release. (Closes: #506569)
-
- -- Damien Raude-Morvan <drazzib at drazzib.com> Sun, 15 Mar 2009 20:43:52 +0100
Copied: tags/logback/1:0.9.28-1/debian/changelog (from rev 13384, trunk/logback/debian/changelog)
===================================================================
--- tags/logback/1:0.9.28-1/debian/changelog (rev 0)
+++ tags/logback/1:0.9.28-1/debian/changelog 2011-03-05 17:39:11 UTC (rev 13385)
@@ -0,0 +1,62 @@
+logback (1:0.9.28-1) unstable; urgency=low
+
+ * New upstream release.
+ * Update Standards-Version: 3.9.1 (no changes needed).
+ * d/control: Add Build-Depends on groovy.
+ * d/rules: Add groovy to DEB_JARS.
+
+ -- Damien Raude-Morvan <drazzib at debian.org> Fri, 04 Mar 2011 23:09:14 +0100
+
+logback (1:0.9.18+dak1-1) unstable; urgency=low
+
+ * Revert to 0.9.18 release.
+ - 0.9.20 as incompatible API changes:
+ upstream removed methods in StaticLoggerBinder
+ which cause FTBFS on red5 package (See: #577859).
+
+ -- Damien Raude-Morvan <drazzib at debian.org> Mon, 26 Apr 2010 22:03:01 +0200
+
+logback (0.9.20-1) unstable; urgency=low
+
+ * Team upload
+ * New upstream release
+ * Change 'maintainers' into 'Maintainers'.
+ * Switch to source format 3.0.
+ * Update Standards-Version: 3.8.4
+
+ -- Torsten Werner <twerner at debian.org> Sun, 11 Apr 2010 21:12:47 +0200
+
+logback (0.9.18-1) unstable; urgency=low
+
+ * New upstream release.
+ - Now dual-licensed under the EPL 1.0 and LGPL 2.1
+ - Update debian/copyright
+ * Bump debhelper version to >= 7
+ * Extract debian/rules get-orig-source script into debian/orig-tar.sh
+ and debian/orig-tar.exclude
+
+ -- Damien Raude-Morvan <drazzib at debian.org> Thu, 03 Dec 2009 23:24:54 +0100
+
+logback (0.9.17-1) unstable; urgency=low
+
+ * New upstream release.
+ * Set Maintainer field to Debian Java Team
+ * Add myself as Uploaders
+ * Build-Depends on default-jdk instead of default-jdk-builddep
+ because we don't build a native GCJ package.
+ * Bump Standards-Version to 3.8.3 (no changes needed)
+ * Documentation:
+ - Move api documentation to /usr/share/doc/liblogback-java/api/
+ - Register Logback manual with doc-base
+ * Maven POMs:
+ - Add a Build-Depends-Indep dependency on maven-repo-helper
+ - Use mh_installpoms and mh_installjar to install the POM and the jar to the
+ Maven repository
+
+ -- Damien Raude-Morvan <drazzib at debian.org> Fri, 25 Sep 2009 00:19:01 +0200
+
+logback (0.9.15-1) unstable; urgency=low
+
+ * Initial release. (Closes: #506569)
+
+ -- Damien Raude-Morvan <drazzib at drazzib.com> Sun, 15 Mar 2009 20:43:52 +0100
Deleted: tags/logback/1:0.9.28-1/debian/control
===================================================================
--- trunk/logback/debian/control 2011-03-01 13:57:28 UTC (rev 13373)
+++ tags/logback/1:0.9.28-1/debian/control 2011-03-05 17:39:11 UTC (rev 13385)
@@ -1,50 +0,0 @@
-Source: logback
-Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Damien Raude-Morvan <drazzib at debian.org>
-Standards-Version: 3.8.4
-Section: java
-Priority: optional
-Build-Depends: default-jdk, ant, debhelper (>= 7), cdbs
-Build-Depends-Indep: janino, glassfish-javaee, libslf4j-java, maven-repo-helper
-Homepage: http://logback.qos.ch/
-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/logback
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/logback
-
-Package: liblogback-java
-Architecture: all
-Depends: ${misc:Depends}, libslf4j-java
-Suggests: glassfish-javaee, janino
-Description: flexible logging library for Java
- Logback is a reliable, generic, fast and flexible logging library for Java.
- It's intended as a successor to the popular log4j project.
- .
- The logback-core module lays the groundwork for the other two modules.
- .
- The logback-classic module can be assimilated to a significantly improved
- version of log4j. Moreover, logback-classic natively implements the SLF4J API
- so that you can readily switch back and forth between logback and other
- logging systems such as log4j or java.util.logging (JUL).
- .
- The logback-access module integrates with Servlet containers, such as Tomcat
- and Jetty, to provide HTTP-access log functionality.
-
-Package: liblogback-java-doc
-Architecture: all
-Section: doc
-Depends: ${misc:Depends}
-Suggests: liblogback-java
-Description: flexible logging library for Java - documentation
- Logback is a reliable, generic, fast and flexible logging library for Java.
- It's intended as a successor to the popular log4j project.
- .
- The logback-core module lays the groundwork for the other two modules.
- .
- The logback-classic module can be assimilated to a significantly improved
- version of log4j. Moreover, logback-classic natively implements the SLF4J API
- so that you can readily switch back and forth between logback and other
- logging systems such as log4j or java.util.logging (JUL).
- .
- The logback-access module integrates with Servlet containers, such as Tomcat
- and Jetty, to provide HTTP-access log functionality.
- .
- This package provides the API documentation and manual for Logback.
Copied: tags/logback/1:0.9.28-1/debian/control (from rev 13384, trunk/logback/debian/control)
===================================================================
--- tags/logback/1:0.9.28-1/debian/control (rev 0)
+++ tags/logback/1:0.9.28-1/debian/control 2011-03-05 17:39:11 UTC (rev 13385)
@@ -0,0 +1,50 @@
+Source: logback
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Damien Raude-Morvan <drazzib at debian.org>
+Standards-Version: 3.9.1
+Section: java
+Priority: optional
+Build-Depends: default-jdk, ant, debhelper (>= 7), cdbs
+Build-Depends-Indep: janino, glassfish-javaee, libslf4j-java (>= 1.6.1), groovy, maven-repo-helper
+Homepage: http://logback.qos.ch/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/logback
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/logback
+
+Package: liblogback-java
+Architecture: all
+Depends: ${misc:Depends}, libslf4j-java
+Suggests: glassfish-javaee, janino
+Description: flexible logging library for Java
+ Logback is a reliable, generic, fast and flexible logging library for Java.
+ It's intended as a successor to the popular log4j project.
+ .
+ The logback-core module lays the groundwork for the other two modules.
+ .
+ The logback-classic module can be assimilated to a significantly improved
+ version of log4j. Moreover, logback-classic natively implements the SLF4J API
+ so that you can readily switch back and forth between logback and other
+ logging systems such as log4j or java.util.logging (JUL).
+ .
+ The logback-access module integrates with Servlet containers, such as Tomcat
+ and Jetty, to provide HTTP-access log functionality.
+
+Package: liblogback-java-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends}
+Suggests: liblogback-java
+Description: flexible logging library for Java - documentation
+ Logback is a reliable, generic, fast and flexible logging library for Java.
+ It's intended as a successor to the popular log4j project.
+ .
+ The logback-core module lays the groundwork for the other two modules.
+ .
+ The logback-classic module can be assimilated to a significantly improved
+ version of log4j. Moreover, logback-classic natively implements the SLF4J API
+ so that you can readily switch back and forth between logback and other
+ logging systems such as log4j or java.util.logging (JUL).
+ .
+ The logback-access module integrates with Servlet containers, such as Tomcat
+ and Jetty, to provide HTTP-access log functionality.
+ .
+ This package provides the API documentation and manual for Logback.
Deleted: tags/logback/1:0.9.28-1/debian/rules
===================================================================
--- trunk/logback/debian/rules 2011-03-01 13:57:28 UTC (rev 13373)
+++ tags/logback/1:0.9.28-1/debian/rules 2011-03-05 17:39:11 UTC (rev 13385)
@@ -1,28 +0,0 @@
-#!/usr/bin/make -f
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/ant.mk
-
-JAVA_HOME := /usr/lib/jvm/default-java/
-ANT_HOME := /usr/share/ant
-
-# janino glassfish-mail = core module
-# slf4j-api glassfish-javaee = classic module
-DEB_JARS := janino glassfish-mail slf4j-api glassfish-javaee
-
-DEB_ANT_BUILD_TARGET := jar.all javadoc
-DEB_ANT_CLEAN_TARGET := clean
-DEB_ANT_BUILDFILE := debian/build.xml
-DEB_ANT_ARGS := -Ddeb.package=$(DEB_SOURCE_PACKAGE) -Ddeb.version=$(DEB_UPSTREAM_VERSION)
-
-binary-post-install/liblogback-java::
- mh_installpoms -pliblogback-java
- mh_installjar -pliblogback-java -l logback-core/pom.xml dist/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)-core.jar
- mh_installjar -pliblogback-java -l logback-classic/pom.xml dist/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)-classic.jar
-
-clean::
- -rm -rf debian/tmp
-
-get-orig-source:
- uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename
-
Copied: tags/logback/1:0.9.28-1/debian/rules (from rev 13384, trunk/logback/debian/rules)
===================================================================
--- tags/logback/1:0.9.28-1/debian/rules (rev 0)
+++ tags/logback/1:0.9.28-1/debian/rules 2011-03-05 17:39:11 UTC (rev 13385)
@@ -0,0 +1,29 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+JAVA_HOME := /usr/lib/jvm/default-java/
+ANT_HOME := /usr/share/ant
+
+# janino glassfish-mail = core module
+# slf4j-api glassfish-javaee = classic module
+# groovy asm3-all commons-cli antlr = classic module "gaffer"
+DEB_JARS := janino glassfish-mail slf4j-api glassfish-javaee groovy asm3-all commons-cli antlr
+
+DEB_ANT_BUILD_TARGET := jar.all javadoc
+DEB_ANT_CLEAN_TARGET := clean
+DEB_ANT_BUILDFILE := debian/build.xml
+DEB_ANT_ARGS := -Ddeb.package=$(DEB_SOURCE_PACKAGE) -Ddeb.version=$(DEB_UPSTREAM_VERSION)
+
+binary-post-install/liblogback-java::
+ mh_installpoms -pliblogback-java
+ mh_installjar -pliblogback-java -l logback-core/pom.xml dist/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)-core.jar
+ mh_installjar -pliblogback-java -l logback-classic/pom.xml dist/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION)-classic.jar
+
+clean::
+ -rm -rf debian/tmp
+
+get-orig-source:
+ uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename
+
More information about the pkg-java-commits
mailing list