Your message dated Sun, 06 Feb 2011 09:36:07 +0000
with message-id <[email protected]>
and subject line Bug#611590: fixed in libwoodstox-java 1:3.9.2.dfsg-3
has caused the Debian Bug report #611590,
regarding [libwoodstox-java] install POM file
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 [email protected]
immediately.)


-- 
611590: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=611590
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libwoodstox-java
Version: 1:3.9.2.dfsg-2
Severity: normal
Tags: patch

Hi.

This patch makes libwoodstox-java install the POM file associated with
the distributed jar. Having it makes it easier to compile project that
use maven or ivy as build system (osmosis v. 0.38, in my case). Could
you please apply it to the package?

BTW, I'm aware that the package is team maintained, but I nonetheless
prefer to receive some feedback before actually upload the package.

Thanks, Giovanni.

--- System information. ---
Architecture: amd64
Kernel:       Linux 2.6.32-5-amd64

Debian Release: 6.0
  500 unstable        www.debian-multimedia.org
  500 unstable        poisson.phc.unipi.it
  500 unstable        mi.mirror.garr.it
  500 testing         mi.mirror.garr.it
  500 stable          volatile.debian.org
  500 stable          security.debian.org
    1 experimental    mi.mirror.garr.it

--- Package information. ---
Depends                     (Version) | Installed
=====================================-+-===========
default-jre-headless                  | 1:1.6-40
 OR java2-runtime-headless            |


Package's Recommends field is empty.

Package's Suggests field is empty.



-- 
Giovanni Mascellani <[email protected]>
Pisa, Italy

Web: http://poisson.phc.unipi.it/~mascellani
Jabber: [email protected] / [email protected]
diff -Nru libwoodstox-java-3.9.2.dfsg/debian/changelog libwoodstox-java-3.9.2.dfsg/debian/changelog
--- libwoodstox-java-3.9.2.dfsg/debian/changelog	2010-05-08 12:46:18.000000000 +0200
+++ libwoodstox-java-3.9.2.dfsg/debian/changelog	2011-01-30 20:07:30.000000000 +0100
@@ -1,3 +1,10 @@
+libwoodstox-java (1:3.9.2.dfsg-3) unstable; urgency=low
+
+  * Team upload.
+  * Install POM files.
+
+ -- Giovanni Mascellani <[email protected]>  Sun, 30 Jan 2011 20:05:48 +0100
+
 libwoodstox-java (1:3.9.2.dfsg-2) unstable; urgency=low
 
   * Team upload
diff -Nru libwoodstox-java-3.9.2.dfsg/debian/control libwoodstox-java-3.9.2.dfsg/debian/control
--- libwoodstox-java-3.9.2.dfsg/debian/control	2010-05-08 12:46:18.000000000 +0200
+++ libwoodstox-java-3.9.2.dfsg/debian/control	2011-01-30 20:10:43.000000000 +0100
@@ -4,7 +4,7 @@
 Maintainer: Debian Java Maintainers <[email protected]>
 Uploaders: Vincent Fourmond <[email protected]>
 Build-Depends-Indep: ant, ant-optional, default-jdk, junit
-Build-Depends: cdbs, debhelper (>= 5)
+Build-Depends: cdbs, debhelper (>= 5), maven-repo-helper
 Standards-Version: 3.8.4
 Homepage: http://woodstox.codehaus.org/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/packages/trunk/libwoodstox-java/
diff -Nru libwoodstox-java-3.9.2.dfsg/debian/patches/30-build-poms.patch libwoodstox-java-3.9.2.dfsg/debian/patches/30-build-poms.patch
--- libwoodstox-java-3.9.2.dfsg/debian/patches/30-build-poms.patch	1970-01-01 01:00:00.000000000 +0100
+++ libwoodstox-java-3.9.2.dfsg/debian/patches/30-build-poms.patch	2011-01-31 00:58:36.000000000 +0100
@@ -0,0 +1,22 @@
+Index: libwoodstox-java-3.9.2.dfsg/build.xml
+===================================================================
+--- libwoodstox-java-3.9.2.dfsg.orig/build.xml	2011-01-31 00:56:48.000000000 +0100
++++ libwoodstox-java-3.9.2.dfsg/build.xml	2011-01-31 00:58:17.000000000 +0100
+@@ -512,6 +512,17 @@
+        </copy>
+     </target>
+ 
++	<target name="debian-build" depends="jar.wstx.lgpl">
++       <!-- Build POM files -->
++       <copy todir="${DistDir}">
++            <fileset dir="${SrcDir}/maven" includes="*.pom" />
++            <globmapper from="*.pom" to="*-${WSTX_VERSION}.pom" />
++            <filterset>
++              <filter token="VERSION" value="${WSTX_VERSION}" />
++            </filterset>
++       </copy>
++	</target>
++
+     <target name="all" depends="clean,javadoc,test,dist">
+         <!-- This target simply depends on others to do its job -->
+     </target>
diff -Nru libwoodstox-java-3.9.2.dfsg/debian/patches/series libwoodstox-java-3.9.2.dfsg/debian/patches/series
--- libwoodstox-java-3.9.2.dfsg/debian/patches/series	2010-05-08 12:21:24.000000000 +0200
+++ libwoodstox-java-3.9.2.dfsg/debian/patches/series	2011-01-31 00:59:34.000000000 +0100
@@ -1,2 +1,3 @@
 10-disable-unused.dpatch
 20-testsuite-enable.dpatch
+30-build-poms.patch
diff -Nru libwoodstox-java-3.9.2.dfsg/debian/rules libwoodstox-java-3.9.2.dfsg/debian/rules
--- libwoodstox-java-3.9.2.dfsg/debian/rules	2010-05-08 12:44:00.000000000 +0200
+++ libwoodstox-java-3.9.2.dfsg/debian/rules	2011-01-31 01:01:20.000000000 +0100
@@ -7,7 +7,7 @@
 ANT_HOME             := /usr/share/ant
 DEB_ANT_COMPILER     := modern
 DEB_JARS             := ant-nodeps junit ant-junit ant-trax
-DEB_ANT_BUILD_TARGET := jar.wstx.lgpl
+DEB_ANT_BUILD_TARGET := debian-build
 DEB_BUILDDIR         := .
 DEB_ANT_BUILDFILE    := build.xml
 DEB_ANT_CLEAN_TARGET := clean
@@ -15,6 +15,11 @@
 
 clean::
 	-rm -Rf build doc test dist
+	mh_clean
+
+install/libwoodstox-java::
+	mh_installjar -plibwoodstox-java -l dist/wstx-lgpl-3.9.2.pom build/wstx-lgpl-3.9.2.jar
+	mh_installpom -plibwoodstox-java dist/wstx-lgpl-3.9.2.pom
 
 get-orig-source:
 	uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: libwoodstox-java
Source-Version: 1:3.9.2.dfsg-3

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

libwoodstox-java_3.9.2.dfsg-3.debian.tar.gz
  to main/libw/libwoodstox-java/libwoodstox-java_3.9.2.dfsg-3.debian.tar.gz
libwoodstox-java_3.9.2.dfsg-3.dsc
  to main/libw/libwoodstox-java/libwoodstox-java_3.9.2.dfsg-3.dsc
libwoodstox-java_3.9.2.dfsg-3_all.deb
  to main/libw/libwoodstox-java/libwoodstox-java_3.9.2.dfsg-3_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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Giovanni Mascellani <[email protected]> (supplier of updated libwoodstox-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 [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sat, 05 Feb 2011 14:25:30 +0100
Source: libwoodstox-java
Binary: libwoodstox-java
Architecture: source all
Version: 1:3.9.2.dfsg-3
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
<[email protected]>
Changed-By: Giovanni Mascellani <[email protected]>
Description: 
 libwoodstox-java - a high-performance XML processor
Closes: 611590
Changes: 
 libwoodstox-java (1:3.9.2.dfsg-3) experimental; urgency=low
 .
   * Team upload.
   * Install POM files (closes: #611590).
Checksums-Sha1: 
 f4176a6d25884cb1dea4f45a30162e6778428103 1492 libwoodstox-java_3.9.2.dfsg-3.dsc
 0323d94574442b9d31fe8e91a3c54fe0e6ba4494 6936 
libwoodstox-java_3.9.2.dfsg-3.debian.tar.gz
 df2caa74c372c69ee72efe4f0953b296eb878173 572070 
libwoodstox-java_3.9.2.dfsg-3_all.deb
Checksums-Sha256: 
 e03fa16662748f233607f6a46528aac4d76e80f6e745c92071d99c3a3beadd5e 1492 
libwoodstox-java_3.9.2.dfsg-3.dsc
 1c21d4b0cc7d964d701aa63f9522180b7dc9b4b2891fb85d105164087e667fba 6936 
libwoodstox-java_3.9.2.dfsg-3.debian.tar.gz
 8391818a5f26439035c0a553a58dc2cdb351dc09d91fc2a06f3d0f6c1c346757 572070 
libwoodstox-java_3.9.2.dfsg-3_all.deb
Files: 
 de20bdf56597e54a8de4e2ef41b915d4 1492 java optional 
libwoodstox-java_3.9.2.dfsg-3.dsc
 8dc4edb44466587ddb3afe285c3bec68 6936 java optional 
libwoodstox-java_3.9.2.dfsg-3.debian.tar.gz
 a487e57e567dcf8269bbab486c480cbd 572070 java optional 
libwoodstox-java_3.9.2.dfsg-3_all.deb

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

iF4EAREKAAYFAk1NVlUACgkQBIoTAU7n/+O5AAD/TXEQ1ZPlpDz7LlyXeeos/dKA
ejXnntxDErcyd8wa/dYA/R+ocI8v4GaUQRINYOLltsGl3r+lm4vxCTMsvGXoQExA
=3fud
-----END PGP SIGNATURE-----



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

Reply via email to