Your message dated Tue, 29 May 2012 23:48:48 +0000
with message-id <e1szw9g-0007jc...@franck.debian.org>
and subject line Bug#646090: fixed in libcommons-compress-java 1.2-2
has caused the Debian Bug report #646090,
regarding libcommons-compress-java: Enablement of JUnit test suite
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
646090: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=646090
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libcommons-compress-java
Version: 1.2-1
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256


In Ubuntu, the attached patch was applied to achieve the following:

  * Updates to support Ubuntu MIR (LP: #876413):
    - 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/control: Bumped Standards-Version: 3.9.2, no changes.
  * d/copyright: Updated for revised field names.

Thanks for considering the patch.


- -- System Information:
Debian Release: wheezy/sid
  APT prefers oneiric-updates
  APT policy: (500, 'oneiric-updates'), (500, 'oneiric-security'), (500, 
'oneiric-proposed'), (500, 'oneiric')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-12-generic (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJOoS3/AAoJEL/srsug59jDRGYP/2nQRXW2RJ6/Uhrh+NF3lJ6p
aLEHeZp4ZAVuC1GM/vmBhorZMmKGJhA0Oq0GGpOObBRXYV1dqkHpqKPQ9MvYgpUN
80Bt79nwpkzMiZGavuO9GkII0Z97/oMjrqM3+1rBD40FBY1u7vhgLfbiimBAhKCY
oWHN0srxGlN0dKP2yOqzI6x9OF9Upwdnx5onfuSUAtgF6Xm6tD3m12cl870TKJLO
ViOsFHRwB8hPrshXO1iJYYjqn5nZ0n05mdQs7Kgct4xqTiploLXtYk5P/ubtQspV
3emWKSTwSAHb1+suAWtLyBxfGuSKjjrfnKOy7fo/YxSjUolkFqO1nLkHxHelrRCI
0aWF4ScWCaMUl/7zYnEH49rO5OsOyjFyMwYjRqyDUGgHfZ2S6XDwsQr5pdOZemda
BAMmi+83EN/iiye/6ww1luPeXVcpEwxCRSB4RMybwwrOzuuyWvD3f4YT+QEhlT9a
76ysrVJ+1rKLdpJHIqWofb5Z1awennpA+kp9VtTaIENiBXLjzAzH41EAx8lZNl9z
0OIxTntOqW9mqchZhZo5zpU+KscQ5IGTqU3NNfMeApdIDmraXDuPhtnXNz0N+tFl
3WBk5FnG0cjE7j/ka/NCPFwwEf1IUFa0XUx0t9w822WJQg1bNPho4TgaMl6gn8N/
b70ldG76LREVTReBY/iY
=aT1N
-----END PGP SIGNATURE-----
=== modified file 'debian/ant.properties'
--- debian/ant.properties       2009-09-20 11:16:42 +0000
+++ debian/ant.properties       2011-10-21 08:30:20 +0000
@@ -2,3 +2,8 @@
 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

=== modified file 'debian/build.xml'
--- debian/build.xml    2007-12-17 15:17:09 +0000
+++ debian/build.xml    2011-10-21 08:30:20 +0000
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<project default="jar" name="${project.name}" basedir="..">
+<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">
@@ -12,6 +13,42 @@
       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}">
@@ -20,4 +57,6 @@
     </jar>
   </target>
 
+  <target name="package" depends="test,jar"/>
+
 </project>

=== modified file 'debian/changelog'

=== modified file 'debian/control'
--- debian/control      2011-08-07 01:56:15 +0000
+++ debian/control      2011-10-21 08:30:35 +0000
@@ -3,8 +3,14 @@
 Priority: optional
 Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
 Uploaders: Torsten Werner <twer...@debian.org>
-Build-Depends: ant, cdbs, debhelper (>= 5), default-jdk, maven-repo-helper
-Standards-Version: 3.8.3
+Build-Depends: ant,
+               ant-optional,
+               cdbs,
+               debhelper (>= 5),
+               default-jdk,
+               junit,
+               maven-repo-helper
+Standards-Version: 3.9.2
 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

=== modified file 'debian/copyright'
--- debian/copyright    2009-09-20 11:16:42 +0000
+++ debian/copyright    2011-10-21 08:30:20 +0000
@@ -1,8 +1,9 @@
-Format-Specification: http://dep.debian.net/deps/dep5/
-Name: Apache Commons Compress
-Maintainer: The Apache Software Foundation.
+Format: http://dep.debian.net/deps/dep5/
+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
 
@@ -13,4 +14,3 @@
 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'
-

=== modified file 'debian/rules'
--- debian/rules        2009-09-20 11:16:42 +0000
+++ debian/rules        2011-10-21 08:30:20 +0000
@@ -5,6 +5,7 @@
 
 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:: 


--- End Message ---
--- Begin Message ---
Source: libcommons-compress-java
Source-Version: 1.2-2

We believe that the bug you reported is fixed in the latest version of
libcommons-compress-java, which is due to be installed in the Debian FTP 
archive:

libcommons-compress-java_1.2-2.debian.tar.gz
  to 
main/libc/libcommons-compress-java/libcommons-compress-java_1.2-2.debian.tar.gz
libcommons-compress-java_1.2-2.dsc
  to main/libc/libcommons-compress-java/libcommons-compress-java_1.2-2.dsc
libcommons-compress-java_1.2-2_all.deb
  to main/libc/libcommons-compress-java/libcommons-compress-java_1.2-2_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 646...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Damien Raude-Morvan <draz...@debian.org> (supplier of updated 
libcommons-compress-java package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Wed, 30 May 2012 01:26:41 +0200
Source: libcommons-compress-java
Binary: libcommons-compress-java
Architecture: source all
Version: 1.2-2
Distribution: sid
Urgency: low
Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
Changed-By: Damien Raude-Morvan <draz...@debian.org>
Description: 
 libcommons-compress-java - Java API for working with tar, zip and bzip2 files
Closes: 646090
Changes: 
 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.
Checksums-Sha1: 
 cfaa90df4efb98fdde3c06190365a5d2f9cceb29 2134 
libcommons-compress-java_1.2-2.dsc
 44bd69294e420332a1c51c06689b4cae7532dc77 2870 
libcommons-compress-java_1.2-2.debian.tar.gz
 898bb465a15217948397933412987aca11884fb4 157002 
libcommons-compress-java_1.2-2_all.deb
Checksums-Sha256: 
 2861406071c2bf906cb465b1ef7ff2348cc85cab36245a6b75c79bf4866ea30d 2134 
libcommons-compress-java_1.2-2.dsc
 478cf185fe6b26e5d8cb501ecdce1bc8472962d9b76e19d7262af29841668b4c 2870 
libcommons-compress-java_1.2-2.debian.tar.gz
 3d8d20e806bbada50fb5ba354d9f3517bfa32fa451c7d4626e364687fb4b3cde 157002 
libcommons-compress-java_1.2-2_all.deb
Files: 
 ecc0afc43101127a442487bb20f88e27 2134 java optional 
libcommons-compress-java_1.2-2.dsc
 38f724e659d2f8177617687d9d4c7947 2870 java optional 
libcommons-compress-java_1.2-2.debian.tar.gz
 40568c0e2473fadd150a8cfd5a448371 157002 java optional 
libcommons-compress-java_1.2-2_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJPxVxuAAoJEHXiDM0z50n8vbgP/iduls/pU5Sgu4K1e3jZh8Bi
ueoo/VYwqZPr32eTKqTB8P4/e5Uk4pNnVzpPm3uKpm1J1aUM7sRnpUgHp3NjAMYk
eVyg3i8OX9vTh2DnOrPUYcYyQ40FgNuTa9p9988phYxgcQs4pLH2skW4Dsrt7wdk
lE434AXfj3sVObm1vyr9gLc6Rdfs8z4AUCHKjDpVF5/IcYFlY180pXv+hYv21R15
AVsMZ5EJGITeKkuyNPYTI8hmw5m5AKKggEmhIVYVbu9JX0stWIGni+MDNz1xc//e
5TApaTznsA2lqmgsURpAY2q5crpkI+A1CmbRPQ0wxszVDxDNOOXNPiIUGb8qkwVu
7h8nek+toAyn9vr31Bia7DkLKVrU/hfhm80f/Kqe87u9plTvrI1VqoEmHTtYBqty
esaIrdco7mVimytFBSX/yjqwbbs/Pw8om1KDqsU5ykhjbOTTY6i/95jvEJw80nLz
Bin6IVCGuUH/8Csea00Orx9+DI+TpQJbzveRIwAVnqUPUn10M6zCG1UXncZmaMBY
ouMqzOelATRMgRRvqepuIHEky0bLJoinWNAlWIbsJfrD+LSqcCKqjkbw/RnYGaTo
Wv6Mc8BUiIL17XflpE6AbVx7MEgNMWTGl6+jv/Rf8rQ5ZnjTK/XlmoFStnN2HCff
otRphFIRlP8b3V6uhBvT
=/Hv1
-----END PGP SIGNATURE-----



--- End Message ---
__
This is the maintainer address of Debian's Java team
<http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers>. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Reply via email to