Your message dated Wed, 09 Feb 2011 21:36:14 +0000
with message-id <[email protected]>
and subject line Bug#612569: fixed in libezmorph-java 1.0.6-3
has caused the Debian Bug report #612569,
regarding libezmorph-java: Package does not generate/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 [email protected]
immediately.)
--
612569: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612569
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libezmorph-java
Version: 1.0.6-2
Severity: normal
Tags: patch
User: [email protected]
Usertags: origin-ubuntu natty ubuntu-patch
*** /tmp/tmpbYZKCb
In Ubuntu, the attached patch was applied to achieve the following:
* Updated to generate maven artifacts (LP: #715640):
- debian/control: Build-Depends-Indep on maven-repo-helper
- debian/rules, debian/libezmorph-java.poms: generate maven artifacts
and new target for retrieving original POM file.
- debian/pom/ezmorph.pom: maven pom artifact
* Updated Standards-Version: 3.9.1, no changes.
This updates this package to install Maven artifacts to /usr/share/maven-repo.
This change has been made to support packaging of Jenkins (aka Hudson).
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-25-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-05-03 21:06:07 +0000
+++ debian/control 2011-02-09 08:58:20 +0000
@@ -5,8 +5,9 @@
Uploaders: Torsten Werner <[email protected]>
Build-Depends: debhelper (>= 5), cdbs
Build-Depends-Indep: ant, default-jdk, libcommons-lang-java,
- libcommons-beanutils-java, libcommons-logging-java, junit4
-Standards-Version: 3.8.4
+ libcommons-beanutils-java, libcommons-logging-java, junit4,
+ maven-repo-helper
+Standards-Version: 3.9.1
Homepage: http://ezmorph.sourceforge.net
Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libezmorph-java
Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libezmorph-java
=== added file 'debian/libezmorph-java.poms'
--- debian/libezmorph-java.poms 1970-01-01 00:00:00 +0000
+++ debian/libezmorph-java.poms 2011-02-09 08:58:07 +0000
@@ -0,0 +1 @@
+debian/poms/ezmorph.pom
=== added directory 'debian/poms'
=== added file 'debian/poms/ezmorph.pom'
--- debian/poms/ezmorph.pom 1970-01-01 00:00:00 +0000
+++ debian/poms/ezmorph.pom 2011-02-09 08:58:07 +0000
@@ -0,0 +1,208 @@
+<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>net.sf.ezmorph</groupId>
+ <artifactId>ezmorph</artifactId>
+ <packaging>jar</packaging>
+ <version>1.0.6</version>
+ <name>ezmorph</name>
+
+ <url>http://ezmorph.sourceforge.net</url>
+
+ <description>
+ Simple java library for transforming an Object to another Object.
+ </description>
+
+ <inceptionYear>2006</inceptionYear>
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <scm>
+ <connection>
+
scm:cvs:pserver:[email protected]:/cvsroot/ezmorph:ezmorph
+ </connection>
+ <url>http://ezmorph.cvs.sourceforge.net/ezmorph</url>
+ <developerConnection>
+
scm:cvs:ext:${maven.username}@ezmorph.cvs.sourceforge.net:/cvsroot/ezmorph:ezmorph
+ </developerConnection>
+ </scm>
+ <issueManagement>
+ <system>SourceForge</system>
+ <url>https://sourceforge.net/tracker/?group_id=174866</url>
+ </issueManagement>
+
+ <mailingLists/>
+
+ <developers>
+ <developer>
+ <name>Andres Almiray</name>
+ <id>aalmiray</id>
+ <email>[email protected]</email>
+ <timezone>-5</timezone>
+ <roles>
+ <role>Java Developer</role>
+ </roles>
+ </developer>
+ </developers>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.2</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.3</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.7.0</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.1</version>
+ <optional>true</optional>
+ <exclusions>
+ <exclusion>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>logkit</groupId>
+ <artifactId>logkit</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>avalon-framework</groupId>
+ <artifactId>avalon-framework</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ <optional>true</optional>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+
+ <prerequisites>
+ <maven>2.0.7</maven>
+ </prerequisites>
+
+ <build>
+ <defaultGoal>install</defaultGoal>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.3</source>
+ <target>1.1</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <configuration>
+ <templateDirectory>
+ ${basedir}/src/site
+ </templateDirectory>
+ <template>site.vm</template>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/Abstract*.java</exclude>
+ <exclude>**/*TestSuite.java</exclude>
+ </excludes>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <links>
+ <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+ <link>http://www.junit.org/junit/javadoc/</link>
+ <link>
+
http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.7.0/docs/api/
+ </link>
+ <link>
+ http://jakarta.apache.org/commons/lang/api-2.2/
+ </link>
+ </links>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>changes-maven-plugin</artifactId>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>changes-report</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jdepend-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>javancss-maven-plugin</artifactId>
+ <version>2.0-beta-1</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>1.0.0</version>
+ </plugin>
+ </plugins>
+ </reporting>
+
+</project>
\ No newline at end of file
=== modified file 'debian/rules'
--- debian/rules 2010-05-03 21:06:07 +0000
+++ debian/rules 2011-02-09 08:58:07 +0000
@@ -6,10 +6,21 @@
JAVA_HOME := /usr/lib/jvm/default-java
DEB_ANT_BUILDFILE := debian/build.xml
DEB_JARS := commons-lang commons-beanutils commons-logging junit4
+PACKAGE := ezmorph
+MAVEN_REPO := http://repo1.maven.org/maven2
install/libezmorph-java::
install -m644 -D ezmorph.jar
$(DEB_DESTDIR)/usr/share/java/ezmorph-$(DEB_UPSTREAM_VERSION).jar
dh_link -plibezmorph-java
/usr/share/java/ezmorph-$(DEB_UPSTREAM_VERSION).jar /usr/share/java/ezmorph.jar
+binary-post-install/lib$(PACKAGE)-java::
+ mh_installpoms -plib$(PACKAGE)-java
+ mh_installjar -plib$(PACKAGE)-java -l debian/poms/$(PACKAGE).pom
$(PACKAGE).jar
+
get-orig-source:
-uscan --upstream-version 0 --rename
+
+get-orig-pom:
+ mkdir -p debian/poms
+ wget -U NoSuchBrowser/1.0 -O debian/poms/$(PACKAGE).xml \
+
$(MAVEN_REPO)/net/sf/ezmorph/$(PACKAGE)/$(DEB_UPSTREAM_VERSION)/$(PACKAGE)-$(DEB_UPSTREAM_VERSION).pom
--- End Message ---
--- Begin Message ---
Source: libezmorph-java
Source-Version: 1.0.6-3
We believe that the bug you reported is fixed in the latest version of
libezmorph-java, which is due to be installed in the Debian FTP archive:
libezmorph-java_1.0.6-3.debian.tar.gz
to main/libe/libezmorph-java/libezmorph-java_1.0.6-3.debian.tar.gz
libezmorph-java_1.0.6-3.dsc
to main/libe/libezmorph-java/libezmorph-java_1.0.6-3.dsc
libezmorph-java_1.0.6-3_all.deb
to main/libe/libezmorph-java/libezmorph-java_1.0.6-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.
Torsten Werner <[email protected]> (supplier of updated libezmorph-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: SHA1
Format: 1.8
Date: Wed, 09 Feb 2011 22:08:23 +0100
Source: libezmorph-java
Binary: libezmorph-java
Architecture: source all
Version: 1.0.6-3
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers
<[email protected]>
Changed-By: Torsten Werner <[email protected]>
Description:
libezmorph-java - Java library for transforming an Object to another Object
Closes: 612569
Changes:
libezmorph-java (1.0.6-3) unstable; urgency=low
.
* Apply patch from James Page that installs Maven POM file.
(Closes: #612569)
Checksums-Sha1:
61b878e3e44087b067f1c1a35d91718ec7a52c61 1435 libezmorph-java_1.0.6-3.dsc
b97c8713adb7db0a710eab0921ff2c9a3d7950e6 23600
libezmorph-java_1.0.6.orig.tar.gz
44108ae31ce17a2d92f2d853bbdc06374530df0e 4390
libezmorph-java_1.0.6-3.debian.tar.gz
b44c526794eb0259251d4e0de238c78c7ba74748 81824 libezmorph-java_1.0.6-3_all.deb
Checksums-Sha256:
f1a2b58deca7f80c00e4e51a648f873d52f38bebf78f93861dbb30cbf8a53608 1435
libezmorph-java_1.0.6-3.dsc
7b5e8d101c4c0a720095a7b5ba15f37774d440f17283a8f35b774d3b5f3b6fb2 23600
libezmorph-java_1.0.6.orig.tar.gz
3251983d4adb21ea62409951e628ce8c5aca03d0605a1800456daf76762c701a 4390
libezmorph-java_1.0.6-3.debian.tar.gz
6229ec0c02dba7cfaab666d9300de71efddaa871cb1e6d6ce190778d70066d7b 81824
libezmorph-java_1.0.6-3_all.deb
Files:
321fd2d5ecc9a16fb18a64646dd1d105 1435 java optional libezmorph-java_1.0.6-3.dsc
c7e9d6758b90012b5c60ef0d0083155f 23600 java optional
libezmorph-java_1.0.6.orig.tar.gz
d12b47ecd1f7d35f88335c6c36181793 4390 java optional
libezmorph-java_1.0.6-3.debian.tar.gz
c5c22f764d02cd18d2f1e30a909baecd 81824 java optional
libezmorph-java_1.0.6-3_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iEYEARECAAYFAk1TAwkACgkQfY3dicTPjsNBbQCfWx+ilcGEOLbl+xEI48gMWCed
b+gAn0C8C+4LiFXZO9GMkwkZHiSYYA9d
=ypJU
-----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.