Bug#847428: Package the Entire "eclipse.jdt.core"

2016-12-07 Thread 殷啟聰
Source: ecj
Version: 3.11.0-7
Severity: wishlist
Control: block 847427 by -1

Dear maintainers,

android-toolchain-jack requires both the existing libecj-java and the
"org.eclipse.jdt.compiler.apt" module in "eclipse.jdt.core". As the
upstream of src:ecj is exactly "eclipse.jdt.core", so I wish that the
entire "eclipse.jdt.core" is packaged in Debian as several non-GUI
Java libraries.

I noticed that "org.eclipse.jdt.compiler.apt" is provided by
eclipse-jdt, which is a GUI application component (a plugin of Eclipse
IDE). There's no need for a command line program to depend on a
graphical package which will then pulls the entire Eclipse Platform.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processed: Package the Entire "eclipse.jdt.core"

2016-12-07 Thread Debian Bug Tracking System
Processing control commands:

> block 847427 by -1
Bug #847427 [wnpp] ITP: android-toolchain-jack -Java Android Compiler Kit
847427 was not blocked by any bugs.
847427 was not blocking any bugs.
Added blocking bug(s) of 847427: 847428

-- 
847427: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=847427
847428: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=847428
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#846918: interface opens, but no menus and no action on button clicks

2016-12-07 Thread tony mancill
On Wed, Dec 07, 2016 at 10:55:38AM +0100, gregor herrmann wrote:
> On Wed, 07 Dec 2016 09:49:32 +0100, Martin Lutz wrote:
> 
> > Package: jabref
> > Version: 2.10+ds-7
> > Followup-For: Bug #846918
> > 
> > Dear Maintainer,
> > 
> > after an update yesterday, jabref fails to start.
> > ERROR while starting or running JabRef: java.lang.NoSuchFieldError: DIALOG
> > 
> > Searching through the debian bug list, I find bug 846503 with a similar 
> > problem.
> 
> Yup, there seem to be some runtime incompatibilitites with the new
> libjgoodies-*, which were not caught at buildtime. Cf. also the
> thread starting at
> https://lists.debian.org/debian-java/2016/12/msg00010.html
> 
> Probably we'll try with rebuilding the affected packages; for JabRef
> the good news is that we're working on updating to 3.6 which doesn't
> have these problems (but needs some wrinkles ironed out before we can
> upload it).

I attempted a binary rebuild of 2.10+ds using the libraries found in sid
and it didn't change the behavior.  It appears that it might be an issue
with the version of jgoodies-looks (2.7.0) available in Debian.  I will
dig into this more, since it could be affecting other users of
jgoodies-looks similarly, but at the moment, I'm trying to get an
updated JabRef version into the archive before stretch freezes.

Currently we're working on JabRef 3.6, but due to some excellent
assistance from upstream (thanks Oliver!), it could also be 3.7.

Cheers,
tony


signature.asc
Description: PGP signature
__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#845425: DataSource no longer accessible since jessie security update

2016-12-07 Thread Emmanuel Bourg
Le 7/12/2016 à 20:16, Arne Nordmark a écrit :

> OK. I first built 7.0.56-3+deb8u5 as distributed, installed, and
> verified that your example works but not my webapp. Then I added the
> loop to validateGlobalResourceAccess() (patch attached), reinstalled
> libtomcat7-java, restarted tomcat7, and verified that both webapps now work.
> 
> Thanks for your patience,

Thanks a lot for the tests Arne. We are basically missing the commit
1763236 [1]  that added the recursion through the classloader hierarchy.
This commit wasn't documented as related to CVE-2016-6797. I'll add it
in the next update. The tomcat8 package is also affected.

Emmanuel Bourg

[1] https://svn.apache.org/r1763236

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processed: tagging 846918

2016-12-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 846918 + confirmed
Bug #846918 [jabref] interface opens, but no menus and no action on button 
clicks
Added tag(s) confirmed.
> thanks
Stopping processing here.

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#845425: DataSource no longer accessible since jessie security update

2016-12-07 Thread Arne Nordmark
Den 2016-12-07 kl. 17:35, skrev Emmanuel Bourg:
> Le 7/12/2016 à 13:28, Arne Nordmark a écrit :
> 
> Thanks for the info. I'm trying to reproduce the same error but I
> haven't succeeded so far. Here is was I did:
> 

...

> 9. Create a test page /var/lib/tomcat7/webapps/ROOT/test.jsp with:
> 
>   <%@page import="javax.naming.*,javax.sql.*" %>
>   <%
>   Context initContext = new InitialContext();
>   Context envContext  = (Context) initContext.lookup("java:/comp/env");
>   DataSource ds = (DataSource) envContext.lookup("jdbc/test");
> 
>   out.println("DataSource: " + ds);
>   %>
> 
> There is still something different with your setup but I don't know what.

If I add

  out.println("Loaded by: " + ds.getClass().getClassLoader());

to test.jsp I get

Loaded by: org.apache.catalina.loader.StandardClassLoader@4876e0

so the WebappClassLoader is not being used in this example, probably
because there are no classes in the webapp.

> 
> 
>> Am I correct in understanding that you want me to add the loop on top of
>> version 7.0.56-3+deb8u5 without the other changes from upstream 7.0.73?
> 
> Yes please.

OK. I first built 7.0.56-3+deb8u5 as disatributed, installed, and
verified that your example works but not my webapp. Then I added the
loop to validateGlobalResourceAccess() (patch attached), reinstalled
libtomcat7-java, restarted tomcat7, and verified that both webapps now work.

> 
> Emmanuel Bourg
> 

Thanks for your patience,
Arne
--- a/java/org/apache/naming/factory/ResourceLinkFactory.java
+++ b/java/org/apache/naming/factory/ResourceLinkFactory.java
@@ -116,9 +116,12 @@
 
 private static boolean validateGlobalResourceAccess(String globalName) {
 ClassLoader cl = Thread.currentThread().getContextClassLoader();
-Map registrations = globalResourceRegistrations.get(cl);
-if (registrations != null && registrations.containsValue(globalName)) {
-return true;
+while (cl != null) {
+Map registrations = globalResourceRegistrations.get(cl);
+if (registrations != null && registrations.containsValue(globalName)) {
+return true;
+}
+cl = cl.getParent();
 }
 return false;
 }
__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.

tomcat8 8.5.8-2 MIGRATED to testing

2016-12-07 Thread Debian testing watch
FYI: The status of the tomcat8 source package
in Debian's testing distribution has changed.

  Previous version: 8.0.39-1
  Current version:  8.5.8-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 https://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


libnative-platform-java 0.11-5 MIGRATED to testing

2016-12-07 Thread Debian testing watch
FYI: The status of the libnative-platform-java source package
in Debian's testing distribution has changed.

  Previous version: 0.10+dfsg-2
  Current version:  0.11-5

-- 
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 https://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


gradle-debian-helper 1.4.4 MIGRATED to testing

2016-12-07 Thread Debian testing watch
FYI: The status of the gradle-debian-helper source package
in Debian's testing distribution has changed.

  Previous version: 1.4.1
  Current version:  1.4.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 https://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


gradle 3.1-2 MIGRATED to testing

2016-12-07 Thread Debian testing watch
FYI: The status of the gradle source package
in Debian's testing distribution has changed.

  Previous version: 2.13-4
  Current version:  3.1-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 https://release.debian.org/testing-watch/ for more information.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#845425: DataSource no longer accessible since jessie security update

2016-12-07 Thread Emmanuel Bourg
Le 7/12/2016 à 13:28, Arne Nordmark a écrit :

> I have put a symlink in /var/lib/tomcat7/common, so that would be loaded
> by the "Common" class loader.
> 
> The default Debian configuration in /etc/tomcat7/catalina.properties
> seem to be slightly broken here, so in the "common.loader" I had to
> change from ${catalina.home}/common/... to ${catalina.base}/common/...

Thanks for the info. I'm trying to reproduce the same error but I
haven't succeeded so far. Here is was I did:

1. Install tomcat7 on Jessie (version 7.0.56-3+deb8u5)

2. Create the /var/lib/tomca7/common directory

3. Modify common.loader in /etc/tomcat7/catalina.properties
   to include ${catalina.base}/common/*.jar (this will be fixed
   in the next version of tomcat8 btw)

4. Install libmysql-java

5. Create a symlink to mysql-connector-java.jar
   in /var/lib/tomcat7/common

6. Declare a datasource in /etc/tomcat7/server.xml:

  

7. Create context.xml in /var/lib/tomcat7/webapps/ROOT/META-INF/

8. Link the datasource in context.xml:

  

  

9. Create a test page /var/lib/tomcat7/webapps/ROOT/test.jsp with:

  <%@page import="javax.naming.*,javax.sql.*" %>
  <%
  Context initContext = new InitialContext();
  Context envContext  = (Context) initContext.lookup("java:/comp/env");
  DataSource ds = (DataSource) envContext.lookup("jdbc/test");

  out.println("DataSource: " + ds);
  %>

10. Open http://localhost:8080/test.jsp

There is still something different with your setup but I don't know what.


> Am I correct in understanding that you want me to add the loop on top of
> version 7.0.56-3+deb8u5 without the other changes from upstream 7.0.73?

Yes please.

Emmanuel Bourg

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processed: your mail

2016-12-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 603666 wishlist
Bug #603666 [tomcat8] tomcat8: Symlink to /etc/tomcat8 should be provided at 
/usr/share/tomcat8/conf
Severity set to 'wishlist' from 'normal'
> severity 710806 wishlist
Bug #710806 [libservlet3.1-java] libservlet3.1-java: provide versionless 
servlet-api JAR
Severity set to 'wishlist' from 'minor'
>
End of message, stopping processing here.

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processed: Pending fixes for bugs in the tomcat8 package

2016-12-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 847137 + pending
Bug #847137 [tomcat8] tomcat8: wrong usage of catalina.home instead 
catalina.base in catalina.properties variable common.loader
Added tag(s) pending.
> thanks
Stopping processing here.

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#847137: Pending fixes for bugs in the tomcat8 package

2016-12-07 Thread pkg-java-maintainers
tag 847137 + pending
thanks

Some bugs in the tomcat8 package are closed in revision
33ec083dff0f506f5458a19844e1db6539bc5125 in branch 'master' by
Emmanuel Bourg

The full diff can be seen at
https://anonscm.debian.org/cgit/pkg-java/tomcat8.git/commit/?id=33ec083

Commit message:

Restored the classloading from the common, server and shared directories 
under CATALINA_BASE (Closes: #847137)

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processed: Pending fixes for bugs in the tomcat8 package

2016-12-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 770911 + pending
Bug #770911 [tomcat8] tomcat8: postinst fails when JAVA_OPTS contains %
Added tag(s) pending.
> thanks
Stopping processing here.

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#770911: Pending fixes for bugs in the tomcat8 package

2016-12-07 Thread pkg-java-maintainers
tag 770911 + pending
thanks

Some bugs in the tomcat8 package are closed in revision
7664221d66701e2c31a31fe3b4f22e8bea4158dc in branch 'master' by
Emmanuel Bourg

The full diff can be seen at
https://anonscm.debian.org/cgit/pkg-java/tomcat8.git/commit/?id=7664221

Commit message:

Fixed the installation error when JAVA_OPTS contains % (Closes: #770911)

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#845425: DataSource no longer accessible since jessie security update

2016-12-07 Thread Arne Nordmark

Den 2016-12-07 kl. 11:38, skrev Emmanuel Bourg:

Hi Arne,

Were is located the jar of your JDBC driver?


I have put a symlink in /var/lib/tomcat7/common, so that would be loaded 
by the "Common" class loader.


The default Debian configuration in /etc/tomcat7/catalina.properties 
seem to be slightly broken here, so in the "common.loader" I had to 
change from ${catalina.home}/common/... to ${catalina.base}/common/...





I can build and run Debian tomcat7 on both wheezy and jessie, so if you
would like me to make any further tests, please let me know.


Would you be able to try again with the missing loop?


Am I correct in understanding that you want me to add the loop on top of 
version 7.0.56-3+deb8u5 without the other changes from upstream 7.0.73?




Emmanuel Bourg



Arne

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#845425: DataSource no longer accessible since jessie security update

2016-12-07 Thread Emmanuel Bourg
Hi Arne,

Were is located the jar of your JDBC driver?

> I can build and run Debian tomcat7 on both wheezy and jessie, so if you
> would like me to make any further tests, please let me know.

Would you be able to try again with the missing loop?

Emmanuel Bourg

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


tomcat-native_1.2.10-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports

2016-12-07 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 07 Dec 2016 10:26:53 +0100
Source: tomcat-native
Binary: libtcnative-1
Architecture: source amd64
Version: 1.2.10-1~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian Java Maintainers 

Changed-By: Emmanuel Bourg 
Description:
 libtcnative-1 - Tomcat native library using the Apache Portable Runtime
Changes:
 tomcat-native (1.2.10-1~bpo8+1) jessie-backports; urgency=medium
 .
   * Rebuild for jessie-backports.
Checksums-Sha1:
 edba4e6ce61c2cda1abc914e30d98b9f5caf39a0 2071 tomcat-native_1.2.10-1~bpo8+1.dsc
 685490bda04ca9500fe9a3f4e725b9cebdaa3f84 4296 
tomcat-native_1.2.10-1~bpo8+1.debian.tar.xz
 0a075f1f960e251bba24b2eeae4081b62860ba1b 86486 
libtcnative-1_1.2.10-1~bpo8+1_amd64.deb
Checksums-Sha256:
 fc6c96ed971aad5820dec3dd609d84625f6f55636b55406da82df7c5d0dec64e 2071 
tomcat-native_1.2.10-1~bpo8+1.dsc
 b6eb5d8e8a916aeb8ddf6b4b0b90521452a7a40720d6c628fc3289cd0e16be99 4296 
tomcat-native_1.2.10-1~bpo8+1.debian.tar.xz
 68ec5beff66be3c1c6c4213ace54b9e5f61e0b2db30e285bc9a66b29da815c21 86486 
libtcnative-1_1.2.10-1~bpo8+1_amd64.deb
Files:
 2db6c33dc0a28fbfdf090ccc039858f1 2071 java extra 
tomcat-native_1.2.10-1~bpo8+1.dsc
 5b365a303fb456a1254b54f0c18f7cfc 4296 java extra 
tomcat-native_1.2.10-1~bpo8+1.debian.tar.xz
 f00fb96c8df03dda9740d3e4c03e004d 86486 java extra 
libtcnative-1_1.2.10-1~bpo8+1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJYR9iYAAoJEPUTxBnkudCsjSsP/2nzdAfBbVWPYo0xfSZWXEK9
mlehDzhrqbTJT8jwAuzqyn5MoLCDT9JwpuCOoC14bGs8GtavVQhMnIQLhhwRPy5v
gQANBuAZLC9cTEDfjIHzd75tNLL/8GtdXBFc7XQcoeJlJWOJvSoxqMj+kHJjv/0z
avY0DhIuLsw4WUMjsS+t31+PXDLDbF7UTgnDNUopBeA26Xvyex+S8XDuZ/INkXjl
2sfdaTMv8iDsqDyujczG3dCqJFXmXgoHt+la+FUa+DoWVT/XwcTk2yVnECAtmGyF
eL87sx2kXvz0a687PGtbp8Dy9WI1E9FLEnkClWlttGZegRYh4JJZ/IM6SzKXsDqy
un+fohj3e0wGSihcVRDx8HJwD3dreFBUR/C5oXKj4LnqvqOxF2knWQ24nLcMWUGX
AkeckwOIRrhso0kZzyOD6zvffWW2hnkgh4/KzttivThwLtm/4v+oeV03Kw+1+fpa
E11Q2NqzlYMDeg5iVFLSSjfWEWLr90gNl5TL7y/OO8kPwDxXpV4dmwoQ6Q70dmz2
kBLTjq45qKdVmGEeBluguawf6RfXp4HjCyOUQu7j+G/JAagP5q1a5pbYhbrJzbze
VD5qfeS/NNPgIr8AjyallWGo5rRjTuCRGVX/uSZEnvkiXSy1g/NINYOfUnU/kHqF
2jAzDHCvCPBFDZCJfO0p
=Txmo
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processed: your mail

2016-12-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 842404 + moreinfo
Bug #842404 [tomcat7-user] tomcat7-user fails to install on stretch
Added tag(s) moreinfo.
> tags 775505 + moreinfo
Bug #775505 [tomcat7] tomcat7: NullPointerException with catalina*.jar from 
package
Added tag(s) moreinfo.
> reassign 817909 tomcat8
Bug #817909 [tomcat7] Restarting tomcat7 on Debian 8 does not always stop 
current running process, resulting in the service entering a failed state
Bug reassigned from package 'tomcat7' to 'tomcat8'.
No longer marked as found in versions 7.0.56.
Ignoring request to alter fixed versions of bug #817909 to the same values 
previously set
>
End of message, stopping processing here.

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#775505: tomcat7: NullPointerException with catalina*.jar from package - datasource

2016-12-07 Thread Emmanuel Bourg
Hi Ralf,

If you are still affected by this issue, could you try upgrading the to
the version of tomcat7 in the jessie-backports repository please? Let me
know if it works better.

Regards,

Emmanuel Bourg

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of tomcat-native_1.2.10-1~bpo8+1_amd64.changes

2016-12-07 Thread Debian FTP Masters
tomcat-native_1.2.10-1~bpo8+1_amd64.changes uploaded successfully to localhost
along with the files:
  tomcat-native_1.2.10-1~bpo8+1.dsc
  tomcat-native_1.2.10-1~bpo8+1.debian.tar.xz
  libtcnative-1_1.2.10-1~bpo8+1_amd64.deb

Greetings,

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#846918: interface opens, but no menus and no action on button clicks

2016-12-07 Thread gregor herrmann
On Wed, 07 Dec 2016 09:49:32 +0100, Martin Lutz wrote:

> Package: jabref
> Version: 2.10+ds-7
> Followup-For: Bug #846918
> 
> Dear Maintainer,
> 
> after an update yesterday, jabref fails to start.
> ERROR while starting or running JabRef: java.lang.NoSuchFieldError: DIALOG
> 
> Searching through the debian bug list, I find bug 846503 with a similar 
> problem.

Yup, there seem to be some runtime incompatibilitites with the new
libjgoodies-*, which were not caught at buildtime. Cf. also the
thread starting at
https://lists.debian.org/debian-java/2016/12/msg00010.html

Probably we'll try with rebuilding the affected packages; for JabRef
the good news is that we're working on updating to 3.6 which doesn't
have these problems (but needs some wrinkles ironed out before we can
upload it).
 
Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   BOFH excuse #192:  runaway cat on system. 

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#847297: electric: Build-depends on scala but doesn't seem to use it

2016-12-07 Thread Markus Koschany
On 07.12.2016 03:36, Stuart Prescott wrote:
> Source: electric
> Version: 9.07+dfsg-1
> Severity: normal
> 
> Dear Maintainer,
> 
> The 'electric' source package build-depends on scala but does not seem
> to actually use the scala compiler at all in the build. The source package
> contains lots of empty directories under 'scala' and there are a few scala
> source files elsewhere in the plugins. It seems unlikely that this is the
> intended situation; either scala isn't needed for the build or something
> has gone awry with the build and some of the package isn't being built as
> intended (or I've completely missed something in the build system and build
> logs!).
> 

Hi,

AFAIK Scala is optional and not strictly required to rebuild Electric
from source. So in this regard you are right we could remove scala from
Build-Depends. The upstream source tarball contains only class files
under scala/ thus I had to repack the tarball and remove all binary
blobs. Some Scala plugins exist under
com/sun/electric/plugins/minarea/deltamerge1 though and someone would
need the scala compiler for building them from source.

In short adding scala to Build-Depends is convenient for people who want
to build the scala plugins but it is not used automatically thus it
should be safe to remove with the next upload of Electric.

Regards,

Markus






signature.asc
Description: OpenPGP digital signature
__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#846918: interface opens, but no menus and no action on button clicks

2016-12-07 Thread Martin Lutz
Package: jabref
Version: 2.10+ds-7
Followup-For: Bug #846918

Dear Maintainer,

after an update yesterday, jabref fails to start.
ERROR while starting or running JabRef: java.lang.NoSuchFieldError: DIALOG

Searching through the debian bug list, I find bug 846503 with a similar problem.

I looked through my updated package list, and these packages were updated
yesterday (among others):
libgcj-common
libgcj17
gcj-6-jre-lib
libglazedlists-java
libjgoodies-common-java
jabref
libjgoodies-forms-java
libjgoodies-looks-java
libmicroba-java
libbcprov-java
libbcpkix-java
libbcmail-java
libgcj-bc

Here is the full output during jabref startup:
log4j:WARN No appenders could be found for logger 
(org.java.plugin.ObjectFactory).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more 
info.
Found 2 plugin(s):
  - net.sf.jabref.export.misq 
(jar:file:/usr/share/jabref/JabRef-2.10.jar!/plugins/net.sf.jabref.export.misq/plugin.xml)
  - net.sf.jabref.core 
(jar:file:/usr/share/jabref/JabRef-2.10.jar!/plugins/net.sf.jabref.core/plugin.xml)

Opening: /home/lutz/ZnSal/ZnSal.bib
Opening: /home/lutz/Fe-salicylate/Fe-salicylate.bib
Opening: /home/lutz/CuSal/CuSal.bib
Could not get key binding for "Open folder"

ERROR while starting or running JabRef:

java.lang.NoSuchFieldError: DIALOG
at 
net.sf.jabref.gui.CleanUpAction.initOptionsPanel(CleanUpAction.java:140)
at net.sf.jabref.gui.CleanUpAction.(CleanUpAction.java:112)
at net.sf.jabref.BasePanel.setupActions(BasePanel.java:348)
at net.sf.jabref.BasePanel.init(BasePanel.java:276)
at net.sf.jabref.BasePanel.(BasePanel.java:257)
at net.sf.jabref.JabRefFrame.addTab(JabRefFrame.java:1745)
at net.sf.jabref.JabRefFrame.addParserResult(JabRefFrame.java:1502)
at net.sf.jabref.JabRef.openWindow(JabRef.java:790)
at net.sf.jabref.JabRef.(JabRef.java:201)
at net.sf.jabref.JabRef.main(JabRef.java:84)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at net.sf.jabref.JabRefMain.main(Unknown Source)

Please first check if this problem and a solution is already known. Find our...
  * ...FAQ at http://jabref.sf.net/faq.php and our...
  * ...user mailing-list at 
http://sf.net/mailarchive/forum.php?forum_name=jabref-users

If you do not find a solution there, please let us know about the problem by 
writing a bug report.
You can find our bug tracker at http://sourceforge.net/p/jabref/bugs/

  * If the bug has already been reported there, please add your comments to the 
existing bug.
  * If the bug has not been reported yet, then we need the complete error 
message given above
and a description of what you did before the error occured.

We also need the following information (you can copy and paste all this):
  * Java Version: 1.8.0_111
  * Java Vendor: Oracle Corporation
  * Operating System: Linux (4.7.0-1-amd64)
  * Hardware Architecture: amd64

We are sorry for the trouble and thanks for reporting problems with JabRef!




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

Kernel: Linux 4.7.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages jabref depends on:
ii  antlr  2.7.7+dfsg-7
ii  antlr3 3.5.2-6
ii  default-jre [java6-runtime]2:1.8-57
ii  java-wrappers  0.1.28
ii  libcommons-logging-java1.2-1
ii  libglazedlists-java1.9.1-2
ii  libjempbox-java1:1.8.12-1
ii  libjgoodies-common-java1.8.1-2
ii  libjgoodies-forms-java 1.9.0-3
ii  libjgoodies-looks-java 2.7.0-2
ii  libjpf-java1.5.1+dfsg-4
ii  libjpfcodegen-java 0.4+dfsg1-1
ii  libmicroba-java1:0.4.4.3-5
ii  libmysql-java  5.1.40-1
ii  libpdfbox-java 1:1.8.12-1
ii  libpostgresql-jdbc-java9.2-1002-1
ii  libspin-java   1.5+dfsg-8
ii  openjdk-8-jre [java6-runtime]  8u111-b14-3
ii  velocity   1.7-5

Versions of packages jabref recommends:
ii  libreoffice-java-common  1:5.2.3-2
ii  libreoffice-writer   1:5.2.3-2
ii  xdg-utils1.1.1-1

Versions of packages jabref suggests:
ii  evince [postscript-viewer]   3.22.1-2
ii  ghostscript [postscript-viewer]  9.20~dfsg-1
ii  gv [postscript-viewer]   1:3.7.4-1
pn  xpdf-reader | pdf-viewer 

-- no debconf information

__
This is the maintainer address of Debian's Java team

Processed: your mail

2016-12-07 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> fixed 845393 8.5.8-2
Bug #845393 [tomcat8] CVE-2016-9774: privilege escalation via upgrade
Marked as fixed in versions tomcat8/8.5.8-2.
> close 845393
Bug #845393 [tomcat8] CVE-2016-9774: privilege escalation via upgrade
Marked Bug as done
>
End of message, stopping processing here.

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

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.