Re: wheezy update of httpcomponents-client

2015-04-26 Thread Markus Koschany
On Sat, 25. Apr 19:42 Miguel Landaeta nomad...@debian.org wrote:
 On Sat, Apr 25, 2015 at 06:23:42PM -0300, Miguel Landaeta wrote:
  On Sat, Apr 25, 2015 at 06:46:13PM +0200, Markus Koschany wrote:
  
   We've just got the go-ahead from Adam.
  
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=782848#10
  
 
  Great, I'll upload it tonight.

 Uploaded.

 Thank you very much for preparing this upload.

Thanks for uploading but it seems something went wrong with the suite.
Jessie was released a few hours ago (yeah) and now we need either wheezy
or oldstable.

Have a nice sunday

Markus



signature.asc
Description: Digital signature


Re: Help with Java package needed

2015-04-26 Thread Markus Koschany
Hi,

On 26.04.2015 07:20, Andreas Tille wrote:
 Hi,
 
 I intent to package mauve[1] and prepared the package in Git[2].  I was
 able to get rid of several JARs upstream included but it seems now it
 starts to become tricky enough that I need some help.
 
 The Mauve download contains ext/zeus-jscl.jar.  The source of this is
 available here[3] and I think I was able to create a proper package of
 this in pkg-java Git[4].
 
 However, if I try to build Mauve which was working before changing the
 location of zaus-jscl.jar in build.xml I get:
 
 
 compile:
 [mkdir] Created dir: 
 /home/andreas/debian-maintain/repack/mauve/mauve-2.4.0+4734/bin
 [javac] 
 /home/andreas/debian-maintain/repack/mauve/mauve-2.4.0+4734/build.xml:96: 
 warning: 'includeantruntime' was not set, defaulting to 
 build.sysclasspath=last; set to false for repeatable builds
 [javac] Compiling 202 source files to 
 /home/andreas/debian-maintain/repack/mauve/mauve-2.4.0+4734/bin
 [javac] 
 /home/andreas/debian-maintain/repack/mauve/mauve-2.4.0+4734/src/org/gel/mauve/MyConsole.java:17:
  error: incompatible types
 [javac] console = JConsole.getConsole ();
 [javac]   ^
 [javac]   required: JConsole
 [javac]   found:JConsolePane
 [javac] 
 /home/andreas/debian-maintain/repack/mauve/mauve-2.4.0+4734/src/org/gel/mauve/MyConsole.java:22:
  error: cannot find symbol
 [javac] console.startConsole ();
 [javac]^

This is an upstream bug because mauve's code is incompatible with the
latest version of zeus-jscl and the code was split into JConsole.java
and JConsolePane.java years ago. I'm attaching a patch which at least
allows mauve to compile but there is still something wrong and the
console window shows only for a second on startup but nothing happens
when I click on the menu entry.

The problem is that in src/org/gel/mauve/MyConsole.java and in
src/org/gel/mauve/gui/MauveFrame.java the console variable is of type
JConsole but it should be JConsolePane. I would file an upstream bug
report for this.

Regards,

Markus
From: Markus Koschany a...@gambaru.de
Date: Sun, 26 Apr 2015 15:22:19 +0200
Subject: MyConsole

---
 src/org/gel/mauve/MyConsole.java  | 16 +---
 src/org/gel/mauve/gui/MauveFrame.java |  3 +--
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/src/org/gel/mauve/MyConsole.java b/src/org/gel/mauve/MyConsole.java
index 1781510..d9e7c3a 100644
--- a/src/org/gel/mauve/MyConsole.java
+++ b/src/org/gel/mauve/MyConsole.java
@@ -10,18 +10,20 @@ import java.io.PrintStream;
 public class MyConsole {
 	private static boolean useSwing = false;
 
-	private static JConsole console;
+	private static JConsole console = new JConsole();
 
 	public static void setUseSwing (boolean b) {
 		if (b  !useSwing) {
-			console = JConsole.getConsole ();
 			console.setTitle (Mauve Console);
 			console.setSize (400, 400);
 			Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
 			console.setLocation(dim.width-400, 0);
-			console.startConsole ();
+			JConsole.getConsole().startConsole ();
+			if (!console.isVisible()) {
+console.setVisible(true);
+			}
 		} else if (!b  useSwing) {
-			console.stopConsole ();
+			JConsole.getConsole().stopConsole ();
 			console = null;
 		}
 
@@ -30,13 +32,13 @@ public class MyConsole {
 
 	public static void showConsole () {
 		if (useSwing) {
-			console.showConsole ();
+			JConsole.getConsole().showConsole ();
 		}
 	}
 
 	public static PrintStream err () {
 		if (useSwing) {
-			console.showConsole ();
+			JConsole.getConsole().showConsole ();
 		}
 		return System.err;
 	}
@@ -44,4 +46,4 @@ public class MyConsole {
 	public static PrintStream out () {
 		return System.out;
 	}
-}
\ No newline at end of file
+}
diff --git a/src/org/gel/mauve/gui/MauveFrame.java b/src/org/gel/mauve/gui/MauveFrame.java
index eda9460..e82111e 100644
--- a/src/org/gel/mauve/gui/MauveFrame.java
+++ b/src/org/gel/mauve/gui/MauveFrame.java
@@ -497,8 +497,7 @@ public class MauveFrame extends JFrame implements ActionListener, ModelProgressL
 }
 if (source == jMenuHelpConsole || ae.getActionCommand().equals(Console))
 {
-	JConsole console = JConsole.getConsole();
-	console.showConsole();
+	JConsole.getConsole().showConsole();
 }
 if (source == jMenuHelpClearCache || ae.getActionCommand().equals(ClearCache))
 {


signature.asc
Description: OpenPGP digital signature


Re: Help with Java package needed

2015-04-26 Thread Matthias Klose
On 04/26/2015 07:20 AM, Andreas Tille wrote:
 Hi,
 
 I intent to package mauve[1] and prepared the package in Git[2].

Please rename the package. We already have a mauve package in the archive.


-- 
To UNSUBSCRIBE, email to debian-java-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/553d0d1c.1090...@debian.org



Re: Packaging fest-swing and its dependencies

2015-04-26 Thread Potter, Tim (Cloud Services)
On 26 Apr 2015, at 3:57 pm, Andreas Tille andr...@an3as.eu wrote:
 
 Hi,
 
 the Debian Med team is packaging spread-phy[1].  Since the latest
 upgrade a new dependency fest-swing[2] is needed.  I realised that
 fest-swing in turn needs fest-reflect[3] and commited my try to package
 this to pkg-java Git[4].  Unfortunately it does not build.  My attempt
 to create the package simply based on the example of fest-assert since I
 had trouble with mh_make which I was not able to work around.
 
 Any help to get this package building would be welcome.

Hi Andreas.  I packaged up fest-assert so I can take a look at fest-swing (and 
the other build depends).


Tim.



smime.p7s
Description: S/MIME cryptographic signature


Re: wheezy update of httpcomponents-client

2015-04-26 Thread Miguel Landaeta
On Sun, Apr 26, 2015 at 10:30:47AM +0200, Markus Koschany wrote:
 On Sat, 25. Apr 19:42 Miguel Landaeta nomad...@debian.org wrote:
  On Sat, Apr 25, 2015 at 06:23:42PM -0300, Miguel Landaeta wrote:
   On Sat, Apr 25, 2015 at 06:46:13PM +0200, Markus Koschany wrote:
   
We've just got the go-ahead from Adam.
   
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=782848#10
   
  
   Great, I'll upload it tonight.
 
  Uploaded.
 
  Thank you very much for preparing this upload.
 
 Thanks for uploading but it seems something went wrong with the suite.
 Jessie was released a few hours ago (yeah) and now we need either wheezy
 or oldstable.

You are right, I'll have to upload again.
On the bright side, jessie has been released!

-- 
Miguel Landaeta, nomadium at debian.org
secure email with PGP 0x6E608B637D8967E9 available at http://miguel.cc/key.
Faith means not wanting to know what is true. -- Nietzsche


signature.asc
Description: Digital signature


Re: Help with Java package needed

2015-04-26 Thread Andreas Tille
On Sun, Apr 26, 2015 at 06:06:52PM +0200, Matthias Klose wrote:
 On 04/26/2015 07:20 AM, Andreas Tille wrote:
  Hi,
  
  I intent to package mauve[1] and prepared the package in Git[2].
 
 Please rename the package. We already have a mauve package in the archive.

You are right.  While I did realised this previously I forgot to do it
actually.  I think I'll leave it for the moment until this issues is
solved to not disturb people who might have a look into this.

Thanks for the hint

 Andreas.
 
-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-java-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150426200314.gc13...@an3as.eu



Re: Help with Java package needed

2015-04-26 Thread Andreas Tille
Hi Markus,

On Sun, Apr 26, 2015 at 04:09:16PM +0200, Markus Koschany wrote:
 
 This is an upstream bug because mauve's code is incompatible with the
 latest version of zeus-jscl and the code was split into JConsole.java
 and JConsolePane.java years ago. I'm attaching a patch which at least
 allows mauve to compile but there is still something wrong and the
 console window shows only for a second on startup but nothing happens
 when I click on the menu entry.

I see a chance that there are problems with other JARs.  In any case
thanks for confirming that my zeus-jscl is OK and so I can upload to new
in any case.  I might sort ot with Mauve later.
 
 The problem is that in src/org/gel/mauve/MyConsole.java and in
 src/org/gel/mauve/gui/MauveFrame.java the console variable is of type
 JConsole but it should be JConsolePane. I would file an upstream bug
 report for this.

I'll do.  Thanks a lot for the patch

  Andreas.

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-java-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150426201302.ge13...@an3as.eu



Re: Packaging fest-swing and its dependencies

2015-04-26 Thread Andreas Tille
Hi Tim,

On Sun, Apr 26, 2015 at 10:50:55AM +, Potter, Tim (Cloud Services) wrote:
 On 26 Apr 2015, at 3:57 pm, Andreas Tille andr...@an3as.eu wrote:
  
  Any help to get this package building would be welcome.
 
 Hi Andreas.  I packaged up fest-assert so I can take a look at fest-swing 
 (and the other build depends).

This would be really appreciated.  Please tell me whether I could be of
any help even if my Java skills are obviously insufficient.

Kind regards

  Andreas.

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-java-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150426200448.gd13...@an3as.eu



Re: RFS: icu4j-49 49.1-2

2015-04-26 Thread tony mancill
On 04/26/2015 11:53 AM, Jakub Adam wrote:
 Dear Java packagers,
 
 I'm looking for a sponsor for package icu4j-49
 
  * Package name: icu4j-49
Version : 49.1-2
Section : java
 
 which builds this binary package:
 
  libicu4j-49-java - Library for Unicode support and internationalization

Hi Jakub,

I'll take care of this.

Cheers,
tony



signature.asc
Description: OpenPGP digital signature