Processing of yui-compressor_2.4.2-1_amd64.changes

2010-01-08 Thread Archive Administrator
yui-compressor_2.4.2-1_amd64.changes uploaded successfully to localhost
along with the files:
  yui-compressor_2.4.2-1.dsc
  yui-compressor_2.4.2.orig.tar.gz
  yui-compressor_2.4.2-1.diff.gz
  yui-compressor_2.4.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


[SCM] JAS(2) Plotter branch, build, updated. upstream/2.2.6-18-gebff4fd

2010-01-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 JAS(2) Plotter.

The branch, build has been updated
   via  ebff4fd014c323edcca9a450c60349e13b33d295 (commit)
   via  1426e4155e1bb5befcd584a0b47d43031765c80d (commit)
   via  4cf4a7dd5a3ec281817f0c542e93ee53204f9a21 (commit)
  from  29687b9b4084fc9a66909f95d844f02632fae19d (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 ebff4fd014c323edcca9a450c60349e13b33d295
Merge: 1426e4155e1bb5befcd584a0b47d43031765c80d 
4cf4a7dd5a3ec281817f0c542e93ee53204f9a21
Author: Giovanni Mascellani mascell...@poisson.phc.unipi.it
Date:   Fri Jan 8 12:03:56 2010 +0100

Merge branch 'master' into build

commit 1426e4155e1bb5befcd584a0b47d43031765c80d
Author: Giovanni Mascellani mascell...@poisson.phc.unipi.it
Date:   Fri Jan 8 12:03:37 2010 +0100

Quilt patches regenerated

---

Summary of changes:
 debian/orig-tar.sh|   16 --
 debian/patches/patch/tablelayout.diff |  299 +
 debian/patches/series |1 +
 debian/watch  |6 +-
 4 files changed, 302 insertions(+), 20 deletions(-)

diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh
deleted file mode 100755
index 92e3109..000
--- a/debian/orig-tar.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh -e
-
-VERSION=$2
-TAR=../jas-plotter_$VERSION.orig.tar.gz
-DIR=jas-plotter-$VERSION
-TAG=$(echo jas-plotter-$VERSION | sed -re's/~(alpha|beta)/-\1-/')
-
-svn export svn://svn.freehep.org/svn/freehep/tags/${TAG}/ $DIR
-GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR
-rm -rf $DIR ../$TAG
-
-# move to directory 'tarballs'
-if [ -r .svn/deb-layout ]; then
-  . .svn/deb-layout
-  mv $TAR $origDir  echo moved $TAR to $origDir
-fi
diff --git a/debian/patches/patch/tablelayout.diff 
b/debian/patches/patch/tablelayout.diff
new file mode 100644
index 000..f74ed89
--- /dev/null
+++ b/debian/patches/patch/tablelayout.diff
@@ -0,0 +1,299 @@
+From: Giovanni Mascellani mascell...@poisson.phc.unipi.it
+Subject: [PATCH] patch/tablelayout
+
+This patch removes any dependency of JAS Plotter on TableLayout, which
+is non DFSG compliant. GridBagLayout is used instead of TableLayout.
+
+Signed-off-by: Giovanni Mascellani mascell...@poisson.phc.unipi.it
+
+---
+ src/main/java/jas/hist/JASHistPropertyDialog.java |  150 ++---
+ 1 files changed, 102 insertions(+), 48 deletions(-)
+
+diff --git a/src/main/java/jas/hist/JASHistPropertyDialog.java 
b/src/main/java/jas/hist/JASHistPropertyDialog.java
+index 2d05d8a..aa14f7d 100644
+--- a/src/main/java/jas/hist/JASHistPropertyDialog.java
 b/src/main/java/jas/hist/JASHistPropertyDialog.java
+@@ -18,10 +18,14 @@ import java.awt.Dimension;
+ import java.awt.FlowLayout;
+ import java.awt.Frame;
+ import java.awt.Graphics;
++import java.awt.GridBagConstraints;
++import java.awt.GridBagLayout;
+ import java.awt.Insets;
+ import java.awt.LayoutManager;
+ import java.awt.event.ActionEvent;
+ import java.awt.event.ActionListener;
++import java.awt.event.WindowAdapter;
++import java.awt.event.WindowEvent;
+ import java.util.Date;
+ import java.util.Enumeration;
+ import javax.swing.BorderFactory;
+@@ -32,6 +36,8 @@ import javax.swing.DefaultListModel;
+ import javax.swing.JButton;
+ import javax.swing.JCheckBox;
+ import javax.swing.JComboBox;
++import javax.swing.JComponent;
++import javax.swing.JFrame;
+ import javax.swing.JLabel;
+ import javax.swing.JList;
+ import javax.swing.JPanel;
+@@ -46,11 +52,32 @@ import javax.swing.event.ChangeEvent;
+ import javax.swing.event.ChangeListener;
+ import javax.swing.event.ListSelectionEvent;
+ import javax.swing.event.ListSelectionListener;
+-import tablelayout.TableLayout;
+-
+ 
+ public final class JASHistPropertyDialog extends PropertyDialog
+ {
++  /*
++   * The commented code is used by Debian maintainers to ease
++   * the switch from TableLayout (non DFSG compliant) to
++   * GridBagLayout.
++   */
++  /*public static void main(String[] args) {
++  tryFrame(new JASHist2DPropStyle().create2DPanel(), Mine);
++  tryFrame(new JASHist2DPropStyle().origCreate2DPanel(), 
Original);
++  //dialog.show();
++  }
++  public static JFrame tryFrame(JPanel p, String title) {
++  JFrame frame = new JFrame();
++  frame.setSize(700, 300);
++  frame.setTitle(title);
++  frame.add(p);
++  frame.addWindowListener(new WindowAdapter() {
++  public void windowClosing(WindowEvent e) {
++  

[SCM] JAS(2) Plotter branch, patch/tablelayout, created. upstream/2.2.6-15-g85be5eb

2010-01-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 JAS(2) Plotter.

The branch, patch/tablelayout has been created
at  85be5eb1aa4ef4bdd02c55dff1ee3cc5e0ff5ee3 (commit)

- Log -
commit 85be5eb1aa4ef4bdd02c55dff1ee3cc5e0ff5ee3
Author: Giovanni Mascellani mascell...@poisson.phc.unipi.it
Date:   Fri Jan 8 12:02:06 2010 +0100

Dependencies from TableLayout removed

commit b8f624611f4105dc6f2b5113f3636fc516382f0c
Author: Giovanni Mascellani mascell...@poisson.phc.unipi.it
Date:   Fri Jan 8 11:59:34 2010 +0100

TableLayout patch created

---


hooks/post-receive
-- 
JAS(2) Plotter

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


[SCM] JAS(2) Plotter branch, master, updated. upstream/2.2.6-14-g046fb2d

2010-01-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 JAS(2) Plotter.

The branch, master has been updated
   via  046fb2db41196186f81e7af7e5f64245d3000fe4 (commit)
  from  4cf4a7dd5a3ec281817f0c542e93ee53204f9a21 (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 046fb2db41196186f81e7af7e5f64245d3000fe4
Author: Giovanni Mascellani mascell...@poisson.phc.unipi.it
Date:   Fri Jan 8 12:21:51 2010 +0100

Added comment about repackaging

---

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

diff --git a/debian/README.source b/debian/README.source
index 683133e..a89e916 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -1,6 +1,9 @@
 Information about jas-plotter
 --
 
+
+DEBIANIZATION
+
 This package was debianized using the mh_make command
 from the maven-debian-helper package.
 
@@ -8,6 +11,9 @@ The build system uses Maven but prevents it from downloading
 anything from the Internet, making the build compliant with
 the Debian policy.
 
+
+QUILT
+
 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.  Please see:
@@ -18,4 +24,9 @@ for more information on how to apply the patches, modify 
patches, or
 remove a patch.
 
 
+REPACKAGING
+
+The original tarball for this package has been modified, because it
+included some non DFSG compliant code (the directory src/main/java/tablelayout
+has been removed).
 


hooks/post-receive
-- 
JAS(2) Plotter

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


[SCM] JAS(2) Plotter branch, pristine-tar, updated. b39eba706d5aae5a825ad437655dd914213cccd9

2010-01-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 JAS(2) Plotter.

The branch, pristine-tar has been updated
   via  b39eba706d5aae5a825ad437655dd914213cccd9 (commit)
  from  c2e7add1259f729a5babb1e6ea5bca564cb268b2 (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 b39eba706d5aae5a825ad437655dd914213cccd9
Author: Giovanni Mascellani mascell...@poisson.phc.unipi.it
Date:   Fri Jan 8 12:15:26 2010 +0100

pristine-tar data for jas-plotter_2.2.6.orig.tar.gz

---

Summary of changes:
 jas-plotter_2.2.6.orig.tar.gz.delta |  Bin 13013 - 15173 bytes
 jas-plotter_2.2.6.orig.tar.gz.id|2 +-
 2 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/jas-plotter_2.2.6.orig.tar.gz.delta 
b/jas-plotter_2.2.6.orig.tar.gz.delta
index c351b94..e985667 100644
Binary files a/jas-plotter_2.2.6.orig.tar.gz.delta and 
b/jas-plotter_2.2.6.orig.tar.gz.delta differ
diff --git a/jas-plotter_2.2.6.orig.tar.gz.id b/jas-plotter_2.2.6.orig.tar.gz.id
index e6b6132..4358322 100644
--- a/jas-plotter_2.2.6.orig.tar.gz.id
+++ b/jas-plotter_2.2.6.orig.tar.gz.id
@@ -1 +1 @@
-47dc2382212275f35d341893266ab308e49ca4ee
+e5f0335850594d1dae3a1f419fb943dd1c32076e


hooks/post-receive
-- 
JAS(2) Plotter

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


Bug#563946: maven2: dependency downloads fail

2010-01-08 Thread Ed Schaller
 AFAIK, it's a OpenJDK runtime bug.
 You can look at #560056 for a quick fix.

Yup. Just started having issues with tomcat too. Sorry for the dup.

--


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

Bug#503837: jakarta-log4j: patch available, please check

2010-01-08 Thread Thomas Koch
Package: jakarta-log4j
Severity: normal

Hi,

I'm attaching a patch to build log4j with limited jmx support. It uses
libjboss-jmx-java and excludes ../jmx/Agent.java from the build due to a
dependency on proprietary SUN code.
I don't know how to build a source package from the SVN checkout so I
could only check that the package compiles with the patch. I'm starting
to test now, whether ZooKeeper will work with this patched version of
log4j. I already tested that it compiles w/o problems.

Best regards,

Thomas Koch

-- System Information:
Debian Release: squeeze/sid
  APT prefers stable
  APT policy: (1000, 'stable'), (990, 'unstable'), (700, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Index: debian/control
===
--- debian/control	(Revision 11331)
+++ debian/control	(Arbeitskopie)
@@ -3,7 +3,8 @@
 Priority: optional
 Maintainer: Debian Java Maintainers pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Kalle Kivimaa kil...@debian.org, Michael Koch konque...@gmx.de, Varun Hiremath va...@debian.org, Kumar Appaiah aku...@debian.org, Torsten Werner twer...@debian.org
-Build-Depends: debhelper (= 5), cdbs, default-jdk-builddep, ant, libgnujaf-java, libgnumail-java, maven-repo-helper, openjdk-6-doc
+Build-Depends: debhelper (= 5), cdbs, default-jdk-builddep, ant, libgnujaf-java,
+ libgnumail-java, maven-repo-helper, openjdk-6-doc, libjboss-jmx-java
 Standards-Version: 3.8.2
 Homepage: http://jakarta.apache.org/log4j
 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/jakarta-log4j
Index: debian/patches/01_build_fix.patch
===
--- debian/patches/01_build_fix.patch	(Revision 11331)
+++ debian/patches/01_build_fix.patch	(Arbeitskopie)
@@ -1,6 +1,5 @@
-diff -Nur jakarta-log4j-1.2.15/build.xml jakarta-log4j-1.2.15.new/build.xml
 jakarta-log4j-1.2.15/build.xml	2007-08-25 09:39:43.0 +0530
-+++ jakarta-log4j-1.2.15.new/build.xml	2007-09-26 11:56:11.0 +0530
+--- jakarta-log4j-1.2.15/build.xml.orig	2010-01-07 20:14:49.0 +0100
 jakarta-log4j-1.2.15/build.xml	2010-01-08 15:35:21.0 +0100
 @@ -97,8 +97,8 @@
!-- Directory for temporary files. --
property name=dist.tmp value=${dist.dir}/tmp/
@@ -12,6 +11,31 @@

!--  destination for generated documentation on Apache web host  --
property name=apache.javadoc_dest value=/www/logging.apache.org/log4j/docs/
+@@ -166,13 +166,13 @@
+ and
+ available classname=javax.management.MBeanInfo
+classpath=${jmx.jar}/
+-available classname=com.sun.jdmk.comm.HtmlAdaptorServer
++!--available classname=com.sun.jdmk.comm.HtmlAdaptorServer
+ classpath
+ pathelement location=${jmx.jar}/
+ pathelement location=${jmx-extra.jar}/
+ 	pathelement location=${javaee-api.jar}/
+ /classpath
+-/available
++/available--
+ /and
+ /condition
+   /target
+@@ -336,7 +336,7 @@
+ javac srcdir=${java.source.dir}
+destdir=${javac.dest}
+includes=${stem}/jmx/*.java
+-   excludes=${stem}/jmx/T.java
++   excludes=${stem}/jmx/T.java,${stem}/jmx/Agent.java
+target=${javac.target}
+source=${javac.source}
+includeAntRuntime=${javac.includeAntRuntime}
 @@ -497,7 +497,6 @@
   protected=true
   author=true
___
pkg-java-maintainers mailing list
pkg-java-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers

Bug#564157: Removed package(s) from unstable and experimental

2010-01-08 Thread Debian Archive Maintenance
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable and experimental:

icedtea-gcjwebplugin | 1.0+dak1-1 | source, alpha, amd64, armel, i386, ia64, 
mips, mipsel, powerpc, s390
icedtea-gcjwebplugin | 1.0+dak1-2~exp1 | source, alpha, amd64, armel, i386, 
ia64, mips, mipsel, powerpc, s390, sparc

--- Reason ---
ROM; icedtea6-plugin built by openjdk-6
--

Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it).  Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.

Packages are usually not removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems. The release team can force a removal from testing if it is
really needed, please contact them if this should be the case.

Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System.  Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 564...@bugs.debian.org.

The full log for this bug can be viewed at http://bugs.debian.org/564157

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@debian.org.

Debian distribution maintenance software
pp.
Torsten Werner (the ftpmaster behind the curtain)

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