[pkg-java] r16081 - in tags/libcommons-compress-java: . 1.2-2/debian
Damien Raude-Morvan
drazzib at alioth.debian.org
Tue May 29 23:32:51 UTC 2012
Author: drazzib
Date: 2012-05-29 23:32:51 +0000 (Tue, 29 May 2012)
New Revision: 16081
Added:
tags/libcommons-compress-java/1.2-2/
tags/libcommons-compress-java/1.2-2/debian/ant.properties
tags/libcommons-compress-java/1.2-2/debian/build.xml
tags/libcommons-compress-java/1.2-2/debian/changelog
tags/libcommons-compress-java/1.2-2/debian/control
tags/libcommons-compress-java/1.2-2/debian/copyright
tags/libcommons-compress-java/1.2-2/debian/rules
Removed:
tags/libcommons-compress-java/1.2-2/debian/ant.properties
tags/libcommons-compress-java/1.2-2/debian/build.xml
tags/libcommons-compress-java/1.2-2/debian/changelog
tags/libcommons-compress-java/1.2-2/debian/control
tags/libcommons-compress-java/1.2-2/debian/copyright
tags/libcommons-compress-java/1.2-2/debian/rules
Log:
[svn-buildpackage] Tagging libcommons-compress-java 1.2-2
Deleted: tags/libcommons-compress-java/1.2-2/debian/ant.properties
===================================================================
--- trunk/libcommons-compress-java/debian/ant.properties 2012-05-28 23:09:51 UTC (rev 16073)
+++ tags/libcommons-compress-java/1.2-2/debian/ant.properties 2012-05-29 23:32:51 UTC (rev 16081)
@@ -1,4 +0,0 @@
-project.name=commons-compress
-class.dir=build
-source.dir=src/main/java
-jar=commons-compress.jar
Copied: tags/libcommons-compress-java/1.2-2/debian/ant.properties (from rev 16080, trunk/libcommons-compress-java/debian/ant.properties)
===================================================================
--- tags/libcommons-compress-java/1.2-2/debian/ant.properties (rev 0)
+++ tags/libcommons-compress-java/1.2-2/debian/ant.properties 2012-05-29 23:32:51 UTC (rev 16081)
@@ -0,0 +1,9 @@
+project.name=commons-compress
+class.dir=build
+source.dir=src/main/java
+jar=commons-compress.jar
+test.dir=test
+test.class.dir=${test.dir}/build
+test.source.dir=src/test/java
+test.res.dir=src/test/resources
+test.results.dir=${test.dir}/results
Deleted: tags/libcommons-compress-java/1.2-2/debian/build.xml
===================================================================
--- trunk/libcommons-compress-java/debian/build.xml 2012-05-28 23:09:51 UTC (rev 16073)
+++ tags/libcommons-compress-java/1.2-2/debian/build.xml 2012-05-29 23:32:51 UTC (rev 16081)
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<project default="jar" name="${project.name}" basedir="..">
-
- <target name="clean">
- <delete dir="${class.dir}" quiet="true"/>
- </target>
-
- <target name="compile" description="o Compile the source files">
- <mkdir dir="${class.dir}"/>
- <javac srcdir="${source.dir}" destdir="${class.dir}"
- debug="true" source="1.5"/>
- </target>
-
- <target name="jar" description="o Create the jar" depends="compile">
- <jar jarfile="${jar}">
- <fileset dir="${class.dir}">
- <include name="**"/>
- </fileset>
- </jar>
- </target>
-
-</project>
Copied: tags/libcommons-compress-java/1.2-2/debian/build.xml (from rev 16080, trunk/libcommons-compress-java/debian/build.xml)
===================================================================
--- tags/libcommons-compress-java/1.2-2/debian/build.xml (rev 0)
+++ tags/libcommons-compress-java/1.2-2/debian/build.xml 2012-05-29 23:32:51 UTC (rev 16081)
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="package" name="${project.name}" basedir="..">
+
+ <target name="clean">
+ <delete dir="${class.dir}" quiet="true"/>
+ <delete dir="${test.dir}" quiet="true"/>
+ </target>
+
+ <target name="compile" description="o Compile the source files">
+ <mkdir dir="${class.dir}"/>
+ <javac srcdir="${source.dir}" destdir="${class.dir}"
+ debug="true" source="1.5"/>
+ </target>
+
+ <target name="test-compile" description="o Compile the test source files" depends="compile">
+ <mkdir dir="${test.class.dir}"/>
+ <javac srcdir="${test.source.dir}" destdir="${test.class.dir}"
+ debug="true" source="1.5" encoding="ISO-8859-1">
+ <classpath>
+ <pathelement location="${class.dir}"/>
+ <pathelement path="${java.class.path}"/>
+ </classpath>
+ </javac>
+ <copy todir="${test.class.dir}">
+ <fileset dir="${test.res.dir}">
+ <exclude name="**/*.java"/>
+ </fileset>
+ </copy>
+ </target>
+
+ <target name="test" depends="test-compile">
+ <mkdir dir="${test.results.dir}"/>
+ <junit printsummary="yes" haltonfailure="yes">
+ <classpath>
+ <pathelement location="${class.dir}"/>
+ <pathelement location="${test.class.dir}"/>
+ <pathelement path="${java.class.path}"/>
+ </classpath>
+ <formatter type="plain"/>
+ <batchtest todir="${test.results.dir}">
+ <fileset dir="${test.source.dir}">
+ <include name="**/*TestCase.java"/>
+ <include name="**/*Test.java"/>
+ <exclude name="**/*$*"/>
+ <exclude name="**/Abstract*"/>
+ </fileset>
+ </batchtest>
+ </junit>
+ </target>
+
+ <target name="jar" description="o Create the jar" depends="compile">
+ <jar jarfile="${jar}">
+ <fileset dir="${class.dir}">
+ <include name="**"/>
+ </fileset>
+ </jar>
+ </target>
+
+ <target name="package" depends="test,jar"/>
+
+</project>
Deleted: tags/libcommons-compress-java/1.2-2/debian/changelog
===================================================================
--- trunk/libcommons-compress-java/debian/changelog 2012-05-28 23:09:51 UTC (rev 16073)
+++ tags/libcommons-compress-java/1.2-2/debian/changelog 2012-05-29 23:32:51 UTC (rev 16081)
@@ -1,27 +0,0 @@
-libcommons-compress-java (1.2-1) unstable; urgency=low
-
- * New upstream release
- * Clean up Depends and Suggests fields.
- * Switch to source format 3.0.
-
- -- Torsten Werner <twerner at debian.org> Sun, 07 Aug 2011 01:56:15 +0200
-
-libcommons-compress-java (1.0-1) unstable; urgency=low
-
- * First upstream release (Closes: #542603)
- * Update old sandbox URLs.
- * Convert debian/copyright to dep5 format and change license of debian/* to
- Apache-2.0.
- * Update get-orig-source target in debian/rules.
- * Switch to default-jdk.
- * Change Section: java.
- * Update Standards-Version: 3.8.3.
- * Use maven-repo-helper to start transition to Maven.
-
- -- Torsten Werner <twerner at debian.org> Sun, 20 Sep 2009 11:16:42 +0200
-
-libcommons-compress-java (0~svn604876-1) unstable; urgency=low
-
- * Initial release (Closes: #456662)
-
- -- Torsten Werner <twerner at debian.org> Mon, 17 Dec 2007 15:17:09 +0100
Copied: tags/libcommons-compress-java/1.2-2/debian/changelog (from rev 16080, trunk/libcommons-compress-java/debian/changelog)
===================================================================
--- tags/libcommons-compress-java/1.2-2/debian/changelog (rev 0)
+++ tags/libcommons-compress-java/1.2-2/debian/changelog 2012-05-29 23:32:51 UTC (rev 16081)
@@ -0,0 +1,43 @@
+libcommons-compress-java (1.2-2) unstable; urgency=low
+
+ * Team upload.
+
+ [ James Page ]
+ * Enablement of JUnit test suite (LP: #876413) (Closes: 646090):
+ - d/build.xml: Provide targets to compile and execute test suite.
+ - d/control: Add B-D's on junit and ant-optional to support testing.
+ - d/rules: Add ant-junit and junit to DEB_JARS for testing.
+ * d/copyright: Updated for revised field names.
+
+ [ Damien Raude-Morvan ]
+ * d/control: Bumped Standards-Version: 3.9.3, no changes.
+
+ -- Damien Raude-Morvan <drazzib at debian.org> Wed, 30 May 2012 01:26:41 +0200
+
+libcommons-compress-java (1.2-1) unstable; urgency=low
+
+ * New upstream release
+ * Clean up Depends and Suggests fields.
+ * Switch to source format 3.0.
+
+ -- Torsten Werner <twerner at debian.org> Sun, 07 Aug 2011 01:56:15 +0200
+
+libcommons-compress-java (1.0-1) unstable; urgency=low
+
+ * First upstream release (Closes: #542603)
+ * Update old sandbox URLs.
+ * Convert debian/copyright to dep5 format and change license of debian/* to
+ Apache-2.0.
+ * Update get-orig-source target in debian/rules.
+ * Switch to default-jdk.
+ * Change Section: java.
+ * Update Standards-Version: 3.8.3.
+ * Use maven-repo-helper to start transition to Maven.
+
+ -- Torsten Werner <twerner at debian.org> Sun, 20 Sep 2009 11:16:42 +0200
+
+libcommons-compress-java (0~svn604876-1) unstable; urgency=low
+
+ * Initial release (Closes: #456662)
+
+ -- Torsten Werner <twerner at debian.org> Mon, 17 Dec 2007 15:17:09 +0100
Deleted: tags/libcommons-compress-java/1.2-2/debian/control
===================================================================
--- trunk/libcommons-compress-java/debian/control 2012-05-28 23:09:51 UTC (rev 16073)
+++ tags/libcommons-compress-java/1.2-2/debian/control 2012-05-29 23:32:51 UTC (rev 16081)
@@ -1,16 +0,0 @@
-Source: libcommons-compress-java
-Section: java
-Priority: optional
-Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Torsten Werner <twerner at debian.org>
-Build-Depends: ant, cdbs, debhelper (>= 5), default-jdk, maven-repo-helper
-Standards-Version: 3.8.3
-Homepage: http://commons.apache.org/compress/
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libcommons-compress-java/
-Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libcommons-compress-java
-
-Package: libcommons-compress-java
-Architecture: all
-Depends: ${misc:Depends}
-Description: Java API for working with tar, zip and bzip2 files
- Commons Compress defines an API for working with tar, zip and bzip2 files.
Copied: tags/libcommons-compress-java/1.2-2/debian/control (from rev 16080, trunk/libcommons-compress-java/debian/control)
===================================================================
--- tags/libcommons-compress-java/1.2-2/debian/control (rev 0)
+++ tags/libcommons-compress-java/1.2-2/debian/control 2012-05-29 23:32:51 UTC (rev 16081)
@@ -0,0 +1,22 @@
+Source: libcommons-compress-java
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Torsten Werner <twerner at debian.org>
+Build-Depends: ant,
+ ant-optional,
+ cdbs,
+ debhelper (>= 5),
+ default-jdk,
+ junit,
+ maven-repo-helper
+Standards-Version: 3.9.3
+Homepage: http://commons.apache.org/compress/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libcommons-compress-java/
+Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libcommons-compress-java
+
+Package: libcommons-compress-java
+Architecture: all
+Depends: ${misc:Depends}
+Description: Java API for working with tar, zip and bzip2 files
+ Commons Compress defines an API for working with tar, zip and bzip2 files.
Deleted: tags/libcommons-compress-java/1.2-2/debian/copyright
===================================================================
--- trunk/libcommons-compress-java/debian/copyright 2012-05-28 23:09:51 UTC (rev 16073)
+++ tags/libcommons-compress-java/1.2-2/debian/copyright 2012-05-29 23:32:51 UTC (rev 16081)
@@ -1,16 +0,0 @@
-Format-Specification: http://dep.debian.net/deps/dep5/
-Name: Apache Commons Compress
-Maintainer: The Apache Software Foundation.
-Source: http://commons.apache.org/compress/
-
-Copyright: 2001-2009, The Apache Software Foundation.
-License: Apache-2.0
-
-Files: debian/*
-Copyright: 2007-2009, Torsten Werner <twerner at debian.org>
-License: Apache-2.0
-
-License: Apache-2.0
- On Debian GNU/Linux system you can find the complete text of the
- license in '/usr/share/common-licenses/Apache-2.0'
-
Copied: tags/libcommons-compress-java/1.2-2/debian/copyright (from rev 16080, trunk/libcommons-compress-java/debian/copyright)
===================================================================
--- tags/libcommons-compress-java/1.2-2/debian/copyright (rev 0)
+++ tags/libcommons-compress-java/1.2-2/debian/copyright 2012-05-29 23:32:51 UTC (rev 16081)
@@ -0,0 +1,16 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Apache Commons Compress
+Upstream-Contact: The Apache Software Foundation.
+Source: http://commons.apache.org/compress/
+
+Files: *
+Copyright: 2001-2009, The Apache Software Foundation.
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2007-2009, Torsten Werner <twerner at debian.org>
+License: Apache-2.0
+
+License: Apache-2.0
+ On Debian GNU/Linux system you can find the complete text of the
+ license in '/usr/share/common-licenses/Apache-2.0'
Deleted: tags/libcommons-compress-java/1.2-2/debian/rules
===================================================================
--- trunk/libcommons-compress-java/debian/rules 2012-05-28 23:09:51 UTC (rev 16073)
+++ tags/libcommons-compress-java/1.2-2/debian/rules 2012-05-29 23:32:51 UTC (rev 16081)
@@ -1,15 +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
-DEB_ANT_BUILDFILE := debian/build.xml
-PACKAGE := commons-compress
-
-install/lib$(PACKAGE)-java::
- mh_installpoms -plib$(PACKAGE)-java
- mh_installjar -plib$(PACKAGE)-java -l pom.xml $(PACKAGE).jar
-
-get-orig-source:
- uscan --force-download --download-version $(DEB_UPSTREAM_VERSION) --rename
Copied: tags/libcommons-compress-java/1.2-2/debian/rules (from rev 16080, trunk/libcommons-compress-java/debian/rules)
===================================================================
--- tags/libcommons-compress-java/1.2-2/debian/rules (rev 0)
+++ tags/libcommons-compress-java/1.2-2/debian/rules 2012-05-29 23:32:51 UTC (rev 16081)
@@ -0,0 +1,16 @@
+#!/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
+DEB_ANT_BUILDFILE := debian/build.xml
+DEB_JARS := ant-junit junit
+PACKAGE := commons-compress
+
+install/lib$(PACKAGE)-java::
+ mh_installpoms -plib$(PACKAGE)-java
+ mh_installjar -plib$(PACKAGE)-java -l pom.xml $(PACKAGE).jar
+
+get-orig-source:
+ uscan --force-download --download-version $(DEB_UPSTREAM_VERSION) --rename
More information about the pkg-java-commits
mailing list