Your message dated Mon, 25 Apr 2011 12:02:16 +0000
with message-id <e1qekua-0001nu...@franck.debian.org>
and subject line Bug#593160: fixed in easymock 2.4+ds1-5
has caused the Debian Bug report #593160,
regarding libeasymock-java: Please add pom.xml
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.)


-- 
593160: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593160
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libeasymock-java
Version: 2.4+ds1-4.1
Severity: normal
Tags: patch

Please add a pom.xml to the package.
See attached patch.

Best regards,
Matthias 


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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libeasymock-java depends on:
ii  default-jre-headless [java5-r 1.6-38     Standard Java or Java
compatible R ii  openjdk-6-jre-headless [java5 6b18-1.8-1 OpenJDK Java
runtime, using Hotspo

libeasymock-java recommends no packages.

Versions of packages libeasymock-java suggests:
pn  libeasymock-java-doc          <none>     (no description available)

-- no debconf information
From 2a35cf93a0d0f0c72530a2a86c35cdd6359312d5 Mon Sep 17 00:00:00 2001
From: Matthias Schmitz <matth...@sigxcpu.org>
Date: Sun, 15 Aug 2010 22:53:57 +0200
Subject: [PATCH] Add easymock-2.4.pom and install it with maven-repo-helper

* Add easymock-2.4.pom from repo1.maven.org
* Add maven-repo-helper to Build-Depends:
* Install the pom and link the jar in /usr/share/maven-repo
---
 debian/control               |    2 +-
 debian/easymock-2.4.pom      |  159 ++++++++++++++++++++++++++++++++++++++++++
 debian/libeasymock-java.poms |    1 +
 debian/rules                 |    4 +
 4 files changed, 165 insertions(+), 1 deletions(-)
 create mode 100644 debian/easymock-2.4.pom
 create mode 100644 debian/libeasymock-java.poms

diff --git a/debian/control b/debian/control
index 085054d..8022be3 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,7 @@ DM-Upload-Allowed: yes
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/easymock/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/easymock/
 Build-Depends: cdbs, debhelper (>= 5.0.42), default-jdk, ant-optional (>= 1.7.0),
- junit4 (>= 4.6-2)
+ junit4 (>= 4.6-2), maven-repo-helper
 Standards-Version: 3.8.4
 Homepage: http://www.easymock.org
 
diff --git a/debian/easymock-2.4.pom b/debian/easymock-2.4.pom
new file mode 100644
index 0000000..575b285
--- /dev/null
+++ b/debian/easymock-2.4.pom
@@ -0,0 +1,159 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.easymock</groupId>
+  <artifactId>easymock</artifactId>
+  <version>2.4</version>
+  <packaging>jar</packaging>
+  <name>EasyMock</name>
+  <url>http://www.easymock.org</url>
+  <description>EasyMock provides an easy way to create Mock Objects for interfaces by generating them on the fly using Java's proxy mechanism</description>
+  <licenses>
+    <license>
+      <name>MIT License</name>
+      <url>http://www.easymock.org/License.html</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <developers>
+    <developer>
+      <id>tammo</id>
+      <name>Tammo Freese</name>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <id>henri</id>
+      <name>Henri Tremblay</name>
+      <url>http://www.jroller.com/Henri/</url>
+      <organization>Ossia Conseil</organization>
+      <organizationUrl>http://ossia-conseil.com</organizationUrl>      
+      <timezone>+1</timezone>
+    </developer>    
+  </developers>  
+  <issueManagement>
+    <system>SourceForge</system>
+    <url>http://sourceforge.net/tracker/?group_id=82958</url>
+  </issueManagement>  
+  <mailingLists>
+    <mailingList>
+      <name>User List</name>
+      <subscribe>From Yahoo groups</subscribe>
+      <unsubscribe>easymock-unsubscr...@yahoogroups.com</unsubscribe>
+      <post>easym...@yahoogroups.com</post>
+      <archive>http://tech.groups.yahoo.com/group/easymock/</archive>
+    </mailingList>
+  </mailingLists>  
+  <scm>
+    <url>http://easymock.cvs.sourceforge.net/easymock/</url>
+    <developerConnection>scm:cvs:ext:usern...@easymock.cvs.sourceforge.net:/cvsroot/easymock:easymock</developerConnection>
+    <connection>scm:cvs:pserver:anonym...@easymock.cvs.sourceforge.net:/cvsroot/easymock:easymock</connection>
+  </scm>  
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.4</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>${basedir}/src</sourceDirectory>
+    <testSourceDirectory>${basedir}/src-tests</testSourceDirectory>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <index>true</index>
+            <manifestEntries>
+              <EasyMock-Version>${pom.version}</EasyMock-Version>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-sources</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>	  
+	  </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-javadocs</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>	  
+	  </plugin>	  
+      <!-- plugin>
+        <artifactId>maven-clover-plugin</artifactId>
+        <version>2.4</version>
+        <configuration>
+        <licenseLocation>${basedir}/lib/clover.license</licenseLocation>
+        <jdk>1.5</jdk>
+        </configuration>
+        <executions>
+        <execution>
+        <phase>verify</phase>
+        <configuration>
+        <targetPercentage>100%</targetPercentage>
+        </configuration>
+        <goals>
+        <goal>instrument</goal>
+        <goal>check</goal>
+        </goals>
+        </execution>
+        </executions>
+        </plugin-->
+    </plugins>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.wagon</groupId>
+        <artifactId>wagon-ssh-external</artifactId>
+        <version>1.0-beta-2</version>
+      </extension>
+    </extensions>
+  </build>
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <excludePackageNames>*.internal</excludePackageNames>
+          <bottom><![CDATA[<i>Copyright &#169; 2001-2008 OFFIS, Tammo Freese. This documentation is provided under the terms of the MIT licence.</i>]]></bottom>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+  <distributionManagement>
+    <repository>
+      <id>easymock-release</id>
+      <name>EasyMock Repository</name>
+      <url>scpexe://shell.sf.net/home/groups/e/ea/easymock/htdocs/maven/repository</url>
+    </repository>
+    <snapshotRepository>
+      <id>easymock-snapshot</id>
+      <name>EasyMock Snapshot Repository</name>
+      <url>scpexe://shell.sf.net/home/groups/e/ea/easymock/htdocs/maven/repository-snapshot</url>
+    </snapshotRepository>
+  </distributionManagement>
+</project>
diff --git a/debian/libeasymock-java.poms b/debian/libeasymock-java.poms
new file mode 100644
index 0000000..4ffc7fe
--- /dev/null
+++ b/debian/libeasymock-java.poms
@@ -0,0 +1 @@
+debian/easymock-2.4.pom
diff --git a/debian/rules b/debian/rules
index b58c231..b1a0ee9 100755
--- a/debian/rules
+++ b/debian/rules
@@ -63,3 +63,7 @@ check:
 
 upload:
 	dupload -t mentors $(CHANGESFILE)
+
+binary-post-install/libeasymock-java::
+	mh_installpoms -plibeasymock-java
+	mh_installjar -plibeasymock-java -l debian/easymock-$(UPSTREAM_VERSION).pom dist/easymock-$(UPSTREAM_VERSION).jar 
-- 
1.7.1

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message ---
Source: easymock
Source-Version: 2.4+ds1-5

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

easymock_2.4+ds1-5.debian.tar.gz
  to main/e/easymock/easymock_2.4+ds1-5.debian.tar.gz
easymock_2.4+ds1-5.dsc
  to main/e/easymock/easymock_2.4+ds1-5.dsc
libeasymock-java-doc_2.4+ds1-5_all.deb
  to main/e/easymock/libeasymock-java-doc_2.4+ds1-5_all.deb
libeasymock-java_2.4+ds1-5_all.deb
  to main/e/easymock/libeasymock-java_2.4+ds1-5_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 593...@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 easymock 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 13:41:59 +0200
Source: easymock
Binary: libeasymock-java libeasymock-java-doc
Architecture: source all
Version: 2.4+ds1-5
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
Changed-By: Damien Raude-Morvan <draz...@debian.org>
Description: 
 libeasymock-java - Java library to generate Mock Objects for given interfaces
 libeasymock-java-doc - Java library to generate Mock Objects for given 
interfaces (docum
Closes: 593160
Changes: 
 easymock (2.4+ds1-5) unstable; urgency=low
 .
   * Team upload.
 .
   [ Matthias Schmitz ]
   * Install the pom.xml (Closes:#593160):
     - Remove unneeded d/libeasymock-java.dirs.
 .
   [ Damien Raude-Morvan ]
   * Drop Depends on JRE packages since it's a library (as per Debian Java
     Policy).
   * Update Standards-Version: 3.9.2:
     - Rename d/README.Debian-source to debian/README.source
Checksums-Sha1: 
 92eb9a1e269cab7412be25a6bc6133d1ccc59c21 2017 easymock_2.4+ds1-5.dsc
 077f459eb43994d972a82b23b3c071ef91aee508 7599 easymock_2.4+ds1-5.debian.tar.gz
 6f60c2eb3ddeedb8c08e07eb8044a70e2440c039 58412 
libeasymock-java_2.4+ds1-5_all.deb
 a7cc165ed300bf33489b583ab597a4fc7d887947 110972 
libeasymock-java-doc_2.4+ds1-5_all.deb
Checksums-Sha256: 
 ce16e454eb1324cd60624d90eeb9224d0605988e5025dffd71dd0086c3198918 2017 
easymock_2.4+ds1-5.dsc
 f70974813060d28461e8ea9a05b321d98cf97eb430d04aff9b547fa51bcf741a 7599 
easymock_2.4+ds1-5.debian.tar.gz
 067c382393fdb08e80c452e478253ef46709510545a242dac8b11d5edcd7d309 58412 
libeasymock-java_2.4+ds1-5_all.deb
 a6747ce59d06cbd553c23f5294c5ccb7ed3f5b8f1b96b25424e77f79df02cb71 110972 
libeasymock-java-doc_2.4+ds1-5_all.deb
Files: 
 74315525f8f8617ccbd5dc08a86c66f0 2017 java optional easymock_2.4+ds1-5.dsc
 9480e3b7e692561e057ad73ef41100d7 7599 java optional 
easymock_2.4+ds1-5.debian.tar.gz
 cda916b0d41b21bf3c4b5637ce59d068 58412 java optional 
libeasymock-java_2.4+ds1-5_all.deb
 7a5290b863b158138cf0295a9d5ea9a4 110972 doc optional 
libeasymock-java-doc_2.4+ds1-5_all.deb

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

iQIcBAEBCAAGBQJNtWAkAAoJEHXiDM0z50n81OQQAK28EhX1pL4YG9s7E/6bQ67y
bOwNZCXlubyGpVWOuhGdVdI7U+y++JvLeO9GLvfqzlIlECzET3gTVurFysajLkcF
QPJ0PbhcT75l3jP7DMnOwKEEIuNiM83+YbDaKUzLcEn1wrFGXhWqakpxWADUKf1H
nmJgXtiK8gjlv3Xthgg34DUm3XD0TvVVgbHy4EYSc8zEGLqF0+9Uvqjyb1CUk6Bs
xrPnTIdald5dUFeMEibzvyQzLSeLTHAmFtO5Sy199wJY28uLW6FvQTe1x881CtuO
XAeYipYoLIBGhHQTge/4ylaljYj3XkkgEo27ELqITtdo2IZIfQ40fcC7auLNGiNk
ngd2giN/LTzMbH/tVSj3Hc6GqJYOFBm6wJT2+VIubmxwtCDHNlX6CiviBgBcvOpU
OOSj/r+qAcedWju5QrpbZ+utnx/aikc/rNQOrvn2FX+84vpaZgwu3yk4LupgK/IG
v6pWo39jOmgE445wv0E0zlRVdjq6MHUYZ4HGFqOL5pnIaEPoL76AmHJaWbThXykQ
DVL7MA3lnOIysVAk3RRtNdfTztJw2mSN5ry3bnGD8M7KWUQCQO/RHQFFP9MAdlnr
uDcnDLzX1tLoa7MsoodJ4XvJ+XwC4WDPrVCSEVM6SClOieyFGLQRA4hy88mliJdx
Oa/AQNSFqU8hIf/gGvdJ
=Mcme
-----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