Processed: tagging as pending bugs that are closed by packages in NEW

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

> # Mon Nov  9 07:04:49 UTC 2009
> # Tagging as pending bugs that are closed by packages in NEW
> # http://ftp-master.debian.org/new.html
> #
> # Source package in NEW: libjdom1-java
> tags 506366 + pending
Bug #506366 [libjdom1-java] move api docs to a separate package
Added tag(s) pending.
> # Source package in NEW: libjdom1-java
> tags 538020 + pending
Bug #538020 [libjdom1-java] double build with debhelper 7.3.5
Added tag(s) pending.
> # Source package in NEW: libcloud
> tags 555006 + pending
Bug #555006 [wnpp] ITP: libcloud -- a unified interface to the cloud
Added tag(s) pending.
>
End of message, 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#555225: lucene2: CVE-2007-2383 and CVE-2008-7720 prototypejs vulnerabilities

2009-11-08 Thread Michael Gilbert
package: lucene2
version: 2.3.1+ds1-1
severity: serious
tags: security

Hi,

Your package contains an embedded version of prototype.js that is
vulnerable to either CVE-2007-2383 (affecting prototype.js before 1.5.1)
[0], CVE-2008-7220 (affecting prototype.js before 1.6.0.2) [1], or both.

Your package embeds the following prototype.js versions:

  sid: 1.4.0_pre4
  lenny: 1.4.0_pre4
  etch: N/A

This is a mass-filing, and the only checking done so far is a version
comparison, so please determine whether or not your package is itself
affected or not.  If it is not affected please close the bug with a
message indicating this along with what you did to check.

The version of your package specified above is the earliest version
with the affected embedded code.  If this version is in one or both of
the stable releases and you are affected, please coordinate with the
release team to prepare a proposed-update for your package to
stable/oldstable.

There are patches available for CVE-2007-2383 [2] and a backport for
prototypejs 1.5 for CVE-2008-7720 [3].

If you correct the problem in unstable, please make sure to include the
CVE number in your changelog.

Thank you for your attention to this problem.

Mike

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2383
[1] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-7220
[2] http://dev.rubyonrails.org/ticket/7910
[3] 
http://prototypejs.org/2008/1/25/prototype-1-6-0-2-bug-fixes-performance-improvements-and-security



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


Bug#555226: lucene2: embeds prototype.js

2009-11-08 Thread Michael Gilbert
package: lucene2
version: 2.9.0+ds1-3
severity: important
tags: security

Hi,

Your package embeds prototype.js, which makes security updates very
cumbersome, difficult, and potentially error-prone. Please update your
package to make use of the system prototype.js provided by the
libjs-prototype binary package.

This is a mass-filing, and the only checking done so far is a version
comparison.  If your package for some reason is not affected or already
uses the system prototype.js, please close this bug with a message
indicating that that is the case.

Thank you very much for your attention on this matter.

Mike



___
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-8_amd64.changes ACCEPTED

2009-11-08 Thread Archive Administrator


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


Override entries for your package:
commons-httpclient_3.1-8.dsc - source libs
libcommons-httpclient-java-doc_3.1-8_all.deb - optional doc
libcommons-httpclient-java_3.1-8_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#555170: jamvm: java.util.Logging fails to initialize from main class loaded from Jar file

2009-11-08 Thread Matt Magoffin
Package: jamvm
Version: 1.5.3-2
Severity: normal

When running a main class loaded from a Jar file and hen configuring 
java.util.Logging to 
log to a FileHandle, if the logging formatter includes a SimpleDateFormat 
object the
formatter fails to initialize with a java.lang.NullPointerException.

If the main class is un-jarred and then run again, loading from the file system 
this time,
the logging formatter does initialize correctly. Here is an example test case, 
where
I first run a simple main class via the file system and it does not throw an 
error. The
second time I run from a Jar archive, and configure the logging properties from 
an 
absolute file path, and it still completes successfully. The third time I run 
from a
Jar archive again, but this time include the file system in the classpath and 
configure
the logging properties as a relative path -- and the exception is thrown in 
this case.

so...@ts7260:~/bug$ cat LoggingVerify.java 
import java.util.logging.Logger;

public class LoggingVerify {

private static final Logger LOG = 
Logger.getLogger(LoggingVerify.class.getName());

public static void main(String[] args) {
LOG.info("Hello, log.");
System.out.println("Hello, world.");
}

}

so...@ts7260:~/bug$ cat logging.properties 
handlers = java.util.logging.FileHandler
..level= ALL

java.util.logging.FileHandler.pattern = %t/bug.log

so...@ts7260:~/bug$ java -cp . 
-Djava.util.logging.config.file=logging.properties LoggingVerify
Hello, world.

so...@ts7260:~/bug$ fastjar -cf bug.jar LoggingVerify.class 

so...@ts7260:~/bug$ java -cp bug.jar 
-Djava.util.logging.config.file=~/bug/logging.properties LoggingVerify
Hello, world.

so...@ts7260:~/bug$ java -cp bug.jar:. 
-Djava.util.logging.config.file=logging.properties LoggingVerify
WARNING: error instantiating 'java.util.logging.FileHandler' referenced by 
handlers, linkage error
java.lang.ExceptionInInitializerError
   at java.text.SimpleDateFormat.(SimpleDateFormat.java:455)
   at java.text.SimpleDateFormat.(SimpleDateFormat.java:440)
   at java.util.logging.XMLFormatter.(XMLFormatter.java:85)
   at java.lang.reflect.VMConstructor.construct(Native Method)
   at java.lang.reflect.Constructor.newInstance(Constructor.java:319)
   at java.lang.Class.newInstance(Class.java:1154)
   at java.util.logging.LogManager.getInstanceProperty(LogManager.java:769)
   at java.util.logging.StreamHandler.(StreamHandler.java:138)
   at java.util.logging.FileHandler.(FileHandler.java:380)
   at java.util.logging.FileHandler.(FileHandler.java:296)
   at java.lang.reflect.VMConstructor.construct(Native Method)
   at java.lang.reflect.Constructor.newInstance(Constructor.java:319)
   at java.lang.Class.newInstance(Class.java:1154)
   at java.util.logging.LogManager.createInstance(LogManager.java:854)
   at java.util.logging.LogManager.readConfiguration(LogManager.java:572)
   at java.util.logging.LogManager.readConfiguration(LogManager.java:527)
   at java.util.logging.LogManager.initLogManager(LogManager.java:203)
   at java.util.logging.LogManager.getLogManager(LogManager.java:168)
   at java.util.logging.Logger.getLogger(Logger.java:254)
   at java.util.logging.Logger.getLogger(Logger.java:213)
   at java.util.logging.Logger$1.run(Logger.java:96)
   at java.security.AccessController.doPrivileged(AccessController.java:96)
   at java.util.logging.Logger.(Logger.java:92)
   at gnu.java.util.jar.JarUtils.(JarUtils.java:65)
   at java.util.jar.Manifest.read(Manifest.java:162)
   at java.util.jar.Manifest.(Manifest.java:89)
   at java.util.jar.JarFile.readManifest(JarFile.java:303)
   at java.util.jar.JarFile.(JarFile.java:268)
   at gnu.java.net.protocol.jar.Connection$JarFileCache.get(Connection.java:99)
   at gnu.java.net.protocol.jar.Connection.connect(Connection.java:141)
   at gnu.java.net.protocol.jar.Connection.getJarFile(Connection.java:170)
   at gnu.java.net.loader.JarURLLoader.initialize(JarURLLoader.java:85)
   at gnu.java.net.loader.JarURLLoader.(JarURLLoader.java:76)
   at java.net.URLClassLoader.addURLImpl(URLClassLoader.java:387)
   at java.net.URLClassLoader.addURLs(URLClassLoader.java:418)
   at java.net.URLClassLoader.(URLClassLoader.java:217)
   at java.lang.ClassLoader$1.(ClassLoader.java:1099)
   at java.lang.ClassLoader.createSystemClassLoader(ClassLoader.java:1099)
   at java.lang.ClassLoader.defaultGetSystemClassLoader(ClassLoader.java:1084)
   at java.lang.VMClassLoader.getSystemClassLoader(VMClassLoader.java:301)
   at java.lang.ClassLoader$StaticData.(ClassLoader.java:154)
   at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:799)
Caused by: java.lang.NullPointerException
   at java.lang.ClassLoader.getSystemResource(ClassLoader.java:693)
   at java.lang.ClassLoader.getSystemResourceAsStream(ClassLoader.java:752)
   at java.lang.Class.getResourceAsStream(Class.java:954)
   at java.util.Calendar.(Calendar.java:503)
   at java.text.SimpleDateFormat.(SimpleDateForma

[SCM] FreeHEP Utility Library branch, master, updated. upstream/2.0.2-10-g2491b5b

2009-11-08 Thread Giovanni Mascellani
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FreeHEP Utility Library".

The branch, master has been updated
   via  2491b5bb84b4967c3aa9d624db7bb021f1d3895a (commit)
  from  9b58e10abad404c7bb0ac190d944c8b6330d6ca8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 2491b5bb84b4967c3aa9d624db7bb021f1d3895a
Author: Giovanni Mascellani 
Date:   Sun Nov 8 22:18:33 2009 +0100

Releasing

---

Summary of changes:
 debian/changelog |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d538871..b5dbcff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-freehep-util (2.0.2-1) UNRELEASED; urgency=low
+freehep-util (2.0.2-1) unstable; urgency=low
 
   * Initial release (Closes: #554141)
 
- -- Giovanni Mascellani   Sat, 31 Oct 2009 
16:59:30 +0100
+ -- Giovanni Mascellani   Sun, 08 Nov 2009 
22:18:30 +0100


hooks/post-receive
-- 
FreeHEP Utility Library

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


[SCM] FreeHEP IO library branch, master, updated. upstream/2.0.2-10-gf2437c3

2009-11-08 Thread Giovanni Mascellani
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FreeHEP IO library".

The branch, master has been updated
   via  f2437c37217759826e40d8667f9ad6cdc42c7292 (commit)
  from  a71f28bbb2bd7b7091c34c21b6e84ce5aba4b9f8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit f2437c37217759826e40d8667f9ad6cdc42c7292
Author: Giovanni Mascellani 
Date:   Sun Nov 8 22:14:52 2009 +0100

Releasing

---

Summary of changes:
 debian/changelog |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 72fa6c8..8e0e1e9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,4 +2,4 @@ freehep-io (2.0.2-1) unstable; urgency=low
 
   * Initial release (Closes: #554795)
 
- -- Giovanni Mascellani   Wed, 04 Nov 2009 
14:51:39 +0100
+ -- Giovanni Mascellani   Sun, 08 Nov 2009 
22:14:46 +0100


hooks/post-receive
-- 
FreeHEP IO library

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


[SCM] FreeHEP Character Table Converter branch, master, updated. upstream/2.0-12-g9c8b852

2009-11-08 Thread Giovanni Mascellani
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FreeHEP Character Table Converter".

The branch, master has been updated
   via  9c8b852f3512304893a0c9cf442016bf4cda4d14 (commit)
   via  e25f747ea8d6ef2d8638be996914fe61eb2af74d (commit)
   via  6bff7342f778b4d270eeabcc26f3cfc2ee990ad3 (commit)
  from  c34012bff81804dd896e23515a9ca325a432d0d9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 9c8b852f3512304893a0c9cf442016bf4cda4d14
Author: Giovanni Mascellani 
Date:   Sun Nov 8 22:05:35 2009 +0100

d/watch: no watch available (upstream is SVN)

commit e25f747ea8d6ef2d8638be996914fe61eb2af74d
Author: Giovanni Mascellani 
Date:   Sun Nov 8 22:04:22 2009 +0100

Added years in d/copyright

commit 6bff7342f778b4d270eeabcc26f3cfc2ee990ad3
Author: Giovanni Mascellani 
Date:   Sun Nov 8 22:00:04 2009 +0100

Adding openjdk-6-jre as first dependency alternative to java2-runtime, in 
order
to shut up lintian

---

Summary of changes:
 debian/control   |2 +-
 debian/copyright |   28 ++--
 debian/watch |6 ++
 3 files changed, 17 insertions(+), 19 deletions(-)

diff --git a/debian/control b/debian/control
index 41ec0a6..29cb902 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Homepage: http://java.freehep.org/
 
 Package: libfreehep-chartableconverter-plugin-java
 Architecture: all
-Depends: ${misc:Depends}, ${maven:Depends}, java2-runtime
+Depends: ${misc:Depends}, ${maven:Depends}, openjdk-6-jre | java2-runtime
 Recommends: ${maven:OptionalDepends}
 Description: FreeHEP Character Table Converter
  Converts 16 bit Unicode text files into lookup tables. These tables are
diff --git a/debian/copyright b/debian/copyright
index e7e90d7..4cd47c1 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,20 +4,20 @@ Maintainer: The FreeHEP team
 Source: http://java.freehep.org/
 
 Files: *
-Copyright: © Mark Donszelmann 
-   © Tony Johnson 
-   © Max Turri 
-   © Victor Serbo 
-   © Gary Bower 
-   © Julius Hrivnac 
-   © Cal Loomis 
-   © Joseph Perl 
-   © Peter Armstrong
-   © Simon Fischer
-   © Andre Bach
-   © Partick Hellwig
-   © Sami Kama
-   © Paul Spence
+Copyright: © 2003 - 2007 Mark Donszelmann 
+   © 2003 - 2007 Tony Johnson 
+   © 2003 - 2007 Max Turri 
+   © 2003 - 2007 Victor Serbo 
+   © 2003 - 2007 Gary Bower 
+   © 2003 - 2007 Julius Hrivnac 
+   © 2003 - 2007 Cal Loomis 
+   © 2003 - 2007 Joseph Perl 
+   © 2003 - 2007 Peter Armstrong
+   © 2003 - 2007 Simon Fischer
+   © 2003 - 2007 Andre Bach
+   © 2003 - 2007 Partick Hellwig
+   © 2003 - 2007 Sami Kama
+   © 2003 - 2007 Paul Spence
 License: LGPL-2.1+
   On Debian GNU/Linux system you can find the complete text of the
   LGPL-2.1 license in '/usr/share/common-licenses/LGPL-2.1'
diff --git a/debian/watch b/debian/watch
index b6048eb..f1fc674 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,4 +1,2 @@
-version=3
-opts="uversionmangle=s/-(alpha|beta)-/~$1/" \
-  svn://svn.freehep.org/svn/freehep/tags/ \
-  freehep-chartableconverter-plugin-(\d.*)/ debian debian/orig-tar.sh
+# Watch file missing, because upstream releases are available only via
+# SVN, but uscan is unable to read in a SVN repository.


hooks/post-receive
-- 
FreeHEP Character Table Converter

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

[SCM] FreeHEP Utility Library branch, master, updated. upstream/2.0.2-9-g9b58e10

2009-11-08 Thread Giovanni Mascellani
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FreeHEP Utility Library".

The branch, master has been updated
   via  9b58e10abad404c7bb0ac190d944c8b6330d6ca8 (commit)
  from  25c03352196c8ea28d5ef1fbfc7cd76a96f24856 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 9b58e10abad404c7bb0ac190d944c8b6330d6ca8
Author: Giovanni Mascellani 
Date:   Sun Nov 8 22:07:39 2009 +0100

Minor fixes

---

Summary of changes:
 debian/control   |2 +-
 debian/copyright |   28 ++--
 debian/watch |6 ++
 3 files changed, 17 insertions(+), 19 deletions(-)

diff --git a/debian/control b/debian/control
index cc903b6..c43d4b6 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Homepage: http://java.freehep.org/
 
 Package: libfreehep-util-java
 Architecture: all
-Depends: ${misc:Depends}, ${maven:Depends}, netbeans-platform, java2-runtime
+Depends: ${misc:Depends}, ${maven:Depends}, netbeans-platform, openjdk-6-jre | 
java2-runtime
 Recommends: ${maven:OptionalDepends}
 Description: FreeHEP utility library
  Miscellaneous utility library used by other components of FreeHEP.
diff --git a/debian/copyright b/debian/copyright
index 7ebf4fd..848d5fb 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,20 +4,20 @@ Maintainer: The FreeHEP team
 Source: http://java.freehep.org/
 
 Files: *
-Copyright: © Mark Donszelmann 
-   © Tony Johnson 
-   © Max Turri 
-   © Victor Serbo 
-   © Gary Bower 
-   © Julius Hrivnac 
-   © Cal Loomis 
-   © Joseph Perl 
-   © Peter Armstrong
-   © Simon Fischer
-   © Andre Bach
-   © Partick Hellwig
-   © Sami Kama
-   © Paul Spence
+Copyright: © 2003 - 2007 Mark Donszelmann 
+   © 2003 - 2007 Tony Johnson 
+   © 2003 - 2007 Max Turri 
+   © 2003 - 2007 Victor Serbo 
+   © 2003 - 2007 Gary Bower 
+   © 2003 - 2007 Julius Hrivnac 
+   © 2003 - 2007 Cal Loomis 
+   © 2003 - 2007 Joseph Perl 
+   © 2003 - 2007 Peter Armstrong
+   © 2003 - 2007 Simon Fischer
+   © 2003 - 2007 Andre Bach
+   © 2003 - 2007 Partick Hellwig
+   © 2003 - 2007 Sami Kama
+   © 2003 - 2007 Paul Spence
 License: LGPL-2.1+
   On Debian GNU/Linux system you can find the complete text of the
   LGPL-2.1 license in '/usr/share/common-licenses/LGPL-2.1'
diff --git a/debian/watch b/debian/watch
index 4aa862f..f1fc674 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,4 +1,2 @@
-version=3
-opts="uversionmangle=s/-(alpha|beta)-/~$1/" \
-  svn://svn.freehep.org/svn/freehep/tags/ \
-  freehep-util-(\d.*)/ debian debian/orig-tar.sh
+# Watch file missing, because upstream releases are available only via
+# SVN, but uscan is unable to read in a SVN repository.


hooks/post-receive
-- 
FreeHEP Utility Library

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

[SCM] FreeHEP IO library branch, master, updated. upstream/2.0.2-9-ga71f28b

2009-11-08 Thread Giovanni Mascellani
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FreeHEP IO library".

The branch, master has been updated
   via  a71f28bbb2bd7b7091c34c21b6e84ce5aba4b9f8 (commit)
  from  3e2a2c33c9e4346ed73cb8bf42125e0a7d70bec4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit a71f28bbb2bd7b7091c34c21b6e84ce5aba4b9f8
Author: Giovanni Mascellani 
Date:   Sun Nov 8 22:08:59 2009 +0100

Minor fixes

---

Summary of changes:
 debian/control   |2 +-
 debian/copyright |   28 ++--
 debian/watch |6 ++
 3 files changed, 17 insertions(+), 19 deletions(-)

diff --git a/debian/control b/debian/control
index 198b5d1..7e42105 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Homepage: http://java.freehep.org/
 
 Package: libfreehep-io-java
 Architecture: all
-Depends: ${misc:Depends}, ${maven:Depends}, java2-runtime, netbeans-platform
+Depends: ${misc:Depends}, ${maven:Depends}, openjdk-6-jre | java2-runtime, 
netbeans-platform
 Recommends: ${maven:OptionalDepends}
 Description: FreeHEP I/O library
  General I/O related libraries for FreeHEP.
diff --git a/debian/copyright b/debian/copyright
index f97864f..268d6a5 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,20 +4,20 @@ Maintainer: The FreeHEP team
 Source: http://java.freehep.org/
 
 Files: *
-Copyright: © Mark Donszelmann 
-   © Tony Johnson 
-   © Max Turri 
-   © Victor Serbo 
-   © Gary Bower 
-   © Julius Hrivnac 
-   © Cal Loomis 
-   © Joseph Perl 
-   © Peter Armstrong
-   © Simon Fischer
-   © Andre Bach
-   © Partick Hellwig
-   © Sami Kama
-   © Paul Spence
+Copyright: © 2003 - 2007 Mark Donszelmann 
+   © 2003 - 2007 Tony Johnson 
+   © 2003 - 2007 Max Turri 
+   © 2003 - 2007 Victor Serbo 
+   © 2003 - 2007 Gary Bower 
+   © 2003 - 2007 Julius Hrivnac 
+   © 2003 - 2007 Cal Loomis 
+   © 2003 - 2007 Joseph Perl 
+   © 2003 - 2007 Peter Armstrong
+   © 2003 - 2007 Simon Fischer
+   © 2003 - 2007 Andre Bach
+   © 2003 - 2007 Partick Hellwig
+   © 2003 - 2007 Sami Kama
+   © 2003 - 2007 Paul Spence
 License: LGPL-2.1+
   On Debian GNU/Linux system you can find the complete text of the
   LGPL-2.1 license in '/usr/share/common-licenses/LGPL-2.1'
diff --git a/debian/watch b/debian/watch
index b8371f3..f1fc674 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,4 +1,2 @@
-version=3
-opts="uversionmangle=s/-(alpha|beta)-/~$1/" \
-  svn://svn.freehep.org/svn/freehep/tags/ \
-  freehep-io-(\d.*)/ debian debian/orig-tar.sh
+# Watch file missing, because upstream releases are available only via
+# SVN, but uscan is unable to read in a SVN repository.


hooks/post-receive
-- 
FreeHEP IO library

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

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

2009-11-08 Thread Archive Administrator
commons-httpclient_3.1-8_amd64.changes uploaded successfully to localhost
along with the files:
  commons-httpclient_3.1-8.dsc
  commons-httpclient_3.1-8.diff.gz
  libcommons-httpclient-java_3.1-8_all.deb
  libcommons-httpclient-java-doc_3.1-8_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


[pkg-java] r11041 - tags/commons-httpclient

2009-11-08 Thread Torsten Werner
Author: twerner
Date: 2009-11-08 21:03:34 + (Sun, 08 Nov 2009)
New Revision: 11041

Added:
   tags/commons-httpclient/3.1-8/
Log:
[svn-buildpackage] Tagging commons-httpclient (3.1-8)


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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. b1acc83825a61c1451b1ca26d1078801eb609259

2009-11-08 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  b1acc83825a61c1451b1ca26d1078801eb609259 (commit)
  from  4e7ca11307a658434fa4acecd1721bf8e7cc916a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit b1acc83825a61c1451b1ca26d1078801eb609259
Author: Benjamin Drung 
Date:   Sun Nov 8 21:53:29 2009 +0100

Fix some typos in README.source

---

Summary of changes:
 debian/README.source |   16 
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/debian/README.source b/debian/README.source
index 4ce9578..d8c8954 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -11,34 +11,34 @@ Creating orig.tar.gz
 
 
 The orig.tar.gz contains both the "packaging" ("eclipse-build") source
-from "Linux Tools" eclipse subproject as well as "eclipse" source code
+from "Linux Tools" Eclipse subproject as well as "eclipse" source code
 modified by the Linux Tools subproject.
 
 Constructing the orig.tar.gz is done via the following steps:
  * Fetch the eclipse-build from Linux Tools. [1]
  * Fetch and extract the "fetched-src" tarball from eclipse-build into
-   a folder called eclipse-$VERSION; this folder should be a subdir of
-   the eclipse-build sources fetched in the previous step.
+   a folder called eclipse-$VERSION; this folder should be a subdirectory
+   of the eclipse-build sources fetched in the previous step.
(See watch file or [1] for a link).
  * tar gzip it.
 
 The tree should look like this (excluding "uninteresting" files
 and folders):
 
-eclipse-build/ # svn checkout or extracted from tar.gz
-|-- eclipse-build-config/ # Separate svn checkout
-|-- eclipse-build-feature/ # Separate svn checkout
+eclipse-build/ # SVN checkout or extracted from tar.gz
+|-- eclipse-build-config/ # Separate SVN checkout
+|-- eclipse-build-feature/ # Separate SVN checkout
 |-- eclipse-$VERSION/ #The extracted "fetched-src"
 `--  # "uninteresting" files/dirs.
 
 The folder called "eclipse-build" here should be root of the tar.gz.
 
-[1] The Debian package uses svn checkout, see link below.
+[1] The Debian package uses SVN checkout, see link below.
 
 There also normal tar.gz's available from Linux Tools; though their
 usefulness may be rather limited due to the package here being based
 on svn snapshots.
 
 There is more information about compiling eclipse using Linux Tools'
-eclipse-build along with URLs for svn and source download links:
+eclipse-build along with URLs for SVN and source download links:
 http://wiki.eclipse.org/Linux_Tools_Project/Eclipse_Build


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


Processed: Tagging #505553 as pending

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

> # One more bug down; 12 left
> tags 505553 + pending
Bug #505553 [eclipse] eclipse: No information about building source package
Added tag(s) 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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. 4e7ca11307a658434fa4acecd1721bf8e7cc916a

2009-11-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  4e7ca11307a658434fa4acecd1721bf8e7cc916a (commit)
  from  4e268920d0a7f8fee598ca836087ea7ca96338bc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 4e7ca11307a658434fa4acecd1721bf8e7cc916a
Author: Niels Thykier 
Date:   Sun Nov 8 21:39:51 2009 +0100

Added information about how to create orig.tar.gz.

---

Summary of changes:
 debian/README.source |   39 +++
 debian/changelog |2 ++
 2 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/debian/README.source b/debian/README.source
index de4e4e1..4ce9578 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -1,5 +1,44 @@
+Patches
+===
+
 This package uses quilt to manage all modifications to the upstream
 source. Changes are stored in the source package as diffs in
 debian/patches and applied during the build.
 
 For more information about quilt, see /usr/share/doc/quilt/README.source
+
+Creating orig.tar.gz
+
+
+The orig.tar.gz contains both the "packaging" ("eclipse-build") source
+from "Linux Tools" eclipse subproject as well as "eclipse" source code
+modified by the Linux Tools subproject.
+
+Constructing the orig.tar.gz is done via the following steps:
+ * Fetch the eclipse-build from Linux Tools. [1]
+ * Fetch and extract the "fetched-src" tarball from eclipse-build into
+   a folder called eclipse-$VERSION; this folder should be a subdir of
+   the eclipse-build sources fetched in the previous step.
+   (See watch file or [1] for a link).
+ * tar gzip it.
+
+The tree should look like this (excluding "uninteresting" files
+and folders):
+
+eclipse-build/ # svn checkout or extracted from tar.gz
+|-- eclipse-build-config/ # Separate svn checkout
+|-- eclipse-build-feature/ # Separate svn checkout
+|-- eclipse-$VERSION/ #The extracted "fetched-src"
+`--  # "uninteresting" files/dirs.
+
+The folder called "eclipse-build" here should be root of the tar.gz.
+
+[1] The Debian package uses svn checkout, see link below.
+
+There also normal tar.gz's available from Linux Tools; though their
+usefulness may be rather limited due to the package here being based
+on svn snapshots.
+
+There is more information about compiling eclipse using Linux Tools'
+eclipse-build along with URLs for svn and source download links:
+http://wiki.eclipse.org/Linux_Tools_Project/Eclipse_Build
diff --git a/debian/changelog b/debian/changelog
index f569d58..b2f7ddc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -35,6 +35,8 @@ eclipse (3.5.1+repack-1) UNRELEASED; urgency=low
   * Added workaround for gtk problems. (Closes: #552480)
   * Added missing API references. (Closes: #376850)
   * Moved org.eclipse.ant.ui to eclipse-platform. (LP: #477944)
+  * Added information about how to create the orig.tar.gz.
+(Closes: #505553)
 
  -- Benjamin Drung   Wed, 14 Oct 2009 01:42:49 +0200
 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


libjaxen-java_1.1.2-1_amd64.changes ACCEPTED

2009-11-08 Thread Archive Administrator


Accepted:
libjaxen-java-doc_1.1.2-1_all.deb
  to main/libj/libjaxen-java/libjaxen-java-doc_1.1.2-1_all.deb
libjaxen-java_1.1.2-1.diff.gz
  to main/libj/libjaxen-java/libjaxen-java_1.1.2-1.diff.gz
libjaxen-java_1.1.2-1.dsc
  to main/libj/libjaxen-java/libjaxen-java_1.1.2-1.dsc
libjaxen-java_1.1.2-1_all.deb
  to main/libj/libjaxen-java/libjaxen-java_1.1.2-1_all.deb
libjaxen-java_1.1.2.orig.tar.gz
  to main/libj/libjaxen-java/libjaxen-java_1.1.2.orig.tar.gz


Override entries for your package:
libjaxen-java-doc_1.1.2-1_all.deb - optional doc
libjaxen-java_1.1.2-1.dsc - source java
libjaxen-java_1.1.2-1_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


Processing of libjaxen-java_1.1.2-1_amd64.changes

2009-11-08 Thread Archive Administrator
libjaxen-java_1.1.2-1_amd64.changes uploaded successfully to localhost
along with the files:
  libjaxen-java_1.1.2-1.dsc
  libjaxen-java_1.1.2.orig.tar.gz
  libjaxen-java_1.1.2-1.diff.gz
  libjaxen-java_1.1.2-1_all.deb
  libjaxen-java-doc_1.1.2-1_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


[pkg-java] r11039 - trunk/libjdom1-java/debian

2009-11-08 Thread Damien Raude-Morvan
Author: drazzib
Date: 2009-11-08 19:03:47 + (Sun, 08 Nov 2009)
New Revision: 11039

Added:
   trunk/libjdom1-java/debian/libjdom1-java-doc.doc-base
   trunk/libjdom1-java/debian/libjdom1-java-doc.install
Removed:
   trunk/libjdom1-java/debian/dirs
   trunk/libjdom1-java/debian/doc-base
   trunk/libjdom1-java/debian/docs
Modified:
   trunk/libjdom1-java/debian/ant.properties
   trunk/libjdom1-java/debian/changelog
   trunk/libjdom1-java/debian/control
   trunk/libjdom1-java/debian/orig-tar.sh
   trunk/libjdom1-java/debian/pom.xml
   trunk/libjdom1-java/debian/rules
Log:
* New upstream version.
  - Update debian/pom.xml
* New libjdom1-java-doc package:
  - Split API Javadoc from bytecode (Closes: #506366)
  - Install API Javadoc to /usr/share/doc/libjdom1-java/api/
* Add myself to Uploaders
* Build-Depends on default-jdk instead of default-jdk-builddep
  because we don't build a native GCJ package.
* Use Debhelper 7:
  - Refactor debian/rules file (Closes: #538020)
  - Define classpath in debian/ant.properties
* Bump Standards-Version to 3.8.3 (no changes needed)

Modified: trunk/libjdom1-java/debian/ant.properties
===
--- trunk/libjdom1-java/debian/ant.properties   2009-11-08 19:02:44 UTC (rev 
11038)
+++ trunk/libjdom1-java/debian/ant.properties   2009-11-08 19:03:47 UTC (rev 
11039)
@@ -2,5 +2,5 @@
 compile.target=1.4
 lib.dir=/usr/share/java
 parser.jar=/usr/share/java/xercesImpl.jar
+compile.class.path=/usr/share/java/jaxen.jar
 
-

Modified: trunk/libjdom1-java/debian/changelog
===
--- trunk/libjdom1-java/debian/changelog2009-11-08 19:02:44 UTC (rev 
11038)
+++ trunk/libjdom1-java/debian/changelog2009-11-08 19:03:47 UTC (rev 
11039)
@@ -1,3 +1,20 @@
+libjdom1-java (1.1.1+dfsg-1) unstable; urgency=low
+
+  * New upstream version.
+- Update debian/pom.xml
+  * New libjdom1-java-doc package:
+- Split API Javadoc from bytecode (Closes: #506366)
+- Install API Javadoc to /usr/share/doc/libjdom1-java/api/
+  * Add myself to Uploaders
+  * Build-Depends on default-jdk instead of default-jdk-builddep
+because we don't build a native GCJ package.
+  * Use Debhelper 7:
+- Refactor debian/rules file (Closes: #538020)
+- Define classpath in debian/ant.properties
+  * Bump Standards-Version to 3.8.3 (no changes needed)
+
+ -- Damien Raude-Morvan   Sun, 08 Nov 2009 19:06:15 +0100
+
 libjdom1-java (1.1+dfsg-3) unstable; urgency=low
 
   * Upload to unstable.

Modified: trunk/libjdom1-java/debian/control
===
--- trunk/libjdom1-java/debian/control  2009-11-08 19:02:44 UTC (rev 11038)
+++ trunk/libjdom1-java/debian/control  2009-11-08 19:03:47 UTC (rev 11039)
@@ -2,13 +2,14 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 

-Uploaders: Arnaud Vandyck , Marcus Better 
-Build-Depends: debhelper(>= 7), default-jdk-builddep, ant
+Uploaders: Arnaud Vandyck , Marcus Better ,
+ Damien Raude-Morvan 
+Build-Depends: debhelper (>= 7.0.50~), default-jdk, ant
 Build-Depends-Indep: maven-repo-helper, libjaxen-java
-Standards-Version: 3.8.1
-Homepage: http://jdom.org
-Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libjdom1-java
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjdom1-java
+Standards-Version: 3.8.3
+Homepage: http://jdom.org/
+Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/libjdom1-java/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjdom1-java/
 
 Package: libjdom1-java
 Architecture: all
@@ -21,3 +22,18 @@
  lightweight and fast, and is optimized for the Java programmer. It's
  an alternative to DOM and SAX, although it integrates well with both
  DOM and SAX.
+
+Package: libjdom1-java-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends}
+Suggests: libjdom1-java
+Description: lightweight and fast library using XML - documentation
+ JDOM is, quite simply, a Java representation of an XML document. JDOM
+ provides a way to represent that document for easy and efficient
+ reading, manipulation, and writing. It has a straightforward API, is a
+ lightweight and fast, and is optimized for the Java programmer. It's
+ an alternative to DOM and SAX, although it integrates well with both
+ DOM and SAX.
+ .
+ This package contains API documentation (Javadoc) of libjdom1-java.

Deleted: trunk/libjdom1-java/debian/dirs
===
--- trunk/libjdom1-java/debian/dirs 2009-11-08 19:02:44 UTC (rev 11038)
+++ trunk/libjdom1-java/debian/dirs 2009-11-08 19:03:47 UTC (rev 11039)
@@ -1 +0,0 @@
-usr/share/java

Deleted: trunk/libjdom1-java/debian/doc-base
===
--- trunk/libjdom1-java/debian/doc-base 2009-11-08 19:02:44 UTC (rev 11038)
+++ trunk/libjdom1-java/debian/doc-base 2009-11-08 19:03:47 UTC (rev 11039)
@@ -1,10 +0,0 @@
-Docu

[pkg-java] r11040 - tags/libjdom1-java

2009-11-08 Thread Damien Raude-Morvan
Author: drazzib
Date: 2009-11-08 19:04:03 + (Sun, 08 Nov 2009)
New Revision: 11040

Added:
   tags/libjdom1-java/1.1.1+dfsg-1/
Log:
[svn-buildpackage] Tagging libjdom1-java (1.1.1+dfsg-1)


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


Processing of libjdom1-java_1.1.1+dfsg-1_amd64.changes

2009-11-08 Thread Archive Administrator
libjdom1-java_1.1.1+dfsg-1_amd64.changes uploaded successfully to localhost
along with the files:
  libjdom1-java_1.1.1+dfsg-1.dsc
  libjdom1-java_1.1.1+dfsg.orig.tar.gz
  libjdom1-java_1.1.1+dfsg-1.diff.gz
  libjdom1-java_1.1.1+dfsg-1_all.deb
  libjdom1-java-doc_1.1.1+dfsg-1_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


libjdom1-java_1.1.1+dfsg-1_amd64.changes is NEW

2009-11-08 Thread Archive Administrator
(new) libjdom1-java-doc_1.1.1+dfsg-1_all.deb optional doc
lightweight and fast library using XML - documentation
 JDOM is, quite simply, a Java representation of an XML document. JDOM
 provides a way to represent that document for easy and efficient
 reading, manipulation, and writing. It has a straightforward API, is a
 lightweight and fast, and is optimized for the Java programmer. It's
 an alternative to DOM and SAX, although it integrates well with both
 DOM and SAX.
 .
 This package contains API documentation (Javadoc) of libjdom1-java.
libjdom1-java_1.1.1+dfsg-1.diff.gz
  to main/libj/libjdom1-java/libjdom1-java_1.1.1+dfsg-1.diff.gz
libjdom1-java_1.1.1+dfsg-1.dsc
  to main/libj/libjdom1-java/libjdom1-java_1.1.1+dfsg-1.dsc
libjdom1-java_1.1.1+dfsg-1_all.deb
  to main/libj/libjdom1-java/libjdom1-java_1.1.1+dfsg-1_all.deb
libjdom1-java_1.1.1+dfsg.orig.tar.gz
  to main/libj/libjdom1-java/libjdom1-java_1.1.1+dfsg.orig.tar.gz
Changes: libjdom1-java (1.1.1+dfsg-1) unstable; urgency=low
 .
  * New upstream version.
- Update debian/pom.xml
  * New libjdom1-java-doc package:
- Split API Javadoc from bytecode (Closes: #506366)
- Install API Javadoc to /usr/share/doc/libjdom1-java/api/
  * Add myself to Uploaders
  * Build-Depends on default-jdk instead of default-jdk-builddep
because we don't build a native GCJ package.
  * Use Debhelper 7:
- Refactor debian/rules file (Closes: #538020)
- Define classpath in debian/ant.properties
  * Bump Standards-Version to 3.8.3 (no changes needed)


Override entries for your package:
libjdom1-java_1.1.1+dfsg-1.dsc - source java
libjdom1-java_1.1.1+dfsg-1_all.deb - optional java

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


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.

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


[pkg-java] r11038 - tags/libjaxen-java

2009-11-08 Thread Damien Raude-Morvan
Author: drazzib
Date: 2009-11-08 19:02:44 + (Sun, 08 Nov 2009)
New Revision: 11038

Added:
   tags/libjaxen-java/1.1.2-1/
Log:
[svn-buildpackage] Tagging libjaxen-java (1.1.2-1)


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


[pkg-java] r11037 - in trunk/libjaxen-java: . debian

2009-11-08 Thread Damien Raude-Morvan
Author: drazzib
Date: 2009-11-08 19:02:26 + (Sun, 08 Nov 2009)
New Revision: 11037

Added:
   trunk/libjaxen-java/debian/build.xml
   trunk/libjaxen-java/debian/libjaxen-java.poms
   trunk/libjaxen-java/debian/maven.rules
   trunk/libjaxen-java/debian/pom.xml
Removed:
   trunk/libjaxen-java/LICENSE.txt
   trunk/libjaxen-java/build.xml
   trunk/libjaxen-java/debian/libjaxen-java-doc.dirs
   trunk/libjaxen-java/debian/libjaxen-java.dirs
   trunk/libjaxen-java/maven.xml
   trunk/libjaxen-java/project.properties
   trunk/libjaxen-java/project.xml
   trunk/libjaxen-java/src/
   trunk/libjaxen-java/xml/
Modified:
   trunk/libjaxen-java/debian/
   trunk/libjaxen-java/debian/ant.properties
   trunk/libjaxen-java/debian/changelog
   trunk/libjaxen-java/debian/control
   trunk/libjaxen-java/debian/rules
Log:
* New upstream release.
* Add myself to Uploaders
* Maven POMs:
  - debian/control: add a Build-Depends-Indep dependency on maven-repo-helper
  - debian/rules: use mh_installpoms and mh_installjar
to install the POM and the jar to the Maven repository
  - debian/pom.xml: Debian pom.xml file as upstream doesn't provide one
* Move libjaxen-java-doc to "doc" Section
* Add "get-orig-source" as suggested by policy
* Build with source and target set to "1.3"
* XOM support:
  - Add libxom-java to Recommends
  - Add XOM into package's extended description

Deleted: trunk/libjaxen-java/LICENSE.txt
===
--- trunk/libjaxen-java/LICENSE.txt 2009-11-08 18:46:08 UTC (rev 11036)
+++ trunk/libjaxen-java/LICENSE.txt 2009-11-08 19:02:26 UTC (rev 11037)
@@ -1,33 +0,0 @@
-/*
- $Id: LICENSE.txt,v 1.5 2006/02/05 21:49:04 elharo Exp $
-
- Copyright 2003-2006 The Werken Company. All Rights Reserved.
- 
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
-  * Redistributions of source code must retain the above copyright
-notice, this list of conditions and the following disclaimer.
-
-  * Redistributions in binary form must reproduce the above copyright
-notice, this list of conditions and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-
-  * Neither the name of the Jaxen Project nor the names of its
-contributors may be used to endorse or promote products derived 
-from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
-IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
-TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
-PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
-OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
- */

Deleted: trunk/libjaxen-java/build.xml
===
--- trunk/libjaxen-java/build.xml   2009-11-08 18:46:08 UTC (rev 11036)
+++ trunk/libjaxen-java/build.xml   2009-11-08 19:02:26 UTC (rev 11037)
@@ -1,174 +0,0 @@
-
-
-
-
-
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-  
-
-  
-  
-  
-
-  
-  
-
-
-
-  
-  
-
-
-
-
-
-  
-  
-
-
-
-  
-  
-
-
-  
-  
-  
-
-  
-  
-
-
-  
-  
-
-
-
-
-  
-  
-
-
-
-  
-  
-  
-  
-
-  
-  
-
-
-  
-  
-
-
-
-  
-  
-  
-  
-  
-  
-  
-
-
-
-
-
-
-
-  
-  
-
-  
-  
-
-  
-
-  
-  
-= WARNING 

-Junit isn't present in your ${ANT_HOME}/lib directory. Tests not 
executed.
-
==
-  
-  
-
-
-
-  
-  
-
-
-  
-  
-
-
-
-
-  
-
-  
-  
-
-
-
-  
-  
-
-
-
-
-
-
-  
-
-
-  
-
-  
-  
-
-
-
-
-http://repo1.maven.org/maven/dom4j/jars/dom4j-1.6.1.jar";>
-
-http://repo1.maven.org/maven/jdom/jars/jdom-1.0.jar";>
-
-http://repo1.maven.org/maven/xml-apis/jars/xml-apis-1.3.02.jar";>
-
-http://repo1.maven.org/maven/xerces/jars/xercesImpl-2.6.2.jar";

[pkg-java] r11036 - in trunk/commons-httpclient/debian: . patches

2009-11-08 Thread Onkar Shinde
Author: onkarshinde-guest
Date: 2009-11-08 18:46:08 + (Sun, 08 Nov 2009)
New Revision: 11036

Added:
   trunk/commons-httpclient/debian/patches/04_fix_classpath.patch
Modified:
   trunk/commons-httpclient/debian/ant.properties
   trunk/commons-httpclient/debian/changelog
Log:
Add classpath in MANIFEST.MF file

Modified: trunk/commons-httpclient/debian/ant.properties
===
--- trunk/commons-httpclient/debian/ant.properties  2009-11-08 12:29:25 UTC 
(rev 11035)
+++ trunk/commons-httpclient/debian/ant.properties  2009-11-08 18:46:08 UTC 
(rev 11036)
@@ -1,3 +1,5 @@
 # JSSE stub classes required for build
 lib.dir=/usr/share/java
 #jsse.jar=/usr/share/java/jsse.jar
+ant.build.javac.source=1.4
+ant.build.javac.target=1.4

Modified: trunk/commons-httpclient/debian/changelog
===
--- trunk/commons-httpclient/debian/changelog   2009-11-08 12:29:25 UTC (rev 
11035)
+++ trunk/commons-httpclient/debian/changelog   2009-11-08 18:46:08 UTC (rev 
11036)
@@ -1,9 +1,17 @@
-commons-httpclient (3.1-8) UNRELEASED; urgency=low
+commons-httpclient (3.1-8) unstable; urgency=low
 
+  [Damien Raude-Morvan]
   * Fix debian/watch: use http://www.apache.org/dist/
 
- -- Damien Raude-Morvan   Wed, 28 Oct 2009 00:10:16 +0100
+  [Onkar Shinde]
+  * debian/patches/04_fix_classpath.patch
+- Add appropriate jar files in classpath using manifest attribute.
+  (LP: #459251)
+  * debian/ant.properties
+- Add properties to set target JVM version 1.4.
 
+ -- Onkar Shinde   Thu, 05 Nov 2009 09:50:19 +0530
+
 commons-httpclient (3.1-7) unstable; urgency=low
 
   * Add myself to Uploaders.

Added: trunk/commons-httpclient/debian/patches/04_fix_classpath.patch
===
--- trunk/commons-httpclient/debian/patches/04_fix_classpath.patch  
(rev 0)
+++ trunk/commons-httpclient/debian/patches/04_fix_classpath.patch  
2009-11-08 18:46:08 UTC (rev 11036)
@@ -0,0 +1,9 @@
+diff -Nur -x '*.orig' -x '*~' commons-httpclient-3.1/src/conf/MANIFEST.MF 
commons-httpclient-3.1.new/src/conf/MANIFEST.MF
+--- commons-httpclient-3.1/src/conf/MANIFEST.MF2007-08-18 
14:32:14.0 +0530
 commons-httpclient-3.1.new/src/conf/MANIFEST.MF2009-11-05 
09:52:00.0 +0530
+@@ -3,4 +3,4 @@
+ Specification-Version: 1.0
+ Implementation-Vendor: Apache Software Foundation
+ Implementation-Version: @version@
+-
++Class-Path: commons-codec.jar commons-logging.jar commons-logging-api.jar 
commons-logging-adapters.jar


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


libgnucrypto-java 2.1.0-4 MIGRATED to testing

2009-11-08 Thread Debian testing watch
FYI: The status of the libgnucrypto-java source package
in Debian's testing distribution has changed.

  Previous version: 2.1.0-3
  Current version:  2.1.0-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.

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


libjboss-cache2-java 2.2.2.GA-1 MIGRATED to testing

2009-11-08 Thread Debian testing watch
FYI: The status of the libjboss-cache2-java source package
in Debian's testing distribution has changed.

  Previous version: 2.2.1.GA-1
  Current version:  2.2.2.GA-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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. 4e268920d0a7f8fee598ca836087ea7ca96338bc

2009-11-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  4e268920d0a7f8fee598ca836087ea7ca96338bc (commit)
   via  16aac26dd70fff34763a2c47fa2b0ad8b754fcd4 (commit)
  from  41de938092fd97b8a8a6ab9d4aa748a53aa0344f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 4e268920d0a7f8fee598ca836087ea7ca96338bc
Merge: 16aac26dd70fff34763a2c47fa2b0ad8b754fcd4 
41de938092fd97b8a8a6ab9d4aa748a53aa0344f
Author: Niels Thykier 
Date:   Sun Nov 8 16:28:05 2009 +0100

Merge branch 'master' of ssh://git.debian.org/git/pkg-java/eclipse

commit 16aac26dd70fff34763a2c47fa2b0ad8b754fcd4
Author: Niels Thykier 
Date:   Sun Nov 8 16:27:43 2009 +0100

Updated changelog.

---

Summary of changes:
 debian/changelog |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 553138c..f569d58 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -33,7 +33,8 @@ eclipse (3.5.1+repack-1) UNRELEASED; urgency=low
 (Closes: #358594)
   * Put the osgi jar-files into its own separate package. (LP: #102717)
   * Added workaround for gtk problems. (Closes: #552480)
-  * Added missing API references. (Closes: #354601)
+  * Added missing API references. (Closes: #376850)
+  * Moved org.eclipse.ant.ui to eclipse-platform. (LP: #477944)
 
  -- Benjamin Drung   Wed, 14 Oct 2009 01:42:49 +0200
 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. 41de938092fd97b8a8a6ab9d4aa748a53aa0344f

2009-11-08 Thread Benjamin Drung
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  41de938092fd97b8a8a6ab9d4aa748a53aa0344f (commit)
  from  28a571530d84dd8f99bc777e63de50fe2a05c2c0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 41de938092fd97b8a8a6ab9d4aa748a53aa0344f
Author: Benjamin Drung 
Date:   Sun Nov 8 15:56:34 2009 +0100

Relax any/all dependencies (for slow architectures).

Thanks to Mattias Klose for the patch (LP: #471336).

---

Summary of changes:
 debian/control |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/control b/debian/control
index c9a0b88..da2920b 100644
--- a/debian/control
+++ b/debian/control
@@ -87,7 +87,7 @@ Description: Eclipse Plug-in Development Environment (PDE)
 Package: eclipse-platform
 Architecture: any
 Depends: default-jre | java1-runtime | java2-runtime,
- eclipse-platform-data (= ${source:Version}),
+ eclipse-platform-data (>= ${source:Version}),
  eclipse-rcp (= ${binary:Version}),
  java-common (>= 0.23),
  libswt-gtk-3.5-java (= ${binary:Version}),


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


Processed: Fix tag (got the wrong bug)

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

> # Got the wrong bug
> tags 354601 - pending
Bug #354601 [eclipse] eclipse: Project names umlaut (special chars) problem
Removed tag(s) pending.
> tags 376850 + pending
Bug #376850 [eclipse-platform] eclipse-platform-common: API Reference missing
Added tag(s) 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


Processed: Tag eclipse bugs fixed in VCS (round 2)

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

> # Missed that one.
> tags 521312 + pending
Bug #521312 [eclipse] eclipse: Eclipse fails to start on SPARC64
Added tag(s) pending.
> # After round 1 I can actually see which bugs we have forgotten to
> # mention in debian/changelog.
> tags 552480 + pending
Bug #552480 [eclipse] eclipse: GTK dialog stopped working
Added tag(s) pending.
> tags 354601 + pending
Bug #354601 [eclipse] eclipse: Project names umlaut (special chars) problem
Added tag(s) pending.
> tags 491334 + pending
Bug #491334 [eclipse] eclipse ignores vmargs in eclipse.ini
Added tag(s) pending.
> tags 491542 + pending
Bug #491542 [eclipse] eclipse: missing dependency for embedded browsing library
Added tag(s) 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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. 28a571530d84dd8f99bc777e63de50fe2a05c2c0

2009-11-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  28a571530d84dd8f99bc777e63de50fe2a05c2c0 (commit)
  from  b61dafbc0f28e7966c343b6b5ea9e4b4379c62d8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 28a571530d84dd8f99bc777e63de50fe2a05c2c0
Author: Niels Thykier 
Date:   Sun Nov 8 14:12:48 2009 +0100

Added missing entries in changelog.

---

Summary of changes:
 debian/changelog |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 976749f..553138c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -22,15 +22,18 @@ eclipse (3.5.1+repack-1) UNRELEASED; urgency=low
   * Added conflicts on the old eclipse-*-nls packages.
 (Closes: #538869)
   * Removed "builtin browser not supported"-warning; it did not work.
-(Closes: #402340)
+(Closes: #402340, #491542)
   * Removed dependency on libtomcat5.5-java and liblucene-java-doc.
 (Closes: #530722, #537605)
   * Stopped using special hacks and work arounds to find JVMs.
 (Closes: #353360)
 - This removes the need for ~/.eclipse/eclipserc (Closes: #402077)
+- This makes eclipse read eclipse.ini (Closes: #491334)
   * Moved the executable to eclipse-platform from eclipse.
 (Closes: #358594)
   * Put the osgi jar-files into its own separate package. (LP: #102717)
+  * Added workaround for gtk problems. (Closes: #552480)
+  * Added missing API references. (Closes: #354601)
 
  -- Benjamin Drung   Wed, 14 Oct 2009 01:42:49 +0200
 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


Processed: Tagging eclipse bugs fixed in VCS.

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

> #eclipse (3.5.1+repack-1) UNRELEASED; urgency=low
> #
> #  * New upstream release. (LP: #123064)
> #- Supports xulrunner-1.9.1 (Closes: #507536)
> #- Fixed "Software Updates" menu. (Closes: #539016)
> #  * Converted build system to use eclipse-build. (Closes: #501533)
> #- Fixed broken symlink in swt packages. (Closes: #543318)
> #- Fixed broken plugins/features. (Closes: #493984)
> #- Fixed problem finding native libraries. (Closes: #553131)
> #- Fixed build for various archs.
> #(Closes: #554584, #521312)
> #  * Stopped eclipse from unpacking native libraries into ~/.eclipse.
> #(Closes: #351729)
> #  * Corrected Depends and Recommends. (Closes: #554677)
> #- eclipse-jdt now only suggests eclipse.
> #- removed strict depedency on openjdk.
> #  * Removed obsolete linda overrides.
> #  * New maintainers. (Closes: #526489)
> #  * Removed the need for Zenity (Closes: #528070)
> #  * Added missing "apt" plug-in for eclipse-jdt.
> #(Closes: #403655, LP: #120610)
> #  * Added conflicts on the old eclipse-*-nls packages.
> #(Closes: #538869)
> #  * Removed "builtin browser not supported"-warning; it did not work.
> #(Closes: #402340)
> #  * Removed dependency on libtomcat5.5-java and liblucene-java-doc.
> #(Closes: #530722, #537605)
> #  * Stopped using special hacks and work arounds to find JVMs.
> #(Closes: #353360)
> #- This removes the need for ~/.eclipse/eclipserc (Closes: #402077)
> #  * Moved the executable to eclipse-platform from eclipse.
> #(Closes: #358594)
> #  * Put the osgi jar-files into its own separate package. (LP: #102717)
> #
> # -- Benjamin Drung   Wed, 14 Oct 2009 01:42:49 +0200
> tags 507536 + pending
Bug #507536 [eclipse] eclipse: fails to start due to xulrunner - workaround; 
disable welcome screen.
Bug #511713 [eclipse] eclipse: fails to start due to xulrunner - workaround; 
disable welcome screen.
Bug #515747 [eclipse] eclipse: fails to start due to xulrunner - workaround; 
disable welcome screen.
Bug #526225 [eclipse] eclipse: fails to start due to xulrunner - workaround; 
disable welcome screen.
Bug #538871 [eclipse] eclipse: fails to start due to xulrunner - workaround; 
disable welcome screen.
Bug #554423 [eclipse] eclipse: fails to start due to xulrunner - workaround; 
disable welcome screen.
Added tag(s) pending.
Added tag(s) pending.
Added tag(s) pending.
Added tag(s) pending.
Added tag(s) pending.
Added tag(s) pending.
> tags 539016 + pending
Bug #539016 [eclipse] eclipse: Software Updates do not work in 3.4
Added tag(s) pending.
> tags 501533 + pending
Bug #501533 [eclipse] eclipse: [ia64] native compilation ICEs seem to no longer 
occur
Ignoring request to alter tags of bug #501533 to the same tags previously set
> tags 543318 + pending
Bug #543318 [libswt3.4-gtk-java] libswt3.4-gtk-java: all the symlinks in 
/usr/lib/java broken
Ignoring request to alter tags of bug #543318 to the same tags previously set
> tags 493984 + pending
Bug #493984 [eclipse] eclipse: plugins/features are missing/wrong version
Bug #497549 [eclipse] [eclipse] plugins not working
Ignoring request to alter tags of bug #493984 to the same tags previously set
Ignoring request to alter tags of bug #497549 to the same tags previously set
> tags 553131 + pending
Bug #553131 [src:eclipse] eclipse: FTBFS - native libraries are not built from 
source.
Bug #553133 [src:eclipse] eclipse-rcp: missing-dependency-on-libc needed by 
./usr/lib/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.0.101.R34x_v20080805/eclipse_1115.so
   but the package doesn't depend on the C library package. 
Normally   this indicates that ${shlibs: Depends} was omitted from 
the   Depends line for this package in debian/control.
Added tag(s) pending.
Added tag(s) pending.
> tags 554584 + pending
Bug #554584 [src:eclipse] eclipse: FTBFS: timeout during build (on various 
archs)
Bug #476067 [src:eclipse] eclipse: FTBFS: timeout during build (on various 
archs)
Added tag(s) pending.
Added tag(s) pending.
> tags 351729 + pending
Bug #351729 [libswt3.2-gtk-jni] libswt-pi-gtk-3139.so cannot be mapped and 
refuses Eclipse to start
Added tag(s) pending.
> tags 554677 + pending
Bug #554677 [eclipse] wishlist: correct depends / recommends for packages
Ignoring request to alter tags of bug #554677 to the same tags previously set
> tags 526489 + pending
Bug #526489 [wnpp] ITA: eclipse -- Extensible Tool platform and java IDE
Added tag(s) pending.
> tags 528070 + pending
Bug #528070 [eclipse] eclipse: Zenity doesn't be imposed as a dependence
Ignoring request to alter tags of bug #528070 to the same tags previously set
> tags 403655 + pending
Bug #403655 [eclipse-jdt] eclipse-jdt misses core plugin: 
org.eclipse.jdt.apt.core
Ignoring request to alter tags of bug #403655 to the same tags previously set
> tags 538869 + pending
Bug #538869 [eclipse] eclipse should conflict with eclipse-*-n

[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. b61dafbc0f28e7966c343b6b5ea9e4b4379c62d8

2009-11-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  b61dafbc0f28e7966c343b6b5ea9e4b4379c62d8 (commit)
  from  ed6b9ce2d023719d94b1c18ffe576bd3f2db38a8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit b61dafbc0f28e7966c343b6b5ea9e4b4379c62d8
Author: Niels Thykier 
Date:   Sun Nov 8 13:56:17 2009 +0100

Removed some duplicates.

---

Summary of changes:
 debian/changelog |5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 71a4f12..976749f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,10 +6,9 @@ eclipse (3.5.1+repack-1) UNRELEASED; urgency=low
   * Converted build system to use eclipse-build. (Closes: #501533)
 - Fixed broken symlink in swt packages. (Closes: #543318)
 - Fixed broken plugins/features. (Closes: #493984)
-- Fixed problem finding native libraries.
-(Closes: #553131, #553131)
+- Fixed problem finding native libraries. (Closes: #553131)
 - Fixed build for various archs.
-(Closes: #554584, #476067, #521312)
+(Closes: #554584, #521312)
   * Stopped eclipse from unpacking native libraries into ~/.eclipse.
 (Closes: #351729)
   * Corrected Depends and Recommends. (Closes: #554677)


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


Bug#552480: eclipse: GTK dialog stopped working

2009-11-08 Thread Niels Thykier

tags 552480 = confirmed
thanks

Hi

Thanks for testing it - this is a known problem then and we have partly 
fixed it in our VCS[1] and it will be fixed by upstream in eclipse 3.6 
(and possibly also 3.5.2).


~Niels

[1] Partly fixed as in our VCS version suffers from fewer of these 
problems than the upstream version; however we will be using the env 
variable as a workaround until it is fixed upstream (or we get them all 
back-ported).




___
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): Merge 554584 + 476067 and retitle eclipse: FTBFS: timeout during build (on various archs)

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

> reassign 554584 src:eclipse
Bug #554584 [eclipse] eclipse_3.4.1-1(ia64/unstable): FTBFS: timeout during 
build
Bug reassigned from package 'eclipse' to 'src:eclipse'.
Bug No longer marked as found in versions eclipse/3.4.1-1.
> reassign 476067 src:eclipse
Bug #476067 [eclipse] eclipse: FTBFS: build takes a very, very long time (or 
just blocks?)
Bug reassigned from package 'eclipse' to 'src:eclipse'.
Bug No longer marked as found in versions eclipse/3.2.2-5.
> forcemerge 554584 476067
Bug#554584: eclipse_3.4.1-1(ia64/unstable): FTBFS: timeout during build
Bug#476067: eclipse: FTBFS: build takes a very, very long time (or just blocks?)
Forcibly Merged 476067 554584.

> found 554584 3.4.1-1,3.2.2-5
Bug #554584 [src:eclipse] eclipse_3.4.1-1(ia64/unstable): FTBFS: timeout during 
build
Bug #476067 [src:eclipse] eclipse: FTBFS: build takes a very, very long time 
(or just blocks?)
Bug Marked as found in versions eclipse/3.2.2-5 and eclipse/3.4.1-1.
Bug Marked as found in versions eclipse/3.2.2-5 and eclipse/3.4.1-1.
> retitle 554584 eclipse: FTBFS: timeout during build (on various archs)
Bug #554584 [src:eclipse] eclipse_3.4.1-1(ia64/unstable): FTBFS: timeout during 
build
Bug #476067 [src:eclipse] eclipse: FTBFS: build takes a very, very long time 
(or just blocks?)
Changed Bug title to 'eclipse: FTBFS: timeout during build (on various archs)' 
from 'eclipse_3.4.1-1(ia64/unstable): FTBFS: timeout during build'
Changed Bug title to 'eclipse: FTBFS: timeout during build (on various archs)' 
from 'eclipse: FTBFS: build takes a very, very long time (or just blocks?)'
> tags = 554584 confirmed
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


[pkg-java] r11035 - old trunk

2009-11-08 Thread Damien Raude-Morvan
Author: drazzib
Date: 2009-11-08 12:29:25 + (Sun, 08 Nov 2009)
New Revision: 11035

Added:
   old/libjdom-java/
Removed:
   trunk/libjdom-java/
Log:
Archive libjdom-java.



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


Processed: Re: Bug#552480: eclipse: GTK dialog stopped working

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

> tags 552480 = confirmed
Bug #552480 [eclipse] eclipse: GTK dialog stopped working
Added tag(s) confirmed; removed tag(s) moreinfo.
> 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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. ed6b9ce2d023719d94b1c18ffe576bd3f2db38a8

2009-11-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  ed6b9ce2d023719d94b1c18ffe576bd3f2db38a8 (commit)
  from  773abbb0b94182783664a3e212e15bfd433f54a1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit ed6b9ce2d023719d94b1c18ffe576bd3f2db38a8
Author: Niels Thykier 
Date:   Sun Nov 8 13:24:02 2009 +0100

Set specific version Replaces.

---

Summary of changes:
 debian/control |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index 5942fc5..c9a0b88 100644
--- a/debian/control
+++ b/debian/control
@@ -95,7 +95,7 @@ Depends: default-jre | java1-runtime | java2-runtime,
  ${misc:Depends},
  ${perl:Depends},
  ${shlibs:Depends}
-Replaces: eclipse-jdt (<< ${source:Version}),
+Replaces: eclipse-jdt (<< 3.5.1+repack),
   eclipse-platform-common,
   eclipse-source (<= 3.1.1-3),
   libeclipse-jni
@@ -125,7 +125,7 @@ Description: Eclipse platform without plug-ins to develop 
any language
 Package: eclipse-platform-data
 Architecture: all
 Depends: ${misc:Depends}
-Replaces: eclipse-platform (<< ${binary:Version})
+Replaces: eclipse-platform (<< 3.5.1+repack)
 Description: Eclipse platform without plug-ins to develop any language (data)
  The Eclipse Platform is an open and extensible platform for anything and yet
  nothing in particular. It provides a foundation for constructing and running


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


Processed: forcemerge 553131 and 553133

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

> reassign 553133 src:eclipse
Bug #553133 [eclipse-rcp] eclipse-rcp: missing-dependency-on-libc needed by 
./usr/lib/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.0.101.R34x_v20080805/eclipse_1115.so
   but the package doesn't depend on the C library package. 
Normally   this indicates that ${shlibs: Depends} was omitted from 
the   Depends line for this package in debian/control.
Bug reassigned from package 'eclipse-rcp' to 'src:eclipse'.
Bug No longer marked as found in versions eclipse/3.4.1-1.
> # The order is intentional.
> forcemerge 553131 553133
Bug#553131: eclipse: FTBFS - native libraries are not built from source.
Bug#553133: eclipse-rcp: missing-dependency-on-libc needed by 
./usr/lib/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.0.101.R34x_v20080805/eclipse_1115.so
   but the package doesn't depend on the C library package. 
Normally   this indicates that ${shlibs: Depends} was omitted from 
the   Depends line for this package in debian/control.
Forcibly Merged 553131 553133.

> 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#553131: eclipse: FTBFS - native libraries are not built from source.

2009-11-08 Thread Niels Thykier

forcemerge 553131 553133
retitle 553131 eclipse: FTBFS - native libraries are not built from source.
tags 553131 = confirmed
reassign 553131 src:eclipse
thanks

Hi

It turns out (by looking at the build logs) that this is caused by the
3.4.1 build passing a misspelled path to dpkg-shlibdeps. I have tried to
rebuild eclipse 3.4.1 with the correct path but it breaks the x86 build
because (as the title suggests) these files are apparently not built from
source. The libraries appears to have been build on a amd64 and (based on 
the feed back of users) eclipse have no issue with this.


I have not been able to figure out why it fails to rebuilt them in 3.4.1;
nevertheless I am more focused on bringing 3.5.1 into Debian which (unlike
a fix of 3.4.1) will close all of the currently filed RC bugs[1].

I could upload an eclipse 3.5.1 now to the archive but it would suffer
from a "FTBFS/uses convenience sources", which is why I have not done it.


To anyone considering to NMU this package - be my guest, but your time is
probably better spent on other packages or helping us getting 3.5.1 done.
The upstream build system is not exactly "easy" to understand nor work
with. Furthermore, as I recall eclipse 3.4.1 does not support xulrunner
1.9.1 so you would have to disable that as well. This is (one of the)
reason(s) to #507536 (and its 5-6 duplicates).

If you feel that this package is too RC buggy to be in unstable feel free 
to request an RM from unstable - I would prefer you did not[2], but on the 
other hand having 5 unique RC bugs is pushing it and therefore I cannot 
really object to a RM request.


~Niels

[1] That being (besides this/these):
#507536 - eclipse: fails to start due to xulrunner - workaround; disable 
welcome screen.
#521312 - eclipse: Eclipse fails to start on SPARC64
#552480 - eclipse: GTK dialog stopped working
#554584 - eclipse_3.4.1-1(ia64/unstable): FTBFS: timeout during build

The four above plus this/these are already fixed in our VCS:
http://git.debian.org/?p=pkg-java/eclipse.git

[2] There are some bugs non-RC bugs on the BTS that will not be fixed in 
the next upload and I would prefer not to have to reopen those and 
explain what happens to the submitters.




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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. 773abbb0b94182783664a3e212e15bfd433f54a1

2009-11-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  773abbb0b94182783664a3e212e15bfd433f54a1 (commit)
  from  21d8d3431674bbe2665c465220c312beb697eda3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 773abbb0b94182783664a3e212e15bfd433f54a1
Author: Niels Thykier 
Date:   Sun Nov 8 12:38:38 2009 +0100

Updated changelog.
Escaped a dot in a regex in imagemv.sh.

---

Summary of changes:
 debian/changelog|   11 +++
 debian/extra/imagemv.sh |2 +-
 2 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b27f0ee..71a4f12 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,9 +2,19 @@ eclipse (3.5.1+repack-1) UNRELEASED; urgency=low
 
   * New upstream release. (LP: #123064)
 - Supports xulrunner-1.9.1 (Closes: #507536)
+- Fixed "Software Updates" menu. (Closes: #539016)
   * Converted build system to use eclipse-build. (Closes: #501533)
 - Fixed broken symlink in swt packages. (Closes: #543318)
 - Fixed broken plugins/features. (Closes: #493984)
+- Fixed problem finding native libraries.
+(Closes: #553131, #553131)
+- Fixed build for various archs.
+(Closes: #554584, #476067, #521312)
+  * Stopped eclipse from unpacking native libraries into ~/.eclipse.
+(Closes: #351729)
+  * Corrected Depends and Recommends. (Closes: #554677)
+- eclipse-jdt now only suggests eclipse.
+- removed strict depedency on openjdk.
   * Removed obsolete linda overrides.
   * New maintainers. (Closes: #526489)
   * Removed the need for Zenity (Closes: #528070)
@@ -18,6 +28,7 @@ eclipse (3.5.1+repack-1) UNRELEASED; urgency=low
 (Closes: #530722, #537605)
   * Stopped using special hacks and work arounds to find JVMs.
 (Closes: #353360)
+- This removes the need for ~/.eclipse/eclipserc (Closes: #402077)
   * Moved the executable to eclipse-platform from eclipse.
 (Closes: #358594)
   * Put the osgi jar-files into its own separate package. (LP: #102717)
diff --git a/debian/extra/imagemv.sh b/debian/extra/imagemv.sh
index 4a831b9..a06a29a 100755
--- a/debian/extra/imagemv.sh
+++ b/debian/extra/imagemv.sh
@@ -3,7 +3,7 @@ set -e
 
 # You must be in the destDir/prefix directory!
 
-LINK_NAME=$(echo $1 | sed "s...@^./@@")
+LINK_NAME=$(echo $1 | sed "s...@^\./@@")
 
 IMAGE_NAME=$(echo ${LINK_NAME} | sed "s...@lib/@share/@g")
 IMAGE_DIR=$(dirname ${IMAGE_NAME})


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


Processed (with 1 errors): Re: eclipse: FTBFS - native libraries are not built from source.

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

> forcemerge 553131 553133
Bug#553131: libswt3.4-gtk-jni: missing-dependency-on-libc needed by 
./usr/lib/jni/libswt-atk-gtk-3449.so and 7 others   but the package 
doesn't depend on the C library package. Normally   this indicates 
that ${shlibs: Depends} was omitted from the   Depends line for 
this package in debian/control.
Bug#553133: eclipse-rcp: missing-dependency-on-libc needed by 
./usr/lib/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.0.101.R34x_v20080805/eclipse_1115.so
   but the package doesn't depend on the C library package. 
Normally   this indicates that ${shlibs: Depends} was omitted from 
the   Depends line for this package in debian/control.
Mismatch - only Bugs in the same package can be forcibly merged:
Bug 553133 is not in the same package as 553131
> retitle 553131 eclipse: FTBFS - native libraries are not built from source.
Bug #553131 [libswt3.4-gtk-jni] libswt3.4-gtk-jni: missing-dependency-on-libc 
needed by ./usr/lib/jni/libswt-atk-gtk-3449.so and 7 others   but 
the package doesn't depend on the C library package. Normally   
this indicates that ${shlibs: Depends} was omitted from the   
Depends line for this package in debian/control.
Changed Bug title to 'eclipse: FTBFS - native libraries are not built from 
source.' from 'libswt3.4-gtk-jni: missing-dependency-on-libc needed by 
./usr/lib/jni/libswt-atk-gtk-3449.so and 7 others   but the package 
doesn't depend on the C library package. Normally   this indicates 
that ${shlibs: Depends} was omitted from the   Depends line for 
this package in debian/control.'
> tags 553131 = confirmed
Bug #553131 [libswt3.4-gtk-jni] eclipse: FTBFS - native libraries are not built 
from source.
Added tag(s) confirmed.
> reassign 553131 src:eclipse
Bug #553131 [libswt3.4-gtk-jni] eclipse: FTBFS - native libraries are not built 
from source.
Bug reassigned from package 'libswt3.4-gtk-jni' to 'src:eclipse'.
Bug No longer marked as found in versions eclipse/3.4.1-1.
> 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#554677: wishlist: correct depends / recommends for packages

2009-11-08 Thread Niels Thykier

tags 554677 = confirmed pending
thanks

Hi alon

Thank you for your report. We have already corrected this in our VCS 
repository[1] and this will be closed on the next upload to Debian.


~Niels

[1] The "Recommends" -> "Suggest" commit.
http://git.debian.org/?p=pkg-java/eclipse.git;a=commitdiff;h=4e95fa3621c5512b458a3b773c29ff0b7640a212
I cannot find the commit where we removed openjdk but "openjdk" does not 
appear in debian/control in our "master" branch:

http://git.debian.org/?p=pkg-java/eclipse.git;a=blob;f=debian/control;h=5942fc5d4bfbeca98b440482cdbf132ce5d1b08a;hb=21d8d3431674bbe2665c465220c312beb697eda3



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


Processed: wishlist: correct depends / recommends for packages

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

> tags 554677 = confirmed pending
Bug #554677 [eclipse] wishlist: correct depends / recommends for packages
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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. 21d8d3431674bbe2665c465220c312beb697eda3

2009-11-08 Thread Niels Thykier
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "eclipse - Powerful IDE written in java - Debian package.".

The branch, master has been updated
   via  21d8d3431674bbe2665c465220c312beb697eda3 (commit)
  from  6a448a0ed58f0c8f8338bbb3cc2ddce52ef9bfd4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 21d8d3431674bbe2665c465220c312beb697eda3
Author: Niels Thykier 
Date:   Sun Nov 8 10:44:33 2009 +0100

Added some missing Replaces.
Changed equinox arch to all (does not appear to be arch dependent).

The Replaces should probably be set to specific versions when our install
files stablizes.

---

Summary of changes:
 debian/control |   12 +++-
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/debian/control b/debian/control
index ca4b9c0..5942fc5 100644
--- a/debian/control
+++ b/debian/control
@@ -34,7 +34,7 @@ Vcs-Browser: http://git.debian.org/?p=pkg-java/eclipse.git
 Homepage: http://www.eclipse.org/
 
 Package: eclipse
-Architecture: any
+Architecture: all
 Depends: eclipse-jdt,
  eclipse-pde,
  ${misc:Depends}
@@ -95,7 +95,8 @@ Depends: default-jre | java1-runtime | java2-runtime,
  ${misc:Depends},
  ${perl:Depends},
  ${shlibs:Depends}
-Replaces: eclipse-platform-common,
+Replaces: eclipse-jdt (<< ${source:Version}),
+  eclipse-platform-common,
   eclipse-source (<= 3.1.1-3),
   libeclipse-jni
 Conflicts: eclipse-platform-common,
@@ -124,6 +125,7 @@ Description: Eclipse platform without plug-ins to develop 
any language
 Package: eclipse-platform-data
 Architecture: all
 Depends: ${misc:Depends}
+Replaces: eclipse-platform (<< ${binary:Version})
 Description: Eclipse platform without plug-ins to develop any language (data)
  The Eclipse Platform is an open and extensible platform for anything and yet
  nothing in particular. It provides a foundation for constructing and running
@@ -143,11 +145,11 @@ Description: Eclipse platform without plug-ins to develop 
any language (data)
  This package contains the architecture-independent data files.
 
 Package: eclipse-plugin-cvs
+Architecture: any
 Depends: cvs (>= 1.12.13-8),
  default-jre | java1-runtime | java2-runtime,
  eclipse-platform (= ${binary:Version}),
  ${misc:Depends}
-Architecture: any
 Description: Eclipse Team Integration (CVS support)
  The Eclipse Platform is an open and extensible platform for anything and yet
  nothing in particular. It provides a foundation for constructing and running
@@ -161,7 +163,7 @@ Description: Eclipse Team Integration (CVS support)
 Package: eclipse-rcp
 Architecture: any
 Depends: default-jre | java1-runtime | java2-runtime,
- libequinox-osgi-java (= ${binary:Version}),
+ libequinox-osgi-java (= ${source:Version}),
  libswt-gtk-3.5-java (= ${binary:Version}),
  ${shlibs:Depends},
  ${misc:Depends}
@@ -184,7 +186,7 @@ Description: Eclipse Rich Client Platform (RCP)
  This package is the basis for all Eclipse applications.
 
 Package: libequinox-osgi-java
-Architecture: any
+Architecture: all
 Depends: default-jre | java1-runtime | java2-runtime,
  ${misc:Depends}
 Conflicts: eclipse-rcp (<< 3.5.1-0ubuntu3)


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


Bug#554853: jetty: Jetty is unable to run on port 80

2009-11-08 Thread Torsten Werner
On Fri, Nov 6, 2009 at 11:39 PM, Robert LeBlanc  wrote:
> When setting JETTY_PORT=80, the server dies. There is a setuid option for 
> jetty that would allow it to run on port 80. Although an iptable's rule could 
> be created, Jetty should include this functionality. 
> http://blogs.webtide.com/janb/entry/running_jetty_as_non_root.
...
> Versions of packages jetty suggests:
> pn  libjetty-extra (no description available)

You can find libsetuid.so in package libjetty-extra. Does it work for you?

Cheers,
Torsten



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