Bug#538871: eclipse: fails to start if xulrunner 1.9.1 is installed

2009-10-17 Thread Sebastian Bremicker
Package: eclipse
Version: 3.4.1-1
Severity: normal


Hi,

 If you have xulrunner-1.9.1, could then please test eclipse by using
 xulrunner-1.9 - You probably have to use a workaround from here [1] (or
 temporarily purging 1.9.1), since the wrapper script /usr/bin/eclipse
 does not properly check for the presence of xulrunner.

I have just installed eclipse 3.4.1-1 and can confirm the bug regarding

 java.lang.RuntimeException: Widget disposed too early!

After purging all xul*- and ice*-stuff eclipse still mentions that there
is no support for integrated browser, but at least eclipse is starting.

Kind regards

Sebastian

-- System Information:
Debian Release: squeeze/sid
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-2-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages eclipse depends on:
ii  eclipse-jdt   3.4.1-1Java Development Tools plug-ins fo
ii  eclipse-pde   3.4.1-1Plug-in Development Environment to
ii  eclipse-source3.4.1-1Eclipse source code plug-ins
ii  libc6 2.9-27 GNU C Library: Shared libraries
ii  zenity2.28.0-1   Display graphical dialog boxes fro

Versions of packages eclipse recommends:
pn  eclipse-gcj   none (no description available)

eclipse suggests no packages.

-- no debconf information



___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#369385: marked as done (libvecmath1.2-java: SVD doesnt work when the matrix is wide (eg. more cols than rows))

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 12:15:05 +0100
with message-id 1255778105.488431.13271.nullmai...@kmos.homeip.net
and subject line Package vecmath1.2 has been removed from Debian
has caused the Debian Bug report #369385,
regarding libvecmath1.2-java: SVD doesnt work when the matrix is wide (eg. more 
cols than rows)
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.)


-- 
369385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=369385
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libvecmath1.2-java
Version: 1.14-3
Severity: normal

Hello,

the SVD will fail if the matrix has more columns than rows. It's because
it will try to copy the matrix to U, which is smaller than this matrix.

See the attached file for testcase.

Regards
Jiri Palecek

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-2) (ignored: LC_ALL set to cs_CZ)

Versions of packages libvecmath1.2-java depends on:
ii  gij-4.1 [java1- 4.1.0-1  The GNU Java bytecode interpreter
ii  jamvm [java1-ru 1.4.2-1  virtual machine which conforms to 
ii  kaffe   2:1.1.6-3A JVM to run Java bytecode
ii  kaffe-pthreads  2:1.1.6-3A POSIX threads enabled version of
ii  sun-j2sdk1.5 [j 1.5.0+update06   Java(TM) 2 SDK, Standard Edition, 
ii  sun-j2se6.0-jre 1.5.9.99+1.6.0beta-1duo1 Sun Java 2 Platform Standard Editi

libvecmath1.2-java recommends no packages.

-- no debconf information
__
Erweitern Sie FreeMail zu einem noch leistungsstärkeren E-Mail-Postfach!

Mehr Infos unter http://freemail.web.de/home/landingpad/?mc=021131

import java.lang.String;
import javax.vecmath.GMatrix;

public class vectst
{
		public static void main(String[] args) {
GMatrix m1=new GMatrix(1,2),m2=new GMatrix(1,1),m3=new GMatrix(1,2),m4=new GMatrix(2,2);
m1.SVD(m2,m3,m4); // crashes
		}
}---End Message---
---BeginMessage---
Version: 1.14-3+rm

You filled the bug http://bugs.debian.org/369385 in Debian BTS
against the package vecmath1.2. I'm closing it at *unstable*, but it will
remain open for older distributions.

For more information about this package's removal, read
http://bugs.debian.org/548753. That bug might give the reasons why
this package was removed and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

--
Marco Rodrigues

---End Message---
___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers

Bug#369381: marked as done (libvecmath1.2-java: desnt work with nonrectangular matricies)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 12:15:05 +0100
with message-id 1255778105.635001.13273.nullmai...@kmos.homeip.net
and subject line Package vecmath1.2 has been removed from Debian
has caused the Debian Bug report #369381,
regarding libvecmath1.2-java: desnt work with nonrectangular matricies
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.)


-- 
369381: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=369381
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libvecmath1.2-java
Version: 1.14-3
Severity: normal

Hello,

there is no way of transposing nonrectangular matricies in libvecmath. The
problem is that x.transpose() doesn't work (throws exception) and
y.transpose(x) calls x.transpose().

See the attached testcase for details.

Regards
Jiri Palecek

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-2) (ignored: LC_ALL set to cs_CZ)

Versions of packages libvecmath1.2-java depends on:
ii  gij-4.1 [java1- 4.1.0-1  The GNU Java bytecode interpreter
ii  jamvm [java1-ru 1.4.2-1  virtual machine which conforms to 
ii  kaffe   2:1.1.6-3A JVM to run Java bytecode
ii  kaffe-pthreads  2:1.1.6-3A POSIX threads enabled version of
ii  sun-j2sdk1.5 [j 1.5.0+update06   Java(TM) 2 SDK, Standard Edition, 
ii  sun-j2se6.0-jre 1.5.9.99+1.6.0beta-1duo1 Sun Java 2 Platform Standard Editi

libvecmath1.2-java recommends no packages.

-- no debconf information
__
Verschicken Sie romantische, coole und witzige Bilder per SMS!
Jetzt bei WEB.DE FreeMail: http://f.web.de/?mc=021193

import java.lang.String;
import javax.vecmath.GMatrix;

public class vectst
{
		public static void main(String[] args) {
GMatrix m1=new GMatrix(1,2),m2=new GMatrix(1,1),m3=new GMatrix(1,2),m4=new GMatrix(2,2);
m1.transpose(); // will crash here
//m1.SVD(m2,m3,m4);
		}
}---End Message---
---BeginMessage---
Version: 1.14-3+rm

You filled the bug http://bugs.debian.org/369381 in Debian BTS
against the package vecmath1.2. I'm closing it at *unstable*, but it will
remain open for older distributions.

For more information about this package's removal, read
http://bugs.debian.org/548753. That bug might give the reasons why
this package was removed and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

--
Marco Rodrigues

---End Message---
___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers

Bug#507536: eclipse: fails to start if xulrunner 1.9.1 is installed

2009-10-17 Thread Niels Thykier

# This is the same problem really - just represented differently
# in different versions and later versions support xulrunner 1.9
forcemerge 507536 538871
retitle 507536 eclipse: fails to start due to xulrunner
tags 507536 = confirmed
severity 507536 grave
# These two are solved by the same solution.
forcemerge 402340 403675
retitle 402340 eclipse: Remove integrated browser warning - Doesnt work
tags 402340 = confirmed pending
severity 507536 important
thanks

Hi Sebastian

Thank you for taking your time to confirm this.

Also you can ignore the No support for integrated browsing warning - at 
best it is actually correct, but often it is wrong. We will definitely 
remove that in the next version of eclipse (see #402340 and #528070 for 
more info on this)


~Niels



___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Processed: Re: eclipse: fails to start if xulrunner 1.9.1 is installed

2009-10-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # This is the same problem really - just represented differently
 # in different versions and later versions support xulrunner 1.9
 forcemerge 507536 538871
Bug#507536: eclipse: undefined symbol: _ZN4nsID5ParseEPKc
Bug#538871: eclipse: Fails to start on amd64
Bug#511713: eclipse won't start
Bug#515747: eclipse: Error on startup: JVM terminated.
Bug#526225: does not start
Forcibly Merged 507536 511713 515747 526225 538871.

 retitle 507536 eclipse: fails to start due to xulrunner
Bug #507536 [eclipse] eclipse: undefined symbol: _ZN4nsID5ParseEPKc
Bug #511713 [eclipse] eclipse won't start
Bug #515747 [eclipse] eclipse: Error on startup: JVM terminated.
Bug #526225 [eclipse] does not start
Bug #538871 [eclipse] eclipse: Fails to start on amd64
Changed Bug title to 'eclipse: fails to start due to xulrunner' from 'eclipse: 
undefined symbol: _ZN4nsID5ParseEPKc'
Changed Bug title to 'eclipse: fails to start due to xulrunner' from 'eclipse 
won't start'
Changed Bug title to 'eclipse: fails to start due to xulrunner' from 'eclipse: 
Error on startup: JVM terminated.'
Changed Bug title to 'eclipse: fails to start due to xulrunner' from 'does not 
start'
Changed Bug title to 'eclipse: fails to start due to xulrunner' from 'eclipse: 
Fails to start on amd64'
 tags 507536 = confirmed
Bug #507536 [eclipse] eclipse: fails to start due to xulrunner
Bug #511713 [eclipse] eclipse: fails to start due to xulrunner
Bug #515747 [eclipse] eclipse: fails to start due to xulrunner
Bug #526225 [eclipse] eclipse: fails to start due to xulrunner
Bug #538871 [eclipse] eclipse: fails to start due to xulrunner
Added tag(s) confirmed; removed tag(s) unreproducible.
Added tag(s) confirmed; removed tag(s) unreproducible.
Added tag(s) confirmed; removed tag(s) unreproducible.
Added tag(s) confirmed; removed tag(s) unreproducible.
Added tag(s) confirmed; removed tag(s) unreproducible.
 severity 507536 grave
Bug #507536 [eclipse] eclipse: fails to start due to xulrunner
Bug #511713 [eclipse] eclipse: fails to start due to xulrunner
Bug #515747 [eclipse] eclipse: fails to start due to xulrunner
Bug #526225 [eclipse] eclipse: fails to start due to xulrunner
Bug #538871 [eclipse] eclipse: fails to start due to xulrunner
Severity set to 'grave' from 'serious'

Severity set to 'grave' from 'serious'

Severity set to 'grave' from 'serious'

Severity set to 'grave' from 'serious'

Severity set to 'grave' from 'serious'

 # These two are solved by the same solution.
 forcemerge 402340 403675
Bug#402340: Integrated browser support not working on upgrading from eclise 
3.1.2 to eclipse 3.2.1
Bug#403675: eclipse: annoying dialog box builtin browser not supported
Forcibly Merged 402340 403675.

 retitle 402340 eclipse: Remove integrated browser warning - Doesnt work
Bug #402340 [eclipse] Integrated browser support not working on upgrading from 
eclise 3.1.2 to eclipse 3.2.1
Bug #403675 [eclipse] eclipse: annoying dialog box builtin browser not 
supported
Changed Bug title to 'eclipse: Remove integrated browser warning - Doesnt 
work' from 'Integrated browser support not working on upgrading from eclise 
3.1.2 to eclipse 3.2.1'
Changed Bug title to 'eclipse: Remove integrated browser warning - Doesnt 
work' from 'eclipse: annoying dialog box builtin browser not supported'
 tags 402340 = confirmed pending
Bug #402340 [eclipse] eclipse: Remove integrated browser warning - Doesnt work
Bug #403675 [eclipse] eclipse: Remove integrated browser warning - Doesnt work
Added tag(s) confirmed.
Added tag(s) confirmed.
 severity 507536 important
Bug #507536 [eclipse] eclipse: fails to start due to xulrunner
Bug #511713 [eclipse] eclipse: fails to start due to xulrunner
Bug #515747 [eclipse] eclipse: fails to start due to xulrunner
Bug #526225 [eclipse] eclipse: fails to start due to xulrunner
Bug #538871 [eclipse] eclipse: fails to start due to xulrunner
Severity set to 'important' from 'grave'

Severity set to 'important' from 'grave'

Severity set to 'important' from 'grave'

Severity set to 'important' from 'grave'

Severity set to 'important' from 'grave'

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#539016: Classic upgrade is different

2009-10-17 Thread Niels Thykier

Hi Jaime

Sorry for the late reply.

Yes, Classic update is different (and inferior); though we will probably 
not fix it in the 3.4.1 series. We have already fixed it in the 3.5.1 
uploaded to Ubuntu earlier this week.


When Ubuntu freezes universe next week, we will return our focus to 
getting eclipse into Debian/experimental.


~Niels



___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Processed: Fix severity.

2009-10-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # too much copy / waste.
 severity 507536 grave
Bug #507536 [eclipse] eclipse: fails to start due to xulrunner
Bug #511713 [eclipse] eclipse: fails to start due to xulrunner
Bug #515747 [eclipse] eclipse: fails to start due to xulrunner
Bug #526225 [eclipse] eclipse: fails to start due to xulrunner
Bug #538871 [eclipse] eclipse: fails to start due to xulrunner
Severity set to 'grave' from 'important'

Severity set to 'grave' from 'important'

Severity set to 'grave' from 'important'

Severity set to 'grave' from 'important'

Severity set to 'grave' from 'important'

 severity 402340 important
Bug #402340 [eclipse] eclipse: Remove integrated browser warning - Doesnt work
Bug #403675 [eclipse] eclipse: Remove integrated browser warning - Doesnt work
Severity set to 'important' from 'normal'

Severity set to 'important' from 'normal'

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Processed (with 1 errors): More fun with eclipse bugs.

2009-10-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 493984 497549
Bug#493984: eclipse-jdt multiple referenced features missing (or wrong 
Bug#497549: [eclipse] plugins not working
Mismatch - only Bugs in the same package can be forcibly merged:
Bug 497549 is not in the same package as 493984
 retitle 493984 eclipse: plugins/features are missing/wrong version
Bug #493984 [eclipse-jdt] eclipse-jdt multiple referenced features missing (or 
wrong 
Changed Bug title to 'eclipse: plugins/features are missing/wrong version' from 
'eclipse-jdt multiple referenced features missing (or wrong '
 # The following have been fixed in our git VCS builds
 tags 493984 = confirmed pending
Bug #493984 [eclipse-jdt] eclipse: plugins/features are missing/wrong version
Added tag(s) confirmed and pending.
 tags 403655 = confirmed pending
Bug #403655 [eclipse-jdt] eclipse-jdt misses core plugin: 
org.eclipse.jdt.apt.core
Added tag(s) pending.
 tags 358594 = confirmed pending
Bug #358594 [eclipse] eclipse binary, desktop/menu things should be in 
eclipse-platform
Added tag(s) pending.
 tags 543318 = confirmed pending
Bug #543318 [libswt3.4-gtk-java] libswt3.4-gtk-java: all the symlinks in 
/usr/lib/java broken
Added tag(s) confirmed and pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#403732: marked as done (eclipse: Crash on startup: Error notifying a preference change listener.)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 16:01:19 +0200 (CEST)
with message-id alpine.deb.2.00.0910171559570.23...@getsu.thykier.net
and subject line Closing - no responds from submitter.
has caused the Debian Bug report #403732,
regarding eclipse: Crash on startup: Error notifying a preference change 
listener.
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.)


-- 
403732: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403732
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: eclipse
Version: 3.2.1-2
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hoi :)

When starting eclipse, I get the following error dialog:

Error notifying a preference change listener. Check the log for
details.

in workspace/.metadata/.log I found the following backtrace:


!SESSION 2006-12-19 13:23:22.248 ---
eclipse.buildId=M20060921-0945
java.fullversion=GNU libgcj 4.1.2 20061115 (prerelease) (Debian 4.1.1-20)
BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=de_DE
Command-line arguments:  -os linux -ws gtk -arch x86

!ENTRY org.eclipse.osgi 2 1 2006-12-19 13:23:38.696
!MESSAGE NLS missing message: initializer_error in: 
org.eclipse.core.internal.runtime.messages

!ENTRY org.eclipse.osgi 2 1 2006-12-19 13:23:38.702
!MESSAGE NLS missing message: fileInitializer_fileNotFound in: 
org.eclipse.core.internal.runtime.messages

!ENTRY org.eclipse.osgi 2 1 2006-12-19 13:23:38.702
!MESSAGE NLS missing message: fileInitializer_IOError in: 
org.eclipse.core.internal.runtime.messages

!ENTRY org.eclipse.osgi 2 1 2006-12-19 13:23:38.702
!MESSAGE NLS missing message: fileInitializer_missingFileName in: 
org.eclipse.core.internal.runtime.messages

!ENTRY org.eclipse.ui.workbench 4 2 2006-12-19 13:24:10.634
!MESSAGE Problems occurred when invoking code from plug-in: 
org.eclipse.ui.workbench.
!STACK 0
java.lang.NullPointerException
   at 
org.eclipse.cdt.internal.ui.text.CTextTools.adaptToPreferenceChange(CTextTools.java:238)
   at 
org.eclipse.cdt.internal.ui.text.CTextTools$PreferenceListener.propertyChange(CTextTools.java:38)
   at 
org.eclipse.ui.preferences.ScopedPreferenceStore$3.run(org.eclipse.ui.workbench_3.2.1.M20060906-0800.jar.so)
   at 
org.eclipse.core.runtime.SafeRunner.run(org.eclipse.equinox.common_3.2.0.v20060603.jar.so)
   at 
org.eclipse.ui.preferences.ScopedPreferenceStore.firePropertyChangeEvent(org.eclipse.ui.workbench_3.2.1.M20060906-0800.jar.so)
   at 
org.eclipse.ui.preferences.ScopedPreferenceStore.setToDefault(org.eclipse.ui.workbench_3.2.1.M20060906-0800.jar.so)
   at 
org.eclipse.ui.texteditor.MarkerAnnotationPreferences.useAnnotationsPreferencePage(org.eclipse.ui.editors_3.2.1.r321_v20060721.jar.so)
   at 
org.eclipse.ui.editors.text.EditorsUI.useAnnotationsPreferencePage(org.eclipse.ui.editors_3.2.1.r321_v20060721.jar.so)
   at 
org.eclipse.cdt.ui.CUIPreferenceInitializer.initializeDefaultPreferences(CUIPreferenceInitializer.java:49)
   at 
org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.runInitializer(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.internal.preferences.PreferenceServiceRegistryHelper.applyRuntimeDefaults(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.internal.preferences.PreferencesService.applyRuntimeDefaults(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.internal.preferences.DefaultPreferences.applyRuntimeDefaults(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.internal.preferences.DefaultPreferences.loadDefaults(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.internal.preferences.DefaultPreferences.load(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.internal.preferences.EclipsePreferences.create(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.internal.preferences.EclipsePreferences.internalNode(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.internal.preferences.EclipsePreferences.node(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.internal.preferences.AbstractScope.getNode(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 
org.eclipse.core.runtime.preferences.DefaultScope.getNode(org.eclipse.equinox.preferences_3.2.1.R32x_v20060717.jar.so)
   at 

Processed: Yet another merge in eclipse (#493984, #497549)

2009-10-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 493984 eclipse
Bug #493984 [eclipse-jdt] eclipse: plugins/features are missing/wrong version
Bug reassigned from package 'eclipse-jdt' to 'eclipse'.
Bug No longer marked as found in versions eclipse/3.2.2-5.
 reassign 497549 eclipse
Bug #497549 [eclipse] [eclipse] plugins not working
Ignoring request to reassign bug #497549 to the same package
 forcemerge 493984 497549
Bug#493984: eclipse: plugins/features are missing/wrong version
Bug#497549: [eclipse] plugins not working
Forcibly Merged 493984 497549.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Processed: wontfix: eclipse-platform doesn't contain eclipserc example anymore

2009-10-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 402077 = wontfix
Bug #402077 [eclipse-platform] eclipse-platform doesn't contain eclipserc 
example anymore
Added tag(s) wontfix.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#402077: wontfix: eclipse-platform doesn't contain eclipserc example anymore

2009-10-17 Thread Niels Thykier

tags 402077 = wontfix
thanks

Hi Andreas

Thank you for interest in eclipse and for your bug report. However, we 
will probably not fix this bug. In the coming eclipse 3.5.1, we have 
changed quite a lot and the whole eclipserc-mechanism (and most of the 
reason for having it) has been removed.


Therefore, we will not provide an example for writing this file anymore as 
it will no longer be used.


Once again thank you for your interest, and I apologise for the late 
reply.


~Niels



___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#551351: libxapool-java: debian/watch

2009-10-17 Thread Yan Morin
Package: libxapool-java
Severity: minor

debian/watch:

version=3
http://download.forge.objectweb.org/xapool/ xapool-([\d.]+)-src\.tgz \
 debian debian/orig-tar.sh

-- System Information:
Debian Release: squeeze/sid
  APT prefers oldstable
  APT policy: (500, 'oldstable'), (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-2-686 (SMP w/1 CPU core)
Locale: LANG=fr_CA.UTF-8, LC_CTYPE=fr_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Processed: your mail

2009-10-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 notfound 505553 3.2.2-5
Bug #505553 [eclipse] eclipse: No information about building source package
There is no source info for the package 'eclipse' at version '3.2.2-5' with 
architecture ''
Unable to make a source version for version '3.2.2-5'
Bug No longer marked as found in versions eclipse/3.2.2-5.
 tags 505553 = patch
Bug #505553 [eclipse] eclipse: No information about building source package
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#505553: (no subject)

2009-10-17 Thread Niels Thykier

notfound 505553 3.2.2-5
tags 505553 = patch
thanks

Hi Andreas

Sorry for the late reply and thank you for your interest in eclipse.

To the best of my knowledge 3.2.2 and eclipse 3.4.1 were built with a 
pristine tarball - the only difference was upstream shipped it as a zip 
file and it was repacked into a tar.gz for Debian. Upstream does have a 
src zip-file, but they do not promote it. It can be found on their 
download site under Other downloads and then scroll a bit down in the 
list (as I recall).


Nevertheless, for 3.5.1 we have decided to ally ourselves with 
eclipse-build and Fedora - Therefore your request makes sense for the 
coming 3.5.1 series and this is why I will keep it open (as a reminder).



For now, if you (or anyone else) are interested in helping out with 
eclipse 3.5.1:


We are using eclipse-build (e-b)[1] and our VCS has moved to git[2]. The 
git repository have all the required files to build eclipse, so you do 
not have to download the tarballs from e-b[1].


You can find us at #eclipse-linux on irc.freenode.net, #debian-java on 
irc.debian.org or per email depending on your preferred means of 
communication. I do not mind answering question specific to packaging 
eclipse - also please reply here if you feel we should add more 
information than this.


I have added patch to encourage people to read this bug if they want to 
help out or wants to know more about how we build eclipse 3.5.1.


~Niels
[1] http://wiki.eclipse.org/Linux_Tools_Project/Eclipse_Build
[2] http://git.debian.org/?p=pkg-java/eclipse.git



___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


commons-httpclient 3.1-6 MIGRATED to testing

2009-10-17 Thread Debian testing watch
FYI: The status of the commons-httpclient source package
in Debian's testing distribution has changed.

  Previous version: 3.1-5
  Current version:  3.1-6

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


doxia 1.1.1-1 MIGRATED to testing

2009-10-17 Thread Debian testing watch
FYI: The status of the doxia source package
in Debian's testing distribution has changed.

  Previous version: 1.1-3
  Current version:  1.1.1-1

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


doxia-sitetools 1.1.1-1 MIGRATED to testing

2009-10-17 Thread Debian testing watch
FYI: The status of the doxia-sitetools source package
in Debian's testing distribution has changed.

  Previous version: 1.1-3
  Current version:  1.1.1-1

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


doxia-maven-plugin 1.1.1-1 MIGRATED to testing

2009-10-17 Thread Debian testing watch
FYI: The status of the doxia-maven-plugin source package
in Debian's testing distribution has changed.

  Previous version: 1.1-2
  Current version:  1.1.1-1

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


eclipse REMOVED from testing

2009-10-17 Thread Debian testing watch
FYI: The status of the eclipse source package
in Debian's testing distribution has changed.

  Previous version: 3.2.2-6.1
  Current version:  (not in testing)
  Hint: http://release.debian.org/britney/hints/luk
# done 2009-10-17
# 542977,521312,507536,511713,515747,526225,538871

The script that generates this mail tries to extract removal
reasons from comments in the britney hint files. Those comments
were not originally meant to be machine readable, so if the
reason for removing your package seems to be nonsense, it is
probably the reporting script that got confused. Please check the
actual hints file before you complain about meaningless removals.

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


maven-docck-plugin 1.0-2 MIGRATED to testing

2009-10-17 Thread Debian testing watch
FYI: The status of the maven-docck-plugin source package
in Debian's testing distribution has changed.

  Previous version: 1.0-1
  Current version:  1.0-2

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


mysql-connector-java 5.1.10+dfsg-2 MIGRATED to testing

2009-10-17 Thread Debian testing watch
FYI: The status of the mysql-connector-java source package
in Debian's testing distribution has changed.

  Previous version: 5.1.6+dfsg-1
  Current version:  5.1.10+dfsg-2

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


tomcat5.5 REMOVED from testing

2009-10-17 Thread Debian testing watch
FYI: The status of the tomcat5.5 source package
in Debian's testing distribution has changed.

  Previous version: 5.5.26-5
  Current version:  (not in testing)
  Hint: Package not in unstable

The script that generates this mail tries to extract removal
reasons from comments in the britney hint files. Those comments
were not originally meant to be machine readable, so if the
reason for removing your package seems to be nonsense, it is
probably the reporting script that got confused. Please check the
actual hints file before you complain about meaningless removals.

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Processed (with 1 errors): Failures with commons-httpclient POM changes

2009-10-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 title 551126 Change in commons-httpclient's Maven pom.xml cause FTBFS
Unknown command or malformed arguments to command.

 severity 551126 serious
Bug #551126 [libcommons-httpclient-java] libcommons-httpclient-java: Maven 
POMs: commons-httpclient is not anymore
Severity set to 'serious' from 'normal'

 block 551242 by 551126
Bug #551242 [src:clirr-maven-plugin] clirr-maven-plugin: FTBFS: Failed to 
resolve artifact
Was not blocked by any bugs.
Added blocking bug(s) of 551242: 551126
 block 551217 by 551126
Bug #551217 [src:doxia-maven-plugin] doxia-maven-plugin: FTBFS: Failed to 
resolve artifact
Was not blocked by any bugs.
Added blocking bug(s) of 551217: 551126
 block 551231 by 551126
Bug #551231 [src:maven-antrun-plugin] maven-antrun-plugin: FTBFS: Failed to 
resolve artifact
Was not blocked by any bugs.
Added blocking bug(s) of 551231: 551126
 block 551227 by 551126
Bug #551227 [src:maven-clean-plugin] maven-clean-plugin: FTBFS: Failed to 
resolve artifact
Was not blocked by any bugs.
Added blocking bug(s) of 551227: 551126
 block 551224 by 551126
Bug #551224 [src:maven-compiler-plugin] maven-compiler-plugin: FTBFS: Failed to 
resolve artifact
Was not blocked by any bugs.
Added blocking bug(s) of 551224: 551126
 block 551218 by 551126
Bug #551218 [src:maven-debian-helper] maven-debian-helper: FTBFS: Failed to 
resolve artifact
Was not blocked by any bugs.
Added blocking bug(s) of 551218: 551126
 block 551221 by 551126
Bug #551221 [src:maven-dependency-plugin] maven-dependency-plugin: FTBFS: 
Failed to resolve artifact
Was not blocked by any bugs.
Added blocking bug(s) of 551221: 551126
 block 551226 by 551126
Bug #551226 [src:maven-docck-plugin] maven-docck-plugin: FTBFS: Failed to 
resolve artifact
Was not blocked by any bugs.
Added blocking bug(s) of 551226: 551126
 block 551214 by 551126
Bug #551214 [src:maven-ear-plugin] maven-ear-plugin: FTBFS: Failed to resolve 
artifact
Was not blocked by any bugs.
Added blocking bug(s) of 551214: 551126
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Processed (with 1 errors): (pas de sujet)

2009-10-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 551126 Change in commons-httpclient's Maven pom.xml cause FTBFS in
Bug #551126 [libcommons-httpclient-java] libcommons-httpclient-java: Maven 
POMs: commons-httpclient is not anymore
Changed Bug title to 'Change in commons-httpclient's Maven pom.xml cause FTBFS 
in' from 'libcommons-httpclient-java: Maven POMs: commons-httpclient is not 
anymore'
 others packages
Unknown command or malformed arguments to command.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


mini-dinstall: Successfully installed lucene2 2.9.0+ds1-1 to unstable

2009-10-17 Thread Mini-Dinstall
Package: lucene2
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Jan-Pascal van Best janpas...@vanbest.org
Architecture: source all
Changes:
  * New upstream version
  * Updated Debian patches for Lucene 2.9
  * Bumped standards version to 3.8.2 (no changes needed)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers



mini-dinstall: Successfully installed commons-httpclient 3.1-7 to unstable

2009-10-17 Thread Mini-Dinstall
Package: commons-httpclient
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Architecture: source all
Changes:
  * Add myself to Uploaders.
  * Revert change from last upload:
- Don't map version of commons-httpclient explicitly. (Closes: #551126)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#551363: azureus: Azureus freezes when multi-announce torrents are added

2009-10-17 Thread John Livingston
Package: azureus
Version: 4.2.0.8-2
Severity: important


Azureus freezes when torrents containing .onion tracker announce URLs are added.
This is due to a bug in Azureus's multi-announce implementation (see
http://faq.vuze.com/?View=entryEntryID=350)  This bug has been corrected 
upstream as of 10/14/09, but persists in the current Debian version.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages azureus depends on:
ii  java-wrappers 0.1.15 wrappers for java executables
ii  libcommons-cli-java   1.2-2  API for working with the command l
ii  liblog4j1.2-java  1.2.15-7   Logging library for java
ii  libswt-gtk-3.4-java   3.4.2-3Standard Widget Toolkit for GTK+ J
ii  sun-java6-jre 6-16-1 Sun Java(TM) Runtime Environment (

Versions of packages azureus recommends:
pn  vuze  none (no description available)

azureus suggests no packages.

-- no debconf information



___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Processing of commons-httpclient_3.1-7_amd64.changes

2009-10-17 Thread Archive Administrator
commons-httpclient_3.1-7_amd64.changes uploaded successfully to localhost
along with the files:
  commons-httpclient_3.1-7.dsc
  commons-httpclient_3.1-7.diff.gz
  libcommons-httpclient-java_3.1-7_all.deb
  libcommons-httpclient-java-doc_3.1-7_all.deb

Greetings,

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


mini-dinstall: Successfully installed clirr-maven-plugin 2.2.2-3 to unstable

2009-10-17 Thread Mini-Dinstall
Package: clirr-maven-plugin
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Architecture: source all
Changes:
  * Add myself to Uploaders.
  * Add a workaround to maven.rules to conform to Debian's Maven Repository
Specification. (But maven-repo-helper should probably be fixed.)

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Processing of doxia-maven-plugin_1.1.1-2_amd64.changes

2009-10-17 Thread Archive Administrator
doxia-maven-plugin_1.1.1-2_amd64.changes uploaded successfully to localhost
along with the files:
  doxia-maven-plugin_1.1.1-2.dsc
  doxia-maven-plugin_1.1.1-2.diff.gz
  libdoxia-maven-plugin-java_1.1.1-2_all.deb

Greetings,

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

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


commons-httpclient_3.1-7_amd64.changes ACCEPTED

2009-10-17 Thread Archive Administrator

Accepted:
commons-httpclient_3.1-7.diff.gz
  to pool/main/c/commons-httpclient/commons-httpclient_3.1-7.diff.gz
commons-httpclient_3.1-7.dsc
  to pool/main/c/commons-httpclient/commons-httpclient_3.1-7.dsc
libcommons-httpclient-java-doc_3.1-7_all.deb
  to pool/main/c/commons-httpclient/libcommons-httpclient-java-doc_3.1-7_all.deb
libcommons-httpclient-java_3.1-7_all.deb
  to pool/main/c/commons-httpclient/libcommons-httpclient-java_3.1-7_all.deb


Override entries for your package:
commons-httpclient_3.1-7.dsc - source libs
libcommons-httpclient-java-doc_3.1-7_all.deb - optional doc
libcommons-httpclient-java_3.1-7_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 551126 551214 551217 551218 551221 551224 551226 551227 551231 
551242 


Thank you for your contribution to Debian.

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


doxia-maven-plugin_1.1.1-2_amd64.changes ACCEPTED

2009-10-17 Thread Archive Administrator

Accepted:
doxia-maven-plugin_1.1.1-2.diff.gz
  to pool/main/d/doxia-maven-plugin/doxia-maven-plugin_1.1.1-2.diff.gz
doxia-maven-plugin_1.1.1-2.dsc
  to pool/main/d/doxia-maven-plugin/doxia-maven-plugin_1.1.1-2.dsc
libdoxia-maven-plugin-java_1.1.1-2_all.deb
  to pool/main/d/doxia-maven-plugin/libdoxia-maven-plugin-java_1.1.1-2_all.deb


Override entries for your package:
doxia-maven-plugin_1.1.1-2.dsc - source java
libdoxia-maven-plugin-java_1.1.1-2_all.deb - optional java

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers


Bug#551242: marked as done (clirr-maven-plugin: FTBFS: Failed to resolve artifact)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 23:03:37 +
with message-id e1mzijf-0004yc...@ries.debian.org
and subject line Bug#551242: fixed in commons-httpclient 3.1-7
has caused the Debian Bug report #551242,
regarding clirr-maven-plugin: FTBFS: Failed to resolve artifact
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.)


-- 
551242: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551242
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: clirr-maven-plugin
Version: 2.2.2-2
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091016 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
 make[1]: Entering directory 
 `/build/user-clirr-maven-plugin_2.2.2-2-amd64-GQbww5/clirr-maven-plugin-2.2.2'
 make[1]: Nothing to be done for `update-config'.
 make[1]: Leaving directory 
 `/build/user-clirr-maven-plugin_2.2.2-2-amd64-GQbww5/clirr-maven-plugin-2.2.2'
 mh_patchpoms -plibclirr-maven-plugin-java --keep-pom-version 
 touch debian/stamp-poms-patched
 /usr/share/maven-debian-helper/copy-repo.sh 
 /build/user-clirr-maven-plugin_2.2.2-2-amd64-GQbww5/clirr-maven-plugin-2.2.2/debian
 cd .  /usr/lib/jvm/default-java/bin/java -noverify -cp 
 /usr/share/maven2/boot/classworlds.jar:/usr/lib/jvm/default-java/lib/tools.jar
  
 -Dproperties.file.manual=/build/user-clirr-maven-plugin_2.2.2-2-amd64-GQbww5/clirr-maven-plugin-2.2.2/debian/maven.properties
  -Dclassworlds.conf=/etc/maven2/m2-debian.conf 
 org.codehaus.classworlds.Launcher  -s/etc/maven2/settings-debian.xml 
 -Dmaven.repo.local=/build/user-clirr-maven-plugin_2.2.2-2-amd64-GQbww5/clirr-maven-plugin-2.2.2/debian/maven-repo
   package
 [INFO] 
 NOTE: Maven is executing in offline mode. Any artifacts not already in your 
 local
 repository will be inaccessible.
 
 [INFO] Scanning for projects...
 [INFO] 
 
 [INFO] Building Clirr Maven Plugin
 [INFO]task-segment: [package]
 [INFO] 
 
 [INFO] 
 
 [ERROR] BUILD ERROR
 [INFO] 
 
 [INFO] Failed to resolve artifact.
 
 Missing:
 --
 1) commons-httpclient:commons-httpclient:jar:3.x
 
   Try downloading the file manually from the project website.
 
   Then, install it using the command: 
   mvn install:install-file -DgroupId=commons-httpclient 
 -DartifactId=commons-httpclient -Dversion=3.x -Dpackaging=jar 
 -Dfile=/path/to/file
 
   Alternatively, if you host your own repository you can deploy the file 
 there: 
   mvn deploy:deploy-file -DgroupId=commons-httpclient 
 -DartifactId=commons-httpclient -Dversion=3.x -Dpackaging=jar 
 -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
 
   Path to dependency: 
   1) org.apache.maven.plugins:maven-plugin-plugin:maven-plugin:2.5
   2) org.apache.maven.doxia:doxia-site-renderer:jar:debian
   3) org.apache.maven.doxia:doxia-core:jar:debian
   4) commons-httpclient:commons-httpclient:jar:3.x
 
 --
 1 required artifact is missing.
 
 for artifact: 
   org.apache.maven.plugins:maven-plugin-plugin:maven-plugin:2.5
 
 from the specified remote repositories:
   central (http://repo1.maven.org/maven2)
 
 
 
 NOTE: Maven is executing in offline mode. Any artifacts not already in your 
 local
 repository will be inaccessible.
 
 
 [INFO] 
 
 [INFO] For more information, run Maven with the -e switch
 [INFO] 
 
 [INFO] Total time: 1 second
 [INFO] Finished at: Fri Oct 16 13:35:11 CEST 2009
 [INFO] Final Memory: 11M/303M
 [INFO] 
 
 make: *** [debian/stamp-maven-build] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/10/16/clirr-maven-plugin_2.2.2-2_lsid64.buildlog

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr 

Bug#551126: marked as done (Change in commons-httpclient's Maven pom.xml cause FTBFS in)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 23:03:35 +
with message-id e1mzijd-0004yf...@ries.debian.org
and subject line Bug#551126: fixed in commons-httpclient 3.1-7
has caused the Debian Bug report #551126,
regarding Change in commons-httpclient's Maven pom.xml cause FTBFS in
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.)


-- 
551126: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551126
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
X-Debbugs-Cc: Michael Koch konque...@gmx.de
Package: libcommons-httpclient-java
Version: 3.1-6
Severity: normal

Hi,

With upload of commons-httpclient 3.1-6, there was a revert on Maven POM 
version mapping :

  --
  commons-httpclient (3.1-6) unstable; urgency=low

* Don't map version of commons-httpclient explicitly.
* Added myself to Uploaders.
* Updated Standards-Version to 3.8.3.

   -- Michael Koch konque...@gmx.de  Mon, 05 Oct 2009 12:23:44 +0200
  --

This update in version mapping change Maven POM's installation from previous :

/usr/share/maven-repo/commons-httpclient/commons-httpclient/3.1/commons-
httpclient-3.1.pom
/usr/share/maven-repo/commons-httpclient/commons-httpclient/3.x/commons-
httpclient-3.x.pom

to new location :

/usr/share/maven-repo/commons-httpclient/commons-httpclient/3.1/commons-
httpclient-3.1.pom
/usr/share/maven-repo/commons-httpclient/commons-httpclient/debian/commons-
httpclient-debian.pom


This have the side effect of FTBFS 25+ packages :

logs/failed-clirr-maven-plugin-2.2.2-2
logs/failed-doxia-maven-plugin-1.1.1-1
logs/failed-maven-antrun-plugin-1.3-1
logs/failed-maven-clean-plugin-2.3-3
logs/failed-maven-compiler-plugin-2.0.2-4
logs/failed-maven-debian-helper-0.6
logs/failed-maven-dependency-plugin-2.1-2
logs/failed-maven-docck-plugin-1.0-2
logs/failed-maven-ear-plugin-2.3.2-1
logs/failed-maven-ejb-plugin-2.2-1
logs/failed-maven-install-plugin-2.3-2
logs/failed-maven-invoker-plugin-1.3-2
logs/failed-maven-jar-plugin-2.2-4
logs/failed-maven-javadoc-plugin-2.5-2
logs/failed-maven-plugin-tools-2.5-2
logs/failed-maven-repository-builder-1.0~alpha2-1
logs/failed-maven-resources-plugin-2.3-5
logs/failed-maven-shade-plugin-1.2.1-2
logs/failed-maven-site-plugin-2.0-2
logs/failed-maven-war-plugin-2.1~beta1-1
logs/failed-modello-maven-plugin-1.1-1
logs/failed-plexus-active-collections-1.0~beta2-1
logs/failed-plexus-component-metadata-1.0~beta3.0.7-2
logs/failed-plexus-maven-plugin-1.3.8-4
logs/failed-surefire-2.4.3-3


Each time error is :

Missing:
--
1) commons-httpclient:commons-httpclient:jar:3.x

  Try downloading the file manually from the project website.

  Then, install it using the command:
  mvn install:install-file -DgroupId=commons-httpclient -
DartifactId=commons-httpclient -Dversion=3.x -Dpackaging=jar -
Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file 
there:
  mvn deploy:deploy-file -DgroupId=commons-httpclient -
DartifactId=commons-httpclient -Dversion=3.x -Dpackaging=jar -
Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency:
1) org.apache.maven.plugins:maven-plugin-plugin:maven-plugin:2.5
2) org.apache.maven.doxia:doxia-site-renderer:jar:debian
3) org.apache.maven.doxia:doxia-core:jar:debian
4) commons-httpclient:commons-httpclient:jar:3.x


We have 2 possible fix :
- revert change to commons-httpclient version mapping - install with 3.x 
instead of standard debian
- fix maven-doxia-plugin to use debian version mapping

But, first, I would like to understand the reasoning behind this change in 
version mapping. Michael could you please describe your process ?

Cheers,
-- 
Damien Raude-Morvan - http://damien.raude-morvan.com/


signature.asc
Description: This is a digitally signed message part.
---End Message---
---BeginMessage---
Source: commons-httpclient
Source-Version: 3.1-7

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

commons-httpclient_3.1-7.diff.gz
  to pool/main/c/commons-httpclient/commons-httpclient_3.1-7.diff.gz
commons-httpclient_3.1-7.dsc
  to pool/main/c/commons-httpclient/commons-httpclient_3.1-7.dsc
libcommons-httpclient-java-doc_3.1-7_all.deb
  to pool/main/c/commons-httpclient/libcommons-httpclient-java-doc_3.1-7_all.deb
libcommons-httpclient-java_3.1-7_all.deb
  to pool/main/c/commons-httpclient/libcommons-httpclient-java_3.1-7_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 

Bug#551231: marked as done (maven-antrun-plugin: FTBFS: Failed to resolve artifact)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 23:03:37 +
with message-id e1mzijf-0004ya...@ries.debian.org
and subject line Bug#551231: fixed in commons-httpclient 3.1-7
has caused the Debian Bug report #551231,
regarding maven-antrun-plugin: FTBFS: Failed to resolve artifact
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.)


-- 
551231: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551231
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: maven-antrun-plugin
Version: 1.3-1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091016 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
  /usr/bin/fakeroot debian/rules clean
 test -x debian/rules
 dh_testroot
 mkdir -p .
 mh_patchpoms -plibmaven-antrun-plugin-java --keep-pom-version 
 touch debian/stamp-poms-patched
 /usr/share/maven-debian-helper/copy-repo.sh 
 /build/user-maven-antrun-plugin_1.3-1-amd64-1WUXR6/maven-antrun-plugin-1.3/debian
 cd .  /usr/lib/jvm/default-java/bin/java -noverify -cp 
 /usr/share/maven2/boot/classworlds.jar:/usr/lib/jvm/default-java/lib/tools.jar
  
 -Dproperties.file.manual=/build/user-maven-antrun-plugin_1.3-1-amd64-1WUXR6/maven-antrun-plugin-1.3/debian/maven.properties
  -Dclassworlds.conf=/etc/maven2/m2-debian.conf 
 org.codehaus.classworlds.Launcher  -s/etc/maven2/settings-debian.xml 
 -Dmaven.repo.local=/build/user-maven-antrun-plugin_1.3-1-amd64-1WUXR6/maven-antrun-plugin-1.3/debian/maven-repo
   clean
 [INFO] 
 NOTE: Maven is executing in offline mode. Any artifacts not already in your 
 local
 repository will be inaccessible.
 
 [INFO] Scanning for projects...
 [INFO] 
 
 [INFO] Building Maven AntRun Plugin
 [INFO]task-segment: [clean]
 [INFO] 
 
 [INFO] [clean:clean {execution: default-clean}]
 [INFO] 
 
 [INFO] BUILD SUCCESSFUL
 [INFO] 
 
 [INFO] Total time:  1 second
 [INFO] Finished at: Fri Oct 16 13:00:31 CEST 2009
 [INFO] Final Memory: 5M/241M
 [INFO] 
 
 rm -f -r 
 /build/user-maven-antrun-plugin_1.3-1-amd64-1WUXR6/maven-antrun-plugin-1.3/debian/maven-repo
  debian/stamp-maven-build
 rm -f debian/*.substvars
 dh_clean 
 mh_unpatchpoms -plibmaven-antrun-plugin-java
 rm -f -f debian/stamp-poms-patched
  dpkg-source -b maven-antrun-plugin-1.3
 dpkg-source: info: using source format `1.0'
 dpkg-source: info: building maven-antrun-plugin using existing 
 maven-antrun-plugin_1.3.orig.tar.gz
 dpkg-source: info: building maven-antrun-plugin in 
 maven-antrun-plugin_1.3-1.diff.gz
 dpkg-source: info: building maven-antrun-plugin in 
 maven-antrun-plugin_1.3-1.dsc
  debian/rules build
 test -x debian/rules
 mkdir -p .
 mh_patchpoms -plibmaven-antrun-plugin-java --keep-pom-version 
 touch debian/stamp-poms-patched
 /usr/share/maven-debian-helper/copy-repo.sh 
 /build/user-maven-antrun-plugin_1.3-1-amd64-1WUXR6/maven-antrun-plugin-1.3/debian
 cd .  /usr/lib/jvm/default-java/bin/java -noverify -cp 
 /usr/share/maven2/boot/classworlds.jar:/usr/lib/jvm/default-java/lib/tools.jar
  
 -Dproperties.file.manual=/build/user-maven-antrun-plugin_1.3-1-amd64-1WUXR6/maven-antrun-plugin-1.3/debian/maven.properties
  -Dclassworlds.conf=/etc/maven2/m2-debian.conf 
 org.codehaus.classworlds.Launcher  -s/etc/maven2/settings-debian.xml 
 -Dmaven.repo.local=/build/user-maven-antrun-plugin_1.3-1-amd64-1WUXR6/maven-antrun-plugin-1.3/debian/maven-repo
   package
 [INFO] 
 NOTE: Maven is executing in offline mode. Any artifacts not already in your 
 local
 repository will be inaccessible.
 
 [INFO] Scanning for projects...
 [INFO] 
 
 [INFO] Building Maven AntRun Plugin
 [INFO]task-segment: [package]
 [INFO] 
 
 [INFO] 
 
 [ERROR] BUILD ERROR
 [INFO] 
 
 [INFO] Failed to resolve artifact.
 
 Missing:
 --
 1) commons-httpclient:commons-httpclient:jar:3.x
 
   Try downloading the file manually from the project website.
 
   Then, install it using the command: 
   mvn 

Bug#551218: marked as done (maven-debian-helper: FTBFS: Failed to resolve artifact)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 23:03:35 +
with message-id e1mzijd-0004yl...@ries.debian.org
and subject line Bug#551218: fixed in commons-httpclient 3.1-7
has caused the Debian Bug report #551218,
regarding maven-debian-helper: FTBFS: Failed to resolve artifact
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.)


-- 
551218: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551218
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: maven-debian-helper
Version: 0.6
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091016 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
  /usr/bin/fakeroot debian/rules clean
 test -x debian/rules
 dh_testroot
 dh_clean 
 cd .  /usr/lib/jvm/default-java/bin/java -classpath 
 /usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/ant-nodeps.jar:/usr/share/java/classworlds.jar:/usr/share/java/maven-core.jar:/usr/share/java/maven-artifact.jar:/usr/share/java/maven-artifact-manager.jar:/usr/share/java/maven-model.jar:/usr/share/java/maven-compat.jar:/usr/share/java/maven-plugin-api.jar:/usr/share/java/maven-project.jar:/usr/share/java/maven-scm-api.jar:/usr/share/java/velocity.jar:/usr/share/java/plexus-utils.jar:/usr/share/java/plexus-container-default-alpha.jar:/usr/share/java/maven-repo-helper.jar:/usr/lib/jvm/default-java/lib/tools.jar
   -Dant.home=/usr/share/ant org.apache.tools.ant.Main 
 -Dpackage=maven-debian-helper -Dbin.package=maven-debian-helper -Dversion=0.6 
   -buildfile debian/build.xml  clean
 Buildfile: debian/build.xml
 
 clean:
 
 clean:
 
 clean:
 
 clean:
 
 clean:
 
 BUILD SUCCESSFUL
 Total time: 0 seconds
 rm -f debian/stamp-ant-build
 rm -rf debian/tmp
 rm -f man/mvn-debian.1
 rm -f man/mvn-debian.1
  dpkg-source -b maven-debian-helper-0.6
 dpkg-source: info: using source format `1.0'
 dpkg-source: info: building maven-debian-helper in 
 maven-debian-helper_0.6.tar.gz
  debian/rules build
 dpkg-source: info: building maven-debian-helper in maven-debian-helper_0.6.dsc
 test -x debian/rules
 mkdir -p debian/tmp
 cp -R bin debian/tmp/
 cp -R etc debian/tmp/
 cp -R share debian/tmp/
 mkdir -p .
 cd .  /usr/lib/jvm/default-java/bin/java -classpath 
 /usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/ant-nodeps.jar:/usr/share/java/classworlds.jar:/usr/share/java/maven-core.jar:/usr/share/java/maven-artifact.jar:/usr/share/java/maven-artifact-manager.jar:/usr/share/java/maven-model.jar:/usr/share/java/maven-compat.jar:/usr/share/java/maven-plugin-api.jar:/usr/share/java/maven-project.jar:/usr/share/java/maven-scm-api.jar:/usr/share/java/velocity.jar:/usr/share/java/plexus-utils.jar:/usr/share/java/plexus-container-default-alpha.jar:/usr/share/java/maven-repo-helper.jar:/usr/lib/jvm/default-java/lib/tools.jar
   -Dant.home=/usr/share/ant org.apache.tools.ant.Main 
 -Dpackage=maven-debian-helper -Dbin.package=maven-debian-helper -Dversion=0.6 
   -buildfile debian/build.xml  package 
 Buildfile: debian/build.xml
 
 package:
 
 init.pom:
  [echo] Base dir is 
 /build/user-maven-debian-helper_0.6-amd64-LtFa4_/maven-debian-helper-0.6
  [echo] Pom name in maven-debian-helper.poms: pom.xml
  [echo] Pom file pom.xml available? true
 
 read.pom:
  [echo] Cleaner options:  --no-parent
  [echo] Cleaning pom 
 /build/user-maven-debian-helper_0.6-amd64-LtFa4_/maven-debian-helper-0.6/pom.xml
  [java] Cleaning POM 
 /build/user-maven-debian-helper_0.6-amd64-LtFa4_/maven-debian-helper-0.6/pom.xml,
  saving the result into 
 /build/user-maven-debian-helper_0.6-amd64-LtFa4_/maven-debian-helper-0.6/debian/tmp/pom.xml
  [copy] Copying 1 file to 
 /build/user-maven-debian-helper_0.6-amd64-LtFa4_/maven-debian-helper-0.6
  [copy] Copying 1 file to 
 /build/user-maven-debian-helper_0.6-amd64-LtFa4_/maven-debian-helper-0.6
  [echo] Properties read from the POM file:
  [echo]   groupId: org.debian.maven
  [echo]   artifactId: maven-debian
 
 init:
  [echo] Compile classpath: target/classes:
  [echo] Test classpath: target/test-classes::target/classes:
 
 process-resources:
 
 process-pom:
 [mkdir] Created dir: 
 /build/user-maven-debian-helper_0.6-amd64-LtFa4_/maven-debian-helper-0.6/target/classes/META-INF/maven/org.debian.maven/maven-debian
  [copy] Copying 2 files to 
 /build/user-maven-debian-helper_0.6-amd64-LtFa4_/maven-debian-helper-0.6/target/classes/META-INF/maven/org.debian.maven/maven-debian
 
 mvn-generate:
 
 mvn-generate2:
 
 

Bug#551214: marked as done (maven-ear-plugin: FTBFS: Failed to resolve artifact)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 23:03:35 +
with message-id e1mzijd-0004yh...@ries.debian.org
and subject line Bug#551214: fixed in commons-httpclient 3.1-7
has caused the Debian Bug report #551214,
regarding maven-ear-plugin: FTBFS: Failed to resolve artifact
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.)


-- 
551214: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551214
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: maven-ear-plugin
Version: 2.3.2-1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091016 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
 make[1]: Entering directory 
 `/build/user-maven-ear-plugin_2.3.2-1-amd64-Nw7gYM/maven-ear-plugin-2.3.2'
 make[1]: Nothing to be done for `update-config'.
 make[1]: Leaving directory 
 `/build/user-maven-ear-plugin_2.3.2-1-amd64-Nw7gYM/maven-ear-plugin-2.3.2'
 mh_patchpoms -plibmaven-ear-plugin-java --keep-pom-version 
 touch debian/stamp-poms-patched
 /usr/share/maven-debian-helper/copy-repo.sh 
 /build/user-maven-ear-plugin_2.3.2-1-amd64-Nw7gYM/maven-ear-plugin-2.3.2/debian
 cd .  /usr/lib/jvm/default-java/bin/java -noverify -cp 
 /usr/share/maven2/boot/classworlds.jar:/usr/lib/jvm/default-java/lib/tools.jar
  
 -Dproperties.file.manual=/build/user-maven-ear-plugin_2.3.2-1-amd64-Nw7gYM/maven-ear-plugin-2.3.2/debian/maven.properties
  -Dclassworlds.conf=/etc/maven2/m2-debian.conf 
 org.codehaus.classworlds.Launcher  -s/etc/maven2/settings-debian.xml 
 -Dmaven.repo.local=/build/user-maven-ear-plugin_2.3.2-1-amd64-Nw7gYM/maven-ear-plugin-2.3.2/debian/maven-repo
   package
 [INFO] 
 NOTE: Maven is executing in offline mode. Any artifacts not already in your 
 local
 repository will be inaccessible.
 
 [INFO] Scanning for projects...
 [INFO] 
 
 [INFO] Building Maven EAR Plugin
 [INFO]task-segment: [package]
 [INFO] 
 
 [INFO] 
 
 [ERROR] BUILD ERROR
 [INFO] 
 
 [INFO] Failed to resolve artifact.
 
 Missing:
 --
 1) commons-httpclient:commons-httpclient:jar:3.x
 
   Try downloading the file manually from the project website.
 
   Then, install it using the command: 
   mvn install:install-file -DgroupId=commons-httpclient 
 -DartifactId=commons-httpclient -Dversion=3.x -Dpackaging=jar 
 -Dfile=/path/to/file
 
   Alternatively, if you host your own repository you can deploy the file 
 there: 
   mvn deploy:deploy-file -DgroupId=commons-httpclient 
 -DartifactId=commons-httpclient -Dversion=3.x -Dpackaging=jar 
 -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
 
   Path to dependency: 
   1) org.apache.maven.plugins:maven-plugin-plugin:maven-plugin:2.5
   2) org.apache.maven.doxia:doxia-site-renderer:jar:debian
   3) org.apache.maven.doxia:doxia-core:jar:debian
   4) commons-httpclient:commons-httpclient:jar:3.x
 
 --
 1 required artifact is missing.
 
 for artifact: 
   org.apache.maven.plugins:maven-plugin-plugin:maven-plugin:2.5
 
 from the specified remote repositories:
   central (http://repo1.maven.org/maven2)
 
 
 
 NOTE: Maven is executing in offline mode. Any artifacts not already in your 
 local
 repository will be inaccessible.
 
 
 [INFO] 
 
 [INFO] For more information, run Maven with the -e switch
 [INFO] 
 
 [INFO] Total time: 1 second
 [INFO] Finished at: Fri Oct 16 13:28:02 CEST 2009
 [INFO] Final Memory: 12M/303M
 [INFO] 
 
 make: *** [debian/stamp-maven-build] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/10/16/maven-ear-plugin_2.3.2-1_lsid64.buildlog

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 

Bug#551221: marked as done (maven-dependency-plugin: FTBFS: Failed to resolve artifact)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 23:03:36 +
with message-id e1mzije-0004yn...@ries.debian.org
and subject line Bug#551221: fixed in commons-httpclient 3.1-7
has caused the Debian Bug report #551221,
regarding maven-dependency-plugin: FTBFS: Failed to resolve artifact
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.)


-- 
551221: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551221
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: maven-dependency-plugin
Version: 2.1-2
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091016 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
 make[1]: Entering directory 
 `/build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1'
 make[1]: Nothing to be done for `update-config'.
 make[1]: Leaving directory 
 `/build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1'
 cd .  /usr/lib/jvm/default-java/bin/java -classpath 
 /usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/ant-nodeps.jar:/usr/share/java/maven-core.jar:/usr/share/java/maven-model.jar:/usr/share/java/maven-plugin-api.jar:/usr/share/java/maven-project.jar:/usr/share/java/maven-artifact.jar:/usr/share/java/maven-artifact-manager.jar:/usr/share/java/maven-dependency-analyzer.jar:/usr/share/java/maven-dependency-tree.jar:/usr/share/java/maven-reporting-api.jar:/usr/share/java/maven-reporting-impl.jar:/usr/share/java/maven-common-artifact-filters.jar:/usr/share/java/doxia-core.jar:/usr/share/java/doxia-logging-api.jar:/usr/share/java/doxia-sink-api.jar:/usr/share/java/doxia-site-renderer.jar:/usr/share/java/plexus-archiver.jar:/usr/share/java/plexus-io.jar:/usr/share/java/plexus-utils.jar:/usr/share/java/plexus-container-default-alpha.jar:/usr/lib/jvm/default-java/lib/tools.jar
   -Dant.home=/usr/share/ant org.apache.tools.ant.Main 
 -Dbasedir=/build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1
  -Dpackage=maven-dependency-plugin -Dversion=2.1   -buildfile 
 /usr/share/maven-ant-helper/maven-build.xml  package 
 Buildfile: /usr/share/maven-ant-helper/maven-build.xml
 
 init.pom:
  [echo] Base dir is 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1
  [echo] Pom name in libmaven-dependency-plugin-java.poms: pom.xml
  [echo] Pom file pom.xml available? true
 
 read.pom:
  [echo] Cleaner options:  --no-parent
 [mkdir] Created dir: 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1/debian/tmp
  [echo] Cleaning pom 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1/pom.xml
  [java] Cleaning POM 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1/pom.xml,
  saving the result into 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1/debian/tmp/pom.xml
  [copy] Copying 1 file to 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1
  [copy] Copying 1 file to 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1
  [echo] Properties read from the POM file:
  [echo]   groupId: org.apache.maven.plugins
  [echo]   artifactId: maven-dependency-plugin
 
 init:
  [echo] Compile classpath: target/classes:
  [echo] Test classpath: target/test-classes::target/classes:
 
 process-resources:
 [mkdir] Created dir: 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1/target/classes
  [copy] Copying 4 files to 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1/target/classes
 
 process-pom:
 [mkdir] Created dir: 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1/target/classes/META-INF/maven/org.apache.maven.plugins/maven-dependency-plugin
  [copy] Copying 2 files to 
 /build/user-maven-dependency-plugin_2.1-2-amd64-C16Pmn/maven-dependency-plugin-2.1/target/classes/META-INF/maven/org.apache.maven.plugins/maven-dependency-plugin
 
 mvn-generate:
 
 mvn-shared-repo:
  [java] + Error stacktraces are turned on.
  [java] [INFO] 
  [java] NOTE: Maven is executing in offline mode. Any artifacts not 
 already in your local
  [java] repository will be inaccessible.
  [java] 
  [java] [INFO] Scanning for projects...
  [java] [INFO] Searching repository for plugin with prefix: 

Bug#551227: marked as done (maven-clean-plugin: FTBFS: Failed to resolve artifact)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 23:03:36 +
with message-id e1mzije-0004yx...@ries.debian.org
and subject line Bug#551227: fixed in commons-httpclient 3.1-7
has caused the Debian Bug report #551227,
regarding maven-clean-plugin: FTBFS: Failed to resolve artifact
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.)


-- 
551227: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551227
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: maven-clean-plugin
Version: 2.3-3
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091016 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
  /usr/bin/fakeroot debian/rules clean
 test -x debian/rules
 dh_testroot
 dh_clean 
 cd .  /usr/lib/jvm/default-java/bin/java -classpath 
 /usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/ant-nodeps.jar:/usr/share/java/maven-core.jar:/usr/share/java/maven-model.jar:/usr/share/java/maven-plugin-api.jar:/usr/share/java/maven-project.jar:/usr/share/java/file-management.jar:/usr/share/java/plexus-utils.jar:/usr/share/java/plexus-container-default-alpha.jar:/usr/lib/jvm/default-java/lib/tools.jar
   -Dant.home=/usr/share/ant org.apache.tools.ant.Main 
 -Dbasedir=/build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3
  -Dpackage=maven-clean-plugin -Dversion=2.3   -buildfile 
 /usr/share/maven-ant-helper/maven-build.xml  clean
 Buildfile: /usr/share/maven-ant-helper/maven-build.xml
 
 clean:
 
 BUILD SUCCESSFUL
 Total time: 0 seconds
 rm -f debian/stamp-ant-build
 rm -rf debian/tmp
  dpkg-source -b maven-clean-plugin-2.3
 dpkg-source: info: using source format `1.0'
 dpkg-source: info: building maven-clean-plugin using existing 
 maven-clean-plugin_2.3.orig.tar.gz
 dpkg-source: info: building maven-clean-plugin in 
 maven-clean-plugin_2.3-3.diff.gz
 dpkg-source: info: building maven-clean-plugin in maven-clean-plugin_2.3-3.dsc
  debian/rules build
 test -x debian/rules
 mkdir -p .
 cd .  /usr/lib/jvm/default-java/bin/java -classpath 
 /usr/share/ant/lib/ant.jar:/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/ant-nodeps.jar:/usr/share/java/maven-core.jar:/usr/share/java/maven-model.jar:/usr/share/java/maven-plugin-api.jar:/usr/share/java/maven-project.jar:/usr/share/java/file-management.jar:/usr/share/java/plexus-utils.jar:/usr/share/java/plexus-container-default-alpha.jar:/usr/lib/jvm/default-java/lib/tools.jar
   -Dant.home=/usr/share/ant org.apache.tools.ant.Main 
 -Dbasedir=/build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3
  -Dpackage=maven-clean-plugin -Dversion=2.3   -buildfile 
 /usr/share/maven-ant-helper/maven-build.xml  package 
 Buildfile: /usr/share/maven-ant-helper/maven-build.xml
 
 init.pom:
  [echo] Base dir is 
 /build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3
  [echo] Pom name in libmaven-clean-plugin-java.poms: pom.xml
  [echo] Pom file pom.xml available? true
 
 read.pom:
  [echo] Cleaner options:  --no-parent
 [mkdir] Created dir: 
 /build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3/debian/tmp
  [echo] Cleaning pom 
 /build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3/pom.xml
  [java] Cleaning POM 
 /build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3/pom.xml,
  saving the result into 
 /build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3/debian/tmp/pom.xml
  [copy] Copying 1 file to 
 /build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3
  [copy] Copying 1 file to 
 /build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3
  [echo] Properties read from the POM file:
  [echo]   groupId: org.apache.maven.plugins
  [echo]   artifactId: maven-clean-plugin
 
 init:
  [echo] Compile classpath: target/classes:
  [echo] Test classpath: target/test-classes::target/classes:
 
 process-resources:
 
 process-pom:
 [mkdir] Created dir: 
 /build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3/target/classes/META-INF/maven/org.apache.maven.plugins/maven-clean-plugin
  [copy] Copying 2 files to 
 /build/user-maven-clean-plugin_2.3-3-amd64-dz_wfD/maven-clean-plugin-2.3/target/classes/META-INF/maven/org.apache.maven.plugins/maven-clean-plugin
 
 mvn-generate:
 
 mvn-shared-repo:
  [java] + Error stacktraces are turned on.
  [java] [INFO] 
  [java] NOTE: Maven is executing in offline mode. Any artifacts not 
 

Bug#551226: marked as done (maven-docck-plugin: FTBFS: Failed to resolve artifact)

2009-10-17 Thread Debian Bug Tracking System
Your message dated Sat, 17 Oct 2009 23:03:36 +
with message-id e1mzije-0004yu...@ries.debian.org
and subject line Bug#551226: fixed in commons-httpclient 3.1-7
has caused the Debian Bug report #551226,
regarding maven-docck-plugin: FTBFS: Failed to resolve artifact
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.)


-- 
551226: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=551226
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: maven-docck-plugin
Version: 1.0-2
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091016 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
  /usr/bin/fakeroot debian/rules clean
 test -x debian/rules
 dh_testroot
 mkdir -p .
 mh_patchpoms -plibmaven-docck-plugin-java --keep-pom-version 
 touch debian/stamp-poms-patched
 /usr/share/maven-debian-helper/copy-repo.sh 
 /build/user-maven-docck-plugin_1.0-2-amd64-63B7PB/maven-docck-plugin-1.0/debian
 cd .  /usr/lib/jvm/default-java/bin/java -noverify -cp 
 /usr/share/maven2/boot/classworlds.jar:/usr/lib/jvm/default-java/lib/tools.jar
  
 -Dproperties.file.manual=/build/user-maven-docck-plugin_1.0-2-amd64-63B7PB/maven-docck-plugin-1.0/debian/maven.properties
  -Dclassworlds.conf=/etc/maven2/m2-debian.conf 
 org.codehaus.classworlds.Launcher  -s/etc/maven2/settings-debian.xml 
 -Dmaven.repo.local=/build/user-maven-docck-plugin_1.0-2-amd64-63B7PB/maven-docck-plugin-1.0/debian/maven-repo
   clean
 [INFO] 
 NOTE: Maven is executing in offline mode. Any artifacts not already in your 
 local
 repository will be inaccessible.
 
 [INFO] Scanning for projects...
 [INFO] 
 
 [INFO] Building Maven Documentation Checker Plugin
 [INFO]task-segment: [clean]
 [INFO] 
 
 [INFO] [clean:clean {execution: default-clean}]
 [INFO] 
 
 [INFO] BUILD SUCCESSFUL
 [INFO] 
 
 [INFO] Total time:  1 second
 [INFO] Finished at: Fri Oct 16 13:07:00 CEST 2009
 [INFO] Final Memory: 5M/241M
 [INFO] 
 
 rm -f -r 
 /build/user-maven-docck-plugin_1.0-2-amd64-63B7PB/maven-docck-plugin-1.0/debian/maven-repo
  debian/stamp-maven-build
 rm -f debian/*.substvars
 dh_clean 
 mh_unpatchpoms -plibmaven-docck-plugin-java
 rm -f -f debian/stamp-poms-patched
  dpkg-source -b maven-docck-plugin-1.0
 dpkg-source: info: using source format `1.0'
 dpkg-source: info: building maven-docck-plugin using existing 
 maven-docck-plugin_1.0.orig.tar.gz
 dpkg-source: info: building maven-docck-plugin in 
 maven-docck-plugin_1.0-2.diff.gz
 dpkg-source: info: building maven-docck-plugin in maven-docck-plugin_1.0-2.dsc
  debian/rules build
 test -x debian/rules
 mkdir -p .
 mh_patchpoms -plibmaven-docck-plugin-java --keep-pom-version 
 touch debian/stamp-poms-patched
 /usr/share/maven-debian-helper/copy-repo.sh 
 /build/user-maven-docck-plugin_1.0-2-amd64-63B7PB/maven-docck-plugin-1.0/debian
 cd .  /usr/lib/jvm/default-java/bin/java -noverify -cp 
 /usr/share/maven2/boot/classworlds.jar:/usr/lib/jvm/default-java/lib/tools.jar
  
 -Dproperties.file.manual=/build/user-maven-docck-plugin_1.0-2-amd64-63B7PB/maven-docck-plugin-1.0/debian/maven.properties
  -Dclassworlds.conf=/etc/maven2/m2-debian.conf 
 org.codehaus.classworlds.Launcher  -s/etc/maven2/settings-debian.xml 
 -Dmaven.repo.local=/build/user-maven-docck-plugin_1.0-2-amd64-63B7PB/maven-docck-plugin-1.0/debian/maven-repo
   package
 [INFO] 
 NOTE: Maven is executing in offline mode. Any artifacts not already in your 
 local
 repository will be inaccessible.
 
 [INFO] Scanning for projects...
 [INFO] 
 
 [INFO] Building Maven Documentation Checker Plugin
 [INFO]task-segment: [package]
 [INFO] 
 
 [INFO] 
 
 [ERROR] BUILD ERROR
 [INFO] 
 
 [INFO] Failed to resolve artifact.
 
 Missing:
 --
 1) commons-httpclient:commons-httpclient:jar:3.x
 
   Try downloading the file manually from the project website.
 
   Then, install it using the command: 
   mvn 

Bug#551058: Bug#551066: javahelp2: Missing icons causes some options to be hidden

2009-10-17 Thread Sylvestre Ledru



 I am not sure if the License for these images is DFSG compatible. The

 LICENSE.html says Sun Microsystems, Inc. Binary Code License

 Agreement. I guess they were removed from debian source due to

 license issues, but may be Marek Slama can clarify about this.

 

 OK. I understand. 

 Anyway, an alternative can be to use an other icon set. It is going to

 be very easy to find remplacement (I can do that if you want).



 Thanks for the quick answers,

 Sylvestre



   

 IIRC even if javahelp sources was open sourced there was still some 

 files with wrong license. I think we removed

 them from original sources to create upstream zip. But it is long time 

 ago so I am not sure.

OK. Thanks for the feedback.

Are you OK if I look for some remplacements with a compatible license and

I insert them into the package ?



Thanks

Sylvestre





___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers