Bug#665796: surefire: Surefire plugin fails with NPE for projects which don't depend on JUnit

2012-03-26 Thread James Page
Package: surefire
Version: 2.10-2
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Dear Maintainer,

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

  * d/patches/fix-junit-provider-selection.patch: Updated patch to deal
maven projects which don't have any unit tests/don't depend on
junit which caused a NPE (LP: #965061).

Thanks for considering the patch.


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

Kernel: Linux 3.2.0-20-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.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)

iQIcBAEBCAAGBQJPcC7/AAoJEL/srsug59jD8WsP/RhFasDK+pjUeXOGiPvvfa98
W51uuNCbkXd3x7bILRLTRsszOjV5yn+lBWPuk1wsJGC9rMm9y2IT5+Mv1mcqDbix
2IVmPRw+aqxGmW/aGzFFB/ii2fpGt9z6QEhP4foDco8k1qbxc75zFS+IuMgnYj/5
XajgSk0G3Fjtju+IYy/sfsE2iLxFGJL4vwcjVF9baYgzTMZS/+jQbTmQijl/ICdO
9DBkJfkA8HYkLbJFEuI4U2+PzcDlMmGd796XPYWg5fUwWT5PNVpnucKC6rkqITpY
K1we7tinIwfkQ0Q9TusHVbe+KuLluY0LRfZ15HMxFVgFjLVYqPBC5KpVeNiUd6EZ
bA92XaizCSmA8GJV6fBx50mvs3OvT0DxqpYO2QrTrlZgYW03fUwdCwW3+EHAbT19
zjcEo135Fio/53D1TEPOHKIwxFya4b+kr1uP1z0yN1vWBAfIVR+A/WZ8DaoosypZ
GjO7hx1D6irS1JqC4lA799CipG4rKR/E6v1AMBl3aLu9v6aVPKrNuYpLu4D3vIkM
xxhbTODdrIMmBRVH6i2S05dCTwWfZbEu6rvtkrVNXV605Wd9fp7NQU19UXf3tnko
//qT2bxanBQzZSmmYqNVli2ia5vVRkL8C+JTJWnAJhComTCnt7hPw5rqcSGNJS8u
AgDoLOc1Vl6sLpGoiYIE
=u9af
-END PGP SIGNATURE-
diff -Nru surefire-2.10/debian/changelog surefire-2.10/debian/changelog
diff -Nru surefire-2.10/debian/patches/fix-junit-provider-selection.patch surefire-2.10/debian/patches/fix-junit-provider-selection.patch
--- surefire-2.10/debian/patches/fix-junit-provider-selection.patch	2012-03-19 15:17:26.0 +
+++ surefire-2.10/debian/patches/fix-junit-provider-selection.patch	2012-03-26 09:34:29.0 +0100
@@ -10,21 +10,21 @@
 Index: surefire/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
 ===
 --- surefire.orig/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java	2012-03-19 15:06:03.310108598 +
-+++ surefire/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java	2012-03-19 15:12:27.376393271 +
 surefire/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java	2012-03-26 09:34:20.549223250 +0100
 @@ -311,12 +311,14 @@
  
  private boolean isJunit47Compatible( Artifact artifact )
  {
 -return dependencyResolver.isWithinVersionSpec( artifact, [4.7,) );
 +return ( dependencyResolver.isWithinVersionSpec( artifact, [4.7,) ) ||
-+ 4.x.equals( artifact.getVersion() ) );
++ ( artifact != null  4.x.equals( artifact.getVersion() ) ) );
  }
  
  private boolean isAnyJunit4( Artifact artifact )
  {
 -return dependencyResolver.isWithinVersionSpec( artifact, [4.0,) );
 +return ( dependencyResolver.isWithinVersionSpec( artifact, [4.0,) ) ||
-+ 4.x.equals( artifact.getVersion() ) );
++ ( artifact != null  4.x.equals( artifact.getVersion() ) ) );
  }
  
  boolean isForkModeNever()
__
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.

Bug#665799: maven-debian-helper: jar files installed to /usr/share/java AND /usr/share/maven-repo

2012-03-26 Thread James Page
Package: maven-debian-helper
Version: 1.5
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Dear Maintainer,

Version 1.5 of maven-debian-helper installs jar files to both /usr/share/java
and into /usr/share/maven-repo for the original group/artifact/version path.

This results in a bigger than normal .deb file as the code is installed twice.

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

  * maven-debian-plugin/.../SysInstallMojo.java: Don't install jar
file to /usr/share/maven-repo when also installing to /usr/share/java
- just symlink it (LP: #965054).

I've tested this on packages with install to /usr/share/java and those that 
don't
- - the jars where just installed once with the correct symlinks created.

Thanks for considering the patch.


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

Kernel: Linux 3.2.0-20-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.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)

iQIcBAEBCAAGBQJPcDEQAAoJEL/srsug59jD05YP/R/LV1aQhDHNqNQCYzjXXtMw
jRMvVOdK4SJmlkO20FsI37JrIw8jH9WhwnRrRoG2N+6H8eg+EutMldkeHoN1wDIj
EgB4x3NcPOnELYz3blqwp6dSisqUfPBSC7VniiSp9rrD7iGw6amYtW1bOG/ccLLb
in75elmcVjp8oP/xb2xkL5kUQ8h6VIwWwa3E4Nn4lPfP8uhKwP7TT3XI47fNiRmp
YOYGLLYAAXHu5CjuQEKICpzRK3XPgrPOBdYjczBm34uZEQBnMiSJFJ/yx9yHZvcG
po5HNd+HPIpfEtJ7gpeKHqfxCZMrxmL6FmIiCPniRdga9xF1SPhsNwAYu3BRmIxt
pE8vgBBdpn1IvrNG+CyGkXuKrAjkqb5YMbG4m2Z7LeGztmQd+EznIb99ZNcZvA4n
11CerqVKFjKx5lNRM3/sjq1jKNSnjzMUBuZiJN7WSRk/d+kobtU/G4KOke7Jq7Ly
w3ONsOkoMS2Cu6hv/SsRU0DIe5tmI9WnrK+mZR9/Q8zhX4u3yagpMepky5A4+dOs
D956t3rLEdy4pU1vAJ2PJm2b4vpoNeeat8eYFPTebhA1PJD6YzrNodqnvx6Evr34
Gv4zib6rZDU57z6Qroz/vtve/qUS6/xf92ojAxhC5W6tTdtubCGzJ8r+iGV89Gor
CgenRav0opllHQgCvroU
=mbNH
-END PGP SIGNATURE-
=== modified file 'maven-debian-plugin/src/main/java/org/debian/maven/plugin/SysInstallMojo.java'
--- maven-debian-plugin/src/main/java/org/debian/maven/plugin/SysInstallMojo.java	2012-01-24 23:55:22 +
+++ maven-debian-plugin/src/main/java/org/debian/maven/plugin/SysInstallMojo.java	2012-03-26 08:22:06 +
@@ -460,7 +460,6 @@
 if (jarFile.exists()) {
 System.out.println(Install jar for  + artifactId +  into /usr/share/java);
 mkdir(compatSharePath());
-FileUtils.copyFile(jarFile, new File(jarDestPath()));
 if (noUsjVersionless) {
 FileUtils.copyFile(jarFile, new File(versionedFullCompatPath()));
 } else {

__
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.

Bug#663548: stapler: FTBFS: IO error: opening debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar for read : No such file or directory

2012-03-26 Thread gregor herrmann
tag 663548 + patch
thanks

On Mon, 12 Mar 2012 08:14:09 +0100, Moritz Muehlenhoff wrote:

 Your package fails to build from source:
 
 dh_bugfiles -plibstapler-java 
 dh_install -plibstapler-java  
 dh_link -plibstapler-java  
 dh_buildinfo -plibstapler-java 
 dh_installmime -plibstapler-java 
 dh_installgsettings -plibstapler-java 
 jh_installlibs -plibstapler-java 
 jh_classpath -plibstapler-java 
 IO error: opening 
 debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar for 
 read : No such file or directory 
  at /usr/share/perl5/Archive/Zip/Archive.pm line 546
 Archive::Zip::Archive::read('Archive::Zip::Archive=HASH(0xad8fd0)', 
 'debian/libstapler-java/debian/libstapler-java//usr/share/java...') called at 
 /usr/bin/jh_manifest line 295
 
 main::update_jar('debian/libstapler-java/debian/libstapler-java//usr/share/java...',
  undef) called at /usr/bin/jh_manifest line 142
 jh_manifest: Could not read 
 debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar: No 
 such file or directory
 make: *** [binary-post-install/libstapler-java] Error 1
 dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 
 2

Seems to be fixed in Ubuntu by the maintainer of the package in
Debian, so this will probably come to Debian soon :)

http://patches.ubuntu.com/s/stapler/stapler_1.174-1ubuntu1.patch

Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Funny Van Dannen: Der Kleckerer


signature.asc
Description: Digital signature
__
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.

Processed: Re: Bug#663548: stapler: FTBFS: IO error: opening debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar for read : No such file or directory

2012-03-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 663548 + patch
Bug #663548 [stapler] stapler: FTBFS: IO error: opening 
debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar for 
read : No such file or directory
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
663548: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663548
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

__
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.


libloader 1.1.6.dfsg-4 MIGRATED to testing

2012-03-26 Thread Debian testing watch
FYI: The status of the libloader source package
in Debian's testing distribution has changed.

  Previous version: 1.1.6.dfsg-3
  Current version:  1.1.6.dfsg-4

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.

__
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.


[pkg-java] r15878 - in trunk/surefire/debian: . patches

2012-03-26 Thread Tony Mancill
Author: tmancill
Date: 2012-03-26 18:31:48 + (Mon, 26 Mar 2012)
New Revision: 15878

Modified:
   trunk/surefire/debian/changelog
   trunk/surefire/debian/patches/fix-junit-provider-selection.patch
Log:
patch for #665796

Modified: trunk/surefire/debian/changelog
===
--- trunk/surefire/debian/changelog 2012-03-26 05:12:54 UTC (rev 15877)
+++ trunk/surefire/debian/changelog 2012-03-26 18:31:48 UTC (rev 15878)
@@ -1,3 +1,11 @@
+surefire (2.10-4) unstable; urgency=low
+
+  * Team upload.
+  * Apply updated JUnit 4 detection patch.  (Closes: #665796)
+- Thanks to James Page.
+
+ -- tony mancill tmanc...@debian.org  Mon, 26 Mar 2012 11:27:25 -0700
+
 surefire (2.10-3) unstable; urgency=low
 
   * Team upload.

Modified: trunk/surefire/debian/patches/fix-junit-provider-selection.patch
===
--- trunk/surefire/debian/patches/fix-junit-provider-selection.patch
2012-03-26 05:12:54 UTC (rev 15877)
+++ trunk/surefire/debian/patches/fix-junit-provider-selection.patch
2012-03-26 18:31:48 UTC (rev 15878)
@@ -10,21 +10,21 @@
 Index: 
surefire/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
 ===
 --- 
surefire.orig/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
   2012-03-19 15:06:03.310108598 +
-+++ 
surefire/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
2012-03-19 15:12:27.376393271 +
 
surefire/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
2012-03-26 09:34:20.549223250 +0100
 @@ -311,12 +311,14 @@
  
  private boolean isJunit47Compatible( Artifact artifact )
  {
 -return dependencyResolver.isWithinVersionSpec( artifact, [4.7,) );
 +return ( dependencyResolver.isWithinVersionSpec( artifact, [4.7,) ) 
||
-+ 4.x.equals( artifact.getVersion() ) );
++ ( artifact != null  4.x.equals( artifact.getVersion() ) 
) );
  }
  
  private boolean isAnyJunit4( Artifact artifact )
  {
 -return dependencyResolver.isWithinVersionSpec( artifact, [4.0,) );
 +return ( dependencyResolver.isWithinVersionSpec( artifact, [4.0,) ) 
||
-+ 4.x.equals( artifact.getVersion() ) );
++ ( artifact != null  4.x.equals( artifact.getVersion() ) 
) );
  }
  
  boolean isForkModeNever()


___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


Processing of surefire_2.10-4_amd64.changes

2012-03-26 Thread Debian FTP Masters
surefire_2.10-4_amd64.changes uploaded successfully to localhost
along with the files:
  surefire_2.10-4.dsc
  surefire_2.10-4.debian.tar.gz
  libsurefire-java_2.10-4_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
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.


surefire_2.10-4_amd64.changes ACCEPTED into unstable

2012-03-26 Thread Debian FTP Masters



Accepted:
libsurefire-java_2.10-4_all.deb
  to main/s/surefire/libsurefire-java_2.10-4_all.deb
surefire_2.10-4.debian.tar.gz
  to main/s/surefire/surefire_2.10-4.debian.tar.gz
surefire_2.10-4.dsc
  to main/s/surefire/surefire_2.10-4.dsc


Changes:
surefire (2.10-4) unstable; urgency=low
 .
  * Team upload.
  * Apply updated JUnit 4 detection patch.  (Closes: #665796)
- Thanks to James Page.


Override entries for your package:
libsurefire-java_2.10-4_all.deb - optional java
surefire_2.10-4.dsc - source libs

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 665796 


Thank you for your contribution to Debian.

__
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.


Bug#665796: marked as done (surefire: Surefire plugin fails with NPE for projects which don't depend on JUnit)

2012-03-26 Thread Debian Bug Tracking System
Your message dated Mon, 26 Mar 2012 19:51:03 +
with message-id e1scfwv-0005sv...@franck.debian.org
and subject line Bug#665796: fixed in surefire 2.10-4
has caused the Debian Bug report #665796,
regarding surefire: Surefire plugin fails with NPE for projects which don't 
depend on JUnit
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.)


-- 
665796: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=665796
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: surefire
Version: 2.10-2
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Dear Maintainer,

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

  * d/patches/fix-junit-provider-selection.patch: Updated patch to deal
maven projects which don't have any unit tests/don't depend on
junit which caused a NPE (LP: #965061).

Thanks for considering the patch.


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

Kernel: Linux 3.2.0-20-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.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)

iQIcBAEBCAAGBQJPcC7/AAoJEL/srsug59jD8WsP/RhFasDK+pjUeXOGiPvvfa98
W51uuNCbkXd3x7bILRLTRsszOjV5yn+lBWPuk1wsJGC9rMm9y2IT5+Mv1mcqDbix
2IVmPRw+aqxGmW/aGzFFB/ii2fpGt9z6QEhP4foDco8k1qbxc75zFS+IuMgnYj/5
XajgSk0G3Fjtju+IYy/sfsE2iLxFGJL4vwcjVF9baYgzTMZS/+jQbTmQijl/ICdO
9DBkJfkA8HYkLbJFEuI4U2+PzcDlMmGd796XPYWg5fUwWT5PNVpnucKC6rkqITpY
K1we7tinIwfkQ0Q9TusHVbe+KuLluY0LRfZ15HMxFVgFjLVYqPBC5KpVeNiUd6EZ
bA92XaizCSmA8GJV6fBx50mvs3OvT0DxqpYO2QrTrlZgYW03fUwdCwW3+EHAbT19
zjcEo135Fio/53D1TEPOHKIwxFya4b+kr1uP1z0yN1vWBAfIVR+A/WZ8DaoosypZ
GjO7hx1D6irS1JqC4lA799CipG4rKR/E6v1AMBl3aLu9v6aVPKrNuYpLu4D3vIkM
xxhbTODdrIMmBRVH6i2S05dCTwWfZbEu6rvtkrVNXV605Wd9fp7NQU19UXf3tnko
//qT2bxanBQzZSmmYqNVli2ia5vVRkL8C+JTJWnAJhComTCnt7hPw5rqcSGNJS8u
AgDoLOc1Vl6sLpGoiYIE
=u9af
-END PGP SIGNATURE-
diff -Nru surefire-2.10/debian/changelog surefire-2.10/debian/changelog
diff -Nru surefire-2.10/debian/patches/fix-junit-provider-selection.patch surefire-2.10/debian/patches/fix-junit-provider-selection.patch
--- surefire-2.10/debian/patches/fix-junit-provider-selection.patch	2012-03-19 15:17:26.0 +
+++ surefire-2.10/debian/patches/fix-junit-provider-selection.patch	2012-03-26 09:34:29.0 +0100
@@ -10,21 +10,21 @@
 Index: surefire/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
 ===
 --- surefire.orig/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java	2012-03-19 15:06:03.310108598 +
-+++ surefire/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java	2012-03-19 15:12:27.376393271 +
 surefire/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java	2012-03-26 09:34:20.549223250 +0100
 @@ -311,12 +311,14 @@
  
  private boolean isJunit47Compatible( Artifact artifact )
  {
 -return dependencyResolver.isWithinVersionSpec( artifact, [4.7,) );
 +return ( dependencyResolver.isWithinVersionSpec( artifact, [4.7,) ) ||
-+ 4.x.equals( artifact.getVersion() ) );
++ ( artifact != null  4.x.equals( artifact.getVersion() ) ) );
  }
  
  private boolean isAnyJunit4( Artifact artifact )
  {
 -return dependencyResolver.isWithinVersionSpec( artifact, [4.0,) );
 +return ( dependencyResolver.isWithinVersionSpec( artifact, [4.0,) ) ||
-+ 4.x.equals( artifact.getVersion() ) );
++ ( artifact != null  4.x.equals( artifact.getVersion() ) ) );
  }
  
  boolean isForkModeNever()
---End Message---
---BeginMessage---
Source: surefire
Source-Version: 2.10-4

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

libsurefire-java_2.10-4_all.deb
  to main/s/surefire/libsurefire-java_2.10-4_all.deb
surefire_2.10-4.debian.tar.gz
  to main/s/surefire/surefire_2.10-4.debian.tar.gz
surefire_2.10-4.dsc
  to main/s/surefire/surefire_2.10-4.dsc



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

Thank you for reporting the bug, which will 

Bug#649046: Acknowledgement (tomcat6: openjdk + TOMCAT6_SECURITY=yes = failed start)

2012-03-26 Thread Ed Schaller
Interesting thought on the symlink. Perhaps openjdk should symlink their 
common stuff into their platform specific area. There are standards on 
the JRE/JDK layout but without pulling them I don't know whether it's an 
issue or not.


As there hasn't exactly been a ton of interest in the bug, probably a 
comment in one of the default policy files and/or Readme.debian should 
suffice. That should keep people from having to dig too far. For better 
or worse most folks aren't running tomcat with a security manager. 
Combine that with the number of folks running openjdk instead of a 
sun/oracle JRE/JDK and it likely doesn't affect too many people.


Thanks

--



__
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.


[SCM] jsoup HTML parser branch, master, updated. debian/1.6.1-2-6-g48f7f10

2012-03-26 Thread Jakub Adam
The following commit has been merged in the master branch:
commit 67f94180b6dcf714e58c0bcdde74a43de7c3
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Sun Mar 25 21:53:29 2012 +0200

Add OSGi metadata to JAR manifest

diff --git a/debian/changelog b/debian/changelog
index 722bbd2..a41b3f0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+jsoup (1.6.1-3) UNRELEASED; urgency=low
+
+  * Add OSGi metadata to JAR manifest.
+
+ -- Jakub Adam jakub.a...@ktknet.cz  Sun, 25 Mar 2012 21:32:27 +0200
+
 jsoup (1.6.1-2) unstable; urgency=low
 
   * Fix Uploaders field. (Closes: #640485)
diff --git a/debian/control b/debian/control
index 2f064ae..c4dba4f 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,8 @@ Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Torsten Werner twer...@debian.org
 Build-Depends: debhelper (= 7), cdbs, default-jdk, maven-debian-helper (= 
1.4)
-Build-Depends-Indep: libmaven-javadoc-plugin-java, junit4, default-jdk-doc 
+Build-Depends-Indep: libmaven-javadoc-plugin-java, junit4, default-jdk-doc,
+ libmaven-bundle-plugin-java
 Standards-Version: 3.9.1
 Vcs-Git: git://anonscm.debian.org/pkg-java/jsoup.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/jsoup.git
diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules
index 0ea3c63..c521bf6 100644
--- a/debian/maven.ignoreRules
+++ b/debian/maven.ignoreRules
@@ -14,5 +14,4 @@
 # from the POM
 #   junit junit jar s/3\\..*/3.x/
 
-org.apache.felix maven-bundle-plugin * * * *
 org.apache.maven.plugins maven-source-plugin * * * *
diff --git a/debian/patches/0001-maven-bundle-plugin-is-not-available.patch 
b/debian/patches/0001-maven-bundle-plugin-is-not-available.patch
deleted file mode 100644
index fb5ea4f..000
--- a/debian/patches/0001-maven-bundle-plugin-is-not-available.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From: Torsten Werner twer...@debian.org
-Date: Mon, 29 Aug 2011 15:57:48 +0200
-Subject: [PATCH] maven-bundle-plugin is not available
-

- pom.xml |8 
- 1 files changed, 0 insertions(+), 8 deletions(-)
-
-diff --git a/pom.xml b/pom.xml
-index 6b0dd06..0712070 100644
 a/pom.xml
-+++ b/pom.xml
-@@ -75,14 +75,6 @@
- /executions
-   /plugin
-   plugin
--artifactIdmaven-jar-plugin/artifactId
--configuration
--  archive
--
manifestFile${project.build.outputDirectory}/META-INF/MANIFEST.MF/manifestFile
--  /archive
--/configuration
--  /plugin
--  plugin
- groupIdorg.apache.felix/groupId
- artifactIdmaven-bundle-plugin/artifactId
- version2.1.0/version
--- 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 9985cf6..000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-maven-bundle-plugin-is-not-available.patch

-- 
jsoup HTML parser

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] jsoup HTML parser branch, master, updated. debian/1.6.1-2-6-g48f7f10

2012-03-26 Thread Jakub Adam
The following commit has been merged in the master branch:
commit 7c284eced4033318de179ff5b6496456f74b982f
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Sun Mar 25 22:04:54 2012 +0200

Add myself to Uploaders

diff --git a/debian/changelog b/debian/changelog
index a41b3f0..e549c71 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 jsoup (1.6.1-3) UNRELEASED; urgency=low
 
   * Add OSGi metadata to JAR manifest.
+  * Add Jakub Adam to Uploaders.
 
  -- Jakub Adam jakub.a...@ktknet.cz  Sun, 25 Mar 2012 21:32:27 +0200
 
diff --git a/debian/control b/debian/control
index c4dba4f..9943fe3 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: jsoup
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Torsten Werner twer...@debian.org
+Uploaders: Torsten Werner twer...@debian.org, Jakub Adam 
jakub.a...@ktknet.cz
 Build-Depends: debhelper (= 7), cdbs, default-jdk, maven-debian-helper (= 
1.4)
 Build-Depends-Indep: libmaven-javadoc-plugin-java, junit4, default-jdk-doc,
  libmaven-bundle-plugin-java

-- 
jsoup HTML parser

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] jsoup HTML parser branch, master, updated. debian/1.6.1-2-6-g48f7f10

2012-03-26 Thread Jakub Adam
The following commit has been merged in the master branch:
commit 07faeb0b99f62b9852dce49624b88222bef71dcb
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Sun Mar 25 22:05:40 2012 +0200

Updated Standards-Version to 3.9.3

diff --git a/debian/changelog b/debian/changelog
index e549c71..1643eec 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ jsoup (1.6.1-3) UNRELEASED; urgency=low
 
   * Add OSGi metadata to JAR manifest.
   * Add Jakub Adam to Uploaders.
+  * Update Standards-Version to 3.9.3.
 
  -- Jakub Adam jakub.a...@ktknet.cz  Sun, 25 Mar 2012 21:32:27 +0200
 
diff --git a/debian/control b/debian/control
index 9943fe3..29edf8a 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Uploaders: Torsten Werner twer...@debian.org, Jakub Adam 
jakub.a...@ktknet.cz
 Build-Depends: debhelper (= 7), cdbs, default-jdk, maven-debian-helper (= 
1.4)
 Build-Depends-Indep: libmaven-javadoc-plugin-java, junit4, default-jdk-doc,
  libmaven-bundle-plugin-java
-Standards-Version: 3.9.1
+Standards-Version: 3.9.3
 Vcs-Git: git://anonscm.debian.org/pkg-java/jsoup.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-java/jsoup.git
 Homepage: http://jsoup.org/

-- 
jsoup HTML parser

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] jsoup HTML parser branch, master, updated. debian/1.6.1-2-6-g48f7f10

2012-03-26 Thread Jakub Adam
The following commit has been merged in the master branch:
commit 484e08094fb23f3de086c4871020968513eb2008
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Sun Mar 25 22:11:42 2012 +0200

Fixed syntax-error-in-dep5-copyright lintian warning

diff --git a/debian/changelog b/debian/changelog
index 1643eec..4116cbb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ jsoup (1.6.1-3) UNRELEASED; urgency=low
   * Add OSGi metadata to JAR manifest.
   * Add Jakub Adam to Uploaders.
   * Update Standards-Version to 3.9.3.
+  * Fixed syntax-error-in-dep5-copyright lintian warning.
 
  -- Jakub Adam jakub.a...@ktknet.cz  Sun, 25 Mar 2012 21:32:27 +0200
 
diff --git a/debian/copyright b/debian/copyright
index 99a40ba..460c9d0 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,6 +1,6 @@
-Format: http://dep.debian.net/deps/dep5/
+Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=202
 Upstream-Name: jsoup
-Upstream-Contact:  Jonathan Hedley jonat...@hedley.net as Lead Developer 
+Upstream-Contact: Jonathan Hedley jonat...@hedley.net as Lead Developer
 Source: http://jsoup.org/
 
 Files: *
@@ -9,24 +9,24 @@ License: MIT
 
 Files: debian/*
 Copyright: 2011, Torsten Werner Torsten Werner twer...@debian.org
+   2012, Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 License: MIT
 
 License: MIT
-  Permission is hereby granted, free of charge, to any person obtaining a copy
-  of this software and associated documentation files (the Software), to deal
-  in the Software without restriction, including without limitation the rights
-  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-  copies of the Software, and to permit persons to whom the Software is
-  furnished to do so, subject to the following conditions:
-  
-  The above copyright notice and this permission notice shall be included in
-  all copies or substantial portions of the Software.
-  
-  THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-  SOFTWARE.
-
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the Software), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.

-- 
jsoup HTML parser

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] jsoup HTML parser branch, master, updated. debian/1.6.1-2-6-g48f7f10

2012-03-26 Thread Jakub Adam
The following commit has been merged in the master branch:
commit 2559157487fa964cafbac36baf7db3bb7757fb5c
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Sun Mar 25 22:19:07 2012 +0200

Don't install javadoc jar to maven-repo

Documentation is already in /usr/share/doc/libjsoup-java/api

diff --git a/debian/changelog b/debian/changelog
index 4116cbb..de1db61 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,8 @@ jsoup (1.6.1-3) UNRELEASED; urgency=low
   * Add Jakub Adam to Uploaders.
   * Update Standards-Version to 3.9.3.
   * Fixed syntax-error-in-dep5-copyright lintian warning.
+  * Don't install javadoc jar to maven-repo. Documentation is already
+in /usr/share/doc/libjsoup-java/api
 
  -- Jakub Adam jakub.a...@ktknet.cz  Sun, 25 Mar 2012 21:32:27 +0200
 
diff --git a/debian/rules b/debian/rules
index b76c54a..35f9d6d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,5 +5,7 @@ include /usr/share/cdbs/1/class/maven.mk
 
 JAVA_HOME := /usr/lib/jvm/default-java
 
+DEB_MAVEN_INSTALL_DOC_TARGET :=
+
 get-orig-source:
uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download 
--rename

-- 
jsoup HTML parser

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] jsoup HTML parser branch, master, updated. debian/1.6.1-2-6-g48f7f10

2012-03-26 Thread Jakub Adam
The following commit has been merged in the master branch:
commit 48f7f10ee74954bec60b9e4ddcbd9e6af0bfad48
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Sun Mar 25 23:03:39 2012 +0200

Fix installation of library to /usr/share/java

diff --git a/debian/changelog b/debian/changelog
index de1db61..1aeacaa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ jsoup (1.6.1-3) UNRELEASED; urgency=low
   * Fixed syntax-error-in-dep5-copyright lintian warning.
   * Don't install javadoc jar to maven-repo. Documentation is already
 in /usr/share/doc/libjsoup-java/api
+  * Fix installation of library to /usr/share/java.
 
  -- Jakub Adam jakub.a...@ktknet.cz  Sun, 25 Mar 2012 21:32:27 +0200
 
diff --git a/debian/libjsoup-java.poms b/debian/libjsoup-java.poms
index 9ec5af5..e498ef4 100644
--- a/debian/libjsoup-java.poms
+++ b/debian/libjsoup-java.poms
@@ -23,4 +23,4 @@
 #   --ignore-pom: don't install the POM with mh_install or mh_installpoms. To 
use with POM files that are created
 # temporarily for certain artifacts such as Javadoc jars.
 #
-pom.xml --has-package-version
+pom.xml --has-package-version --java-lib

-- 
jsoup HTML parser

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] stapler packaging branch, master, updated. debian/1.174-1-2-gac406ae

2012-03-26 Thread tony mancill
The following commit has been merged in the master branch:
commit ac406ae69c0e69353dcfadfce19c33561922c524
Author: tony mancill tmanc...@debian.org
Date:   Mon Mar 26 17:29:33 2012 -0700

set DMUA flag; prepare for upload

diff --git a/debian/changelog b/debian/changelog
index 0ffb691..3e37922 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-stapler (1.174-2) UNRELEASED; urgency=low
+stapler (1.174-2) unstable; urgency=low
 
   * Fix FTBFS (Closes: #663548):
 - d/libstapler-java.poms: Add --java-lib to ensure artifacts are 
@@ -7,6 +7,9 @@ stapler (1.174-2) UNRELEASED; urgency=low
 - d/copyright: Updated Format to release specification.
   * d/libstapler-java-doc.lintian-overrides: Dropped - no longer required.
 
+  [tony mancill]
+  * Set DMUA flag.
+
  -- James Page james.p...@ubuntu.com  Tue, 13 Mar 2012 11:51:03 +
 
 stapler (1.174-1) unstable; urgency=low
diff --git a/debian/control b/debian/control
index 2d41dd6..530227b 100644
--- a/debian/control
+++ b/debian/control
@@ -3,6 +3,7 @@ Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: James Page james.p...@ubuntu.com
+DM-Upload-Allowed: yes
 Build-Depends:
  cdbs,
  debhelper (= 7),

-- 
stapler packaging

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


[SCM] stapler packaging annotated tag, debian/1.174-2, created. debian/1.174-2

2012-03-26 Thread tony mancill
The annotated tag, debian/1.174-2 has been created
at  49204a8271c02dab2ea172fb4887f56a2e5216c7 (tag)
   tagging  ac406ae69c0e69353dcfadfce19c33561922c524 (commit)
  replaces  debian/1.174-1
 tagged by  tony mancill
on  Mon Mar 26 17:37:14 2012 -0700

- Shortlog 
Debian release 1.174-2

James Page (1):
  Fix FTBFS (Closes: #663548):

tony mancill (1):
  set DMUA flag; prepare for upload

---

-- 
stapler packaging

___
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits


Processing of stapler_1.174-2_amd64.changes

2012-03-26 Thread Debian FTP Masters
stapler_1.174-2_amd64.changes uploaded successfully to localhost
along with the files:
  stapler_1.174-2.dsc
  stapler_1.174-2.debian.tar.gz
  libstapler-java_1.174-2_all.deb
  libstapler-java-doc_1.174-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

__
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.


stapler_1.174-2_amd64.changes ACCEPTED into unstable

2012-03-26 Thread Debian FTP Masters



Accepted:
libstapler-java-doc_1.174-2_all.deb
  to main/s/stapler/libstapler-java-doc_1.174-2_all.deb
libstapler-java_1.174-2_all.deb
  to main/s/stapler/libstapler-java_1.174-2_all.deb
stapler_1.174-2.debian.tar.gz
  to main/s/stapler/stapler_1.174-2.debian.tar.gz
stapler_1.174-2.dsc
  to main/s/stapler/stapler_1.174-2.dsc


Changes:
stapler (1.174-2) unstable; urgency=low
 .
  * Fix FTBFS (Closes: #663548):
- d/libstapler-java.poms: Add --java-lib to ensure artifacts are
  deployed to /usr/share/java.
  * Bumped Standards-Version: 3.9.3
- d/copyright: Updated Format to release specification.
  * d/libstapler-java-doc.lintian-overrides: Dropped - no longer required.
 .
  [tony mancill]
  * Set DMUA flag.


Override entries for your package:
libstapler-java-doc_1.174-2_all.deb - optional doc
libstapler-java_1.174-2_all.deb - optional java
stapler_1.174-2.dsc - source java

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 663548 


Thank you for your contribution to Debian.

__
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.


Bug#665918: stapler: binary packages contain duplicate jars under /usj and /usr/share/maven-repo

2012-03-26 Thread tony mancill
Package: stapler
Version: 1.174-2
Severity: minor

Bug against stapler to perform an upload once maven-debian-helper #665799
has been addressed.

tony



__
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.


Bug#663548: marked as done (stapler: FTBFS: IO error: opening debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar for read : No such file or directory)

2012-03-26 Thread Debian Bug Tracking System
Your message dated Tue, 27 Mar 2012 00:51:36 +
with message-id e1sckdm-0005bm...@franck.debian.org
and subject line Bug#663548: fixed in stapler 1.174-2
has caused the Debian Bug report #663548,
regarding stapler: FTBFS: IO error: opening 
debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar for 
read : No such file or directory
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.)


-- 
663548: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663548
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: stapler
Version: 1.174-1
Severity: serious

Your package fails to build from source:

dh_bugfiles -plibstapler-java 
dh_install -plibstapler-java  
dh_link -plibstapler-java  
dh_buildinfo -plibstapler-java 
dh_installmime -plibstapler-java 
dh_installgsettings -plibstapler-java 
jh_installlibs -plibstapler-java 
jh_classpath -plibstapler-java 
IO error: opening 
debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar for 
read : No such file or directory 
 at /usr/share/perl5/Archive/Zip/Archive.pm line 546
Archive::Zip::Archive::read('Archive::Zip::Archive=HASH(0xad8fd0)', 
'debian/libstapler-java/debian/libstapler-java//usr/share/java...') called at 
/usr/bin/jh_manifest line 295

main::update_jar('debian/libstapler-java/debian/libstapler-java//usr/share/java...',
 undef) called at /usr/bin/jh_manifest line 142
jh_manifest: Could not read 
debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar: No 
such file or directory
make: *** [binary-post-install/libstapler-java] Error 1
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2


---End Message---
---BeginMessage---
Source: stapler
Source-Version: 1.174-2

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

libstapler-java-doc_1.174-2_all.deb
  to main/s/stapler/libstapler-java-doc_1.174-2_all.deb
libstapler-java_1.174-2_all.deb
  to main/s/stapler/libstapler-java_1.174-2_all.deb
stapler_1.174-2.debian.tar.gz
  to main/s/stapler/stapler_1.174-2.debian.tar.gz
stapler_1.174-2.dsc
  to main/s/stapler/stapler_1.174-2.dsc



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 663...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
James Page james.p...@ubuntu.com (supplier of updated stapler 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: SHA1

Format: 1.8
Date: Tue, 13 Mar 2012 11:51:03 +
Source: stapler
Binary: libstapler-java libstapler-java-doc
Architecture: source all
Version: 1.174-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: James Page james.p...@ubuntu.com
Description: 
 libstapler-java - Stapler HTTP request handling engine
 libstapler-java-doc - Documentation for libstapler-java
Closes: 663548
Changes: 
 stapler (1.174-2) unstable; urgency=low
 .
   * Fix FTBFS (Closes: #663548):
 - d/libstapler-java.poms: Add --java-lib to ensure artifacts are
   deployed to /usr/share/java.
   * Bumped Standards-Version: 3.9.3
 - d/copyright: Updated Format to release specification.
   * d/libstapler-java-doc.lintian-overrides: Dropped - no longer required.
 .
   [tony mancill]
   * Set DMUA flag.
Checksums-Sha1: 
 8c1aca28ed5a0f8fa1103b982ccf440f973a5e36 2580 stapler_1.174-2.dsc
 b7c96311374611699090c944200c628aa911af7d 12496 stapler_1.174-2.debian.tar.gz
 f31d325d476f09dada8f8cdb311697c096c615f2 681230 libstapler-java_1.174-2_all.deb
 fdfc076e0d4a9ee183401cbdbeee6934e771ac2c 1044710 
libstapler-java-doc_1.174-2_all.deb
Checksums-Sha256: 
 3f35006e430f617559879466653e82e4c6b072eea3df35a4b412f80fd2b3110d 2580 
stapler_1.174-2.dsc
 c5f7212b6e92aed20ace8e6545213a4dff48ea8c271143a8fcde8fa8c8221b1a 12496 
stapler_1.174-2.debian.tar.gz
 0ab7f7d5d91cb36e3b83cdfe24e0023139f0b5a1fd4238fb00191f72f1e6f512 681230 
libstapler-java_1.174-2_all.deb
 2c6bc5c0e1fc327598f8cf10fc9c9e9fb3a31c84244b5ab10dcd4e546f7d72c0 1044710 
libstapler-java-doc_1.174-2_all.deb
Files: 
 2001de4b364855f3bba64675f0f8996b 2580 java optional stapler_1.174-2.dsc
 a413bc0e845e4c390753baf9f083e522 12496 java 

Processed: block 665918 with 665799

2012-03-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 665918 with 665799
Bug #665918 [stapler] stapler: binary packages contain duplicate jars under 
/usj and /usr/share/maven-repo
665918 was not blocked by any bugs.
665918 was not blocking any bugs.
Added blocking bug(s) of 665918: 665799
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
665918: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=665918
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

__
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.


Bug#665919: [eclipse] 3.7.2-1 causes locally installed software to be registered but not loaded

2012-03-26 Thread Guy Heatley
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: eclipse
Version: 3.7.2-1
Severity: normal

- --- Please enter the report below this line. ---

The software I locally installed when using the previous version of
Eclipse seems to still be recognised by Eclipse - listed in the
Installed Software tab, on the Installation Details window, but none
of it seems to be usable.
E.g. If I want use the m2e Maven features, they are not available, but I
cannot install them as Eclipse thinks that it has the latest version of
these tools.
Checking for updates seems to update a collection of completely unusable
locally installed software!

Do I need to delete the contents of /home/username/.eclipse and start again?

- --- System information. ---
Architecture: amd64
Kernel:   Linux 3.2.0-2-amd64

Debian Release: wheezy/sid
  500 testing security.debian.org
  500 testing ftp.uk.debian.org

- --- Package information. ---
Depends(Version) | Installed
-+-==
eclipse-jdt (= 3.7.2-1) | 3.7.2-1
eclipse-pde (= 3.7.2-1) | 3.7.2-1
ant   (= 1.8.2) | 1.8.2-4
ant-optional | 1.8.2-4
default-jre  | 1:1.6-47
 OR java5-runtime|
 OR java6-runtime|
eclipse-platform-data   (= 3.7.2-1) | 3.7.2-1
eclipse-rcp  (= 3.7.2-1) | 3.7.2-1
java-common(= 0.23) | 0.47
libcommons-codec-java (= 1.4-2) | 1.5-1
libcommons-el-java(= 1.0-5) | 1.0-7
libcommons-httpclient-java(= 3.1-9) | 3.1-10
libcommons-logging-java (= 1.1.1-6) | 1.1.1-9
libjasper-java   (= 5.5.26) | 5.5.33-3
libjetty-java (= 6.1.24-4~) | 6.1.24-6
libjsch-java   (= 0.1.37-3) | 0.1.42-2
liblucene2-java(= 2.9.4+ds1-3~) | 2.9.4+ds1-4
liblucene2-java   ( 2.9.5) | 2.9.4+ds1-4
libservlet2.5-java (= 6.0.20-8) | 6.0.35-1
sat4j (= 2.3.0) | 2.3.1-1
sat4j ( 2.4.0) | 2.3.1-1
perl | 5.14.2-9
libc6   (= 2.7) | 2.13-27
default-jre  | 1:1.6-47
 OR java5-runtime|
 OR java6-runtime|
eclipse-jdt  (= 3.7.2-1) | 3.7.2-1
eclipse-platform (= 3.7.2-1) | 3.7.2-1
libasm3-java(= 3.3) | 3.3.2-1
default-jre  | 1:1.6-47
 OR java5-runtime|
 OR java6-runtime|
eclipse-platform (= 3.7.2-1) | 3.7.2-1
junit   (= 3.8.2-4) | 3.8.2-8
junit4(= 4.7-3) | 4.10-1
libhamcrest-java (= 1.1-8~) | 1.2-2


Recommends (Version) | Installed
-+-===
eclipse-pde  | 3.7.2-1
default-jdk  | 1:1.6-47
 OR sun-java6-jdk|


Suggests (Version) | Installed
==-+-===
eclipse-jdt| 3.7.2-1
eclipse| 3.7.2-1
eclipse| 3.7.2-1




-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk9xDMIACgkQcVtC8LX0UeY+pwCfaAFEsgaqlh7R6Q7xp2cOelJy
4RsAoL2EabKT6UE7osmWL1kvC8eThU98
=rSD0
-END PGP SIGNATURE-



__
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.