Your message dated Mon, 25 Apr 2011 13:47:36 +0000
with message-id <e1qem8w-0002fp...@franck.debian.org>
and subject line Bug#620046: fixed in libjcommon-java 1.0.16-2
has caused the Debian Bug report #620046,
regarding libjcommon-java: Package does not install maven artifacts
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.)


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



*** /tmp/tmprDdEwv
It would be great if this package could install maven artifacts to 
/usr/share/maven-repo. This patch should do the trick.

  * Enabled maven artifact deployment:
    - debian/control: Build-Depends added maven-repo-helper
    - debian/rules: install maven artifacts
    - debian/poms/jcommon.pom: localised pom for maven


Thanks for considering the patch.


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

Kernel: Linux 2.6.35-28-generic (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
=== modified file 'debian/control'
--- debian/control	2010-03-22 21:45:58 +0000
+++ debian/control	2011-03-29 12:32:26 +0000
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
 Uploaders: Christian Bayle <ba...@debian.org>, Arnaud Vandyck <av...@debian.org>, Michael Koch <konque...@gmx.de>, Rene Engelhard <r...@debian.org>
-Build-Depends: debhelper (>= 5), cdbs
+Build-Depends: debhelper (>= 5), cdbs, maven-repo-helper
 Build-Depends-Indep: default-jdk, ant, libservlet2.4-java, junit
 Standards-Version: 3.8.4
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjcommon-java

=== added file 'debian/libjcommon-java.poms'
--- debian/libjcommon-java.poms	1970-01-01 00:00:00 +0000
+++ debian/libjcommon-java.poms	2011-03-29 12:32:14 +0000
@@ -0,0 +1 @@
+debian/poms/jcommon.pom

=== added directory 'debian/poms'
=== added file 'debian/poms/jcommon.pom'
--- debian/poms/jcommon.pom	1970-01-01 00:00:00 +0000
+++ debian/poms/jcommon.pom	2009-08-17 19:07:43 +0000
@@ -0,0 +1,29 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>jfree</groupId>
+    <artifactId>jcommon</artifactId>
+    <name>jcommon</name>
+    <version>1.0.16</version>
+    <organization>
+        <name>JFree.org</name>
+        <url>http://www.jfree.org/</url>
+    </organization>
+    <inceptionYear>2001</inceptionYear>
+    <description>
+        JCommon is a free general purpose Java class library that is used in several projects at www.jfree.org,
+        including JFreeChart and JFreeReport.
+    </description>
+    <url>http://www.jfree.org/jcommon/</url>
+    <scm>
+        <connection>scm:cvs:pserver:anonym...@jfreechart.cvs.sourceforge.net:/cvsroot/jfreechart:jcommon</connection>
+        <url>http://jfreechart.cvs.sourceforge.net/jfreechart/jcommon/</url>
+    </scm>
+    <licenses>
+        <license>
+            <name>GNU Lesser General Public Licence</name>
+            <url>http://www.gnu.org/licenses/lgpl.txt</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+</project>

=== modified file 'debian/rules'
--- debian/rules	2010-03-22 21:45:58 +0000
+++ debian/rules	2011-03-29 12:35:30 +0000
@@ -17,6 +17,7 @@
 DEB_ANT_BUILD_TARGET := compile compile-xml javadoc
 # FIXME: how to run this?
 DEB_ANT_CHECK_TARGET := compile-junit-tests
+MAVEN_REPO := http://repository.jboss.org/maven2
 
 clean::
 	rm -rf build
@@ -30,4 +31,11 @@
 	ln -s $(LIBRARY_PACKAGE)-$(API_VERSION).jar debian/lib$(LIBRARY_PACKAGE)-java/usr/share/java/$(LIBRARY_PACKAGE).jar
 	install -m 644 -D $(LIBRARY_PACKAGE)-xml-$(API_VERSION).jar debian/lib$(LIBRARY_PACKAGE)-java/usr/share/java/$(LIBRARY_PACKAGE)-xml-$(API_VERSION).jar
 	ln -s $(LIBRARY_PACKAGE)-xml-$(API_VERSION).jar debian/lib$(LIBRARY_PACKAGE)-java/usr/share/java/$(LIBRARY_PACKAGE)-xml.jar
+	mh_installpoms -plib$(LIBRARY_PACKAGE)-java
+	mh_installjar -plib$(LIBRARY_PACKAGE)-java -l debian/poms/$(LIBRARY_PACKAGE).pom $(LIBRARY_PACKAGE)-$(API_VERSION).jar 
+
+get-orig-pom:
+	mkdir -p debian/poms
+	wget  -U NoSuchBrowser/1.0 -O debian/poms/$(LIBRARY_PACKAGE).pom \
+        $(MAVEN_REPO)/jfree/$(LIBRARY_PACKAGE)/$(DEB_UPSTREAM_VERSION)/$(LIBRARY_PACKAGE)-$(DEB_UPSTREAM_VERSION).pom
 


--- End Message ---
--- Begin Message ---
Source: libjcommon-java
Source-Version: 1.0.16-2

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

libjcommon-java-doc_1.0.16-2_all.deb
  to main/libj/libjcommon-java/libjcommon-java-doc_1.0.16-2_all.deb
libjcommon-java_1.0.16-2.debian.tar.gz
  to main/libj/libjcommon-java/libjcommon-java_1.0.16-2.debian.tar.gz
libjcommon-java_1.0.16-2.dsc
  to main/libj/libjcommon-java/libjcommon-java_1.0.16-2.dsc
libjcommon-java_1.0.16-2_all.deb
  to main/libj/libjcommon-java/libjcommon-java_1.0.16-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 620...@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 libjcommon-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: Mon, 25 Apr 2011 15:18:34 +0200
Source: libjcommon-java
Binary: libjcommon-java libjcommon-java-doc
Architecture: source all
Version: 1.0.16-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
Changed-By: Damien Raude-Morvan <draz...@debian.org>
Description: 
 libjcommon-java - General Purpose library for Java
 libjcommon-java-doc - General Purpose library for Java - documentation
Closes: 620046
Changes: 
 libjcommon-java (1.0.16-2) unstable; urgency=low
 .
   * Team upload.
 .
   [ Ioan Eugen STAN ]
   * Fix "Package does not install maven artifacts" (Closes: #620046)
   * Enabled maven artifact deployment:
     - debian/control: Build-Depends added maven-repo-helper
     - debian/rules: install maven artifacts
     - debian/poms/jcommon.pom: localised pom for maven
   * debian/patches/javaDocLink: links the package to system doc (Debian
     Java FAQ 4.4.4).
 .
   [ Torsten Werner ]
   * Remove last patch because it is not needed.
 .
   [ Damien Raude-Morvan ]
   * Update to Standards-Version 3.9.2.
   * Remove Arnaud Vandyck from Uploaders.
   * Drop Depends on JRE since it's a library (as per Debian Java
     Policy).
   * Build-Depends on libservlet2.5-java instead of libservlet2.4-java.
   * Rename d/libcommon-java-doc.doc-base to d/libjcommon-java-doc.doc-base
     to correctly register documentation.
Checksums-Sha1: 
 19bade6091d5c63f3a1612ee28aceeec2fadcdbe 2117 libjcommon-java_1.0.16-2.dsc
 9ea81c5754671bcc441761ee73086cf1faefba35 5117 
libjcommon-java_1.0.16-2.debian.tar.gz
 e822f655a4797bb5dc87039a40db42eb49c053e5 458622 
libjcommon-java_1.0.16-2_all.deb
 96eaad6b2fba4e12cdd3eeef14953d86ecfc262d 1183530 
libjcommon-java-doc_1.0.16-2_all.deb
Checksums-Sha256: 
 3932f3a49adc92ff7dbea98903b1c9f4b7861fea35a12beb24fbc80686e8f0b1 2117 
libjcommon-java_1.0.16-2.dsc
 4e938f327a1e8e06c337e0c09b4ce2f519a1eca8434325ff0fda7b989ad4ebda 5117 
libjcommon-java_1.0.16-2.debian.tar.gz
 4ffe3a949639674406298267462f07b93af52c2f7213b19275e7bacef94ea101 458622 
libjcommon-java_1.0.16-2_all.deb
 684fc5b8b4b4284ff6c6e35ff4297724905210a6229f7d02c1a12acf6d89ce53 1183530 
libjcommon-java-doc_1.0.16-2_all.deb
Files: 
 9e4ff739676dbbf63e8a9c1ca4a2c2ee 2117 java optional 
libjcommon-java_1.0.16-2.dsc
 93a858c5d82dd2a957d37a55f14814fd 5117 java optional 
libjcommon-java_1.0.16-2.debian.tar.gz
 7a11922aeb334f96a07b55277c499479 458622 java optional 
libjcommon-java_1.0.16-2_all.deb
 6c45f9106ab1ce54b0c11f3196a3591a 1183530 doc optional 
libjcommon-java-doc_1.0.16-2_all.deb

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

iQIcBAEBCAAGBQJNtXdDAAoJEHXiDM0z50n89XoQAMOPGNjWGe1u/g8aOnTiQU3Y
7tEPqMGTkGsJwCosZPYhzKMi98vgtsTkndEuD7+Ncj8gzsQFxvPm71q/nJpDvBId
RG9ODKg8LEIgH373BTCN4kkJUbzdHiVeKOK+Sp/8ooSFViAz62VXEG9vUTQLI6ME
4UK6skRkvJhbESCxGYL7cK8PBy/krvm4sUoadH0nTebhcSaCoIBDC0kaGJ6qEm4B
tlrojc0fADznYOUBII0fC+Kf4R1yvcu+8dl5Y2BWPSjNCV5aVPBJCk5fl/wmRlyj
rGM8hgWLSYiD6CXkcvWY5o9AdSMNfwFgNQq5MI087YjNoFgC4M2S2j4zi9/8HDA1
2Asoc5VOVDtU+csfkxQdqn4TYEQMK3EpZJqqz/mUWvmcwcveQL8M1elfpTuX68Hz
OrowkhYiqcsdwUjKsfxgW/yRunp8oiAzf6rTlEJGo/uvwE7URnMuX8ubZpeM8CoK
287VGeDLey48A88aagi5nXaaseeMBDvLvbNq+4eqATL9nEbP+SKsh+BPu4g4mVJz
xVJy5jZjhC8aA5oh3zAzGwVPqaz02sq4axBn+fG2/K5kzMcfKflrBDBjuzvhfJxY
U7i0fCwXAsu/DjYUmJQN7tmayLDMqLhXy6c14xGqnegpxWYmb3tU6nzfnXSYn1Zg
gZTpHHbhl9pJmOJLTiv1
=2QOh
-----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
debian-j...@lists.debian.org for discussions and questions.

Reply via email to