libmime-util-java is marked for autoremoval from testing

2015-09-18 Thread Debian testing autoremoval watch
libmime-util-java 2.1.3-1 is marked for autoremoval from testing on 2015-10-10

It is affected by these RC bugs:
798722: libmime-util-java: FTBFS due to downloading dependencies from the 
internet


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


Processed: severity of 782660 is wishlist

2015-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 782660 wishlist
Bug #782660 [java-package] java-package: Provide a transitional way for the 
package name
Severity set to 'wishlist' from 'normal'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
782660: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=782660
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.


commons-vfs changed in unstable: FTBFS -> reproducible

2015-09-18 Thread Reproducible builds folks
More information on https://reproducible.debian.net/unstable/amd64/commons-vfs, 
feel free to reply to this email to get more help.

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


apache-curator changed in unstable: FTBFS -> reproducible

2015-09-18 Thread Reproducible builds folks
More information on 
https://reproducible.debian.net/unstable/amd64/apache-curator, feel free to 
reply to this email to get more help.

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


jackson-datatype-joda 2.4.3-2 MIGRATED to testing

2015-09-18 Thread Debian testing watch
FYI: The status of the jackson-datatype-joda source package
in Debian's testing distribution has changed.

  Previous version: 2.4.3-1
  Current version:  2.4.3-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.


netty 1:4.0.31-1 MIGRATED to testing

2015-09-18 Thread Debian testing watch
FYI: The status of the netty source package
in Debian's testing distribution has changed.

  Previous version: 1:3.2.6.Final-2
  Current version:  1:4.0.31-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 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.


libjtype-java 0.1.3-4 MIGRATED to testing

2015-09-18 Thread Debian testing watch
FYI: The status of the libjtype-java source package
in Debian's testing distribution has changed.

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


maven-processor-plugin 2.0.8-2 MIGRATED to testing

2015-09-18 Thread Debian testing watch
FYI: The status of the maven-processor-plugin source package
in Debian's testing distribution has changed.

  Previous version: 2.0.8-1
  Current version:  2.0.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.


Processed: severity of 779482 is important

2015-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 779482 important
Bug #779482 [libgluegen2-rt-java] support for powerpc, ppc64el and s390x not 
complete
Severity set to 'important' from 'grave'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
779482: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779482
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#799378: [PATCH] jh_build: Increase allowed command line length for xargs

2015-09-18 Thread Jakub Adam
Package: javatools
Version: 0.53

Tags: patch

Maximum length of command line that xargs (which jh_build uses to call javac) 
is allowed to produce
may be too low when there are hundreds of files in a source directory. Please 
consider increasing this
limit (see the attached patch). I've found 512000 B to be a reasonable value 
when building
org.eclipse.ui.workbench bundle (circa 1300 java sources).

Regards,

Jakub

From f83951bd33b405426c3f758c563cc50982acb398 Mon Sep 17 00:00:00 2001
From: Jakub Adam 
Date: Fri, 18 Sep 2015 14:40:06 +0200
Subject: [PATCH 2/2] jh_build: Increase allowed command line length for xargs

Fixes build of source directories with many files.
---
 jh_build | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/jh_build b/jh_build
index cd5834c..3ac2d7c 100755
--- a/jh_build
+++ b/jh_build
@@ -110,17 +110,17 @@ function dobuild()
 	if [ -n "$srcdirs" ]; then
 
 		if [ -z "`getarg q quiet`" ]; then
-			echo find "${srcdirs[@]}" -name '*.java' -and -type f -print0 '|' xargs -0 $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS "${srcfiles[@]}"
+			echo find "${srcdirs[@]}" -name '*.java' -and -type f -print0 '|' xargs -s 512000 -0 $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS "${srcfiles[@]}"
 		fi
 
-		find "${srcdirs[@]}" -name '*.java' -and -type f -print0 | xargs -0 $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS "${srcfiles[@]}"
+		find "${srcdirs[@]}" -name '*.java' -and -type f -print0 | xargs -s 512000 -0 $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS "${srcfiles[@]}"
 
 		if [ -n "`getarg J javadoc`" ] || [ -z "`getarg N no-javadoc`" ]; then
 			if [ -z "`getarg q quiet`" ]; then
-echo find "${srcdirs[@]}" -name '*.java' -and -type f -print0 '|' xargs -0 $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS "${srcfiles[@]}"
+echo find "${srcdirs[@]}" -name '*.java' -and -type f -print0 '|' xargs -s 512000 -0 $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS "${srcfiles[@]}"
 			fi
 
-			find "${srcdirs[@]}" -name '*.java' -and -type f -print0 | xargs -0 $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS "${srcfiles[@]}"
+			find "${srcdirs[@]}" -name '*.java' -and -type f -print0 | xargs -s 512000 -0 $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS "${srcfiles[@]}"
 		fi
 
 	elif [ -n "$srcfiles" ]; then
-- 
2.5.1



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#799375: [PATCH] jh_build: Fix build of sources with spaces in path

2015-09-18 Thread Jakub Adam
Package: javatools
Version: 0.53

Tags: patch

jh_build fails when a source directory passed as an argument contains spaces. 
For example:

  $ jh_build org.eclipse.ui.workbench_3.107.0.qualifier.jar 
"bundles/org.eclipse.ui.workbench/Eclipse UI Editor Support"

produces this output:

  find bundles/org.eclipse.ui.workbench/Eclipse UI Editor Support -name *.java 
-and -type f -print0 | xargs -0 /usr/lib/jvm/default-java/bin/javac -g
-cp :debian/_jh_build.org.eclipse.ui.workbench_3.107.0.qualifier -d 
debian/_jh_build.org.eclipse.ui.workbench_3.107.0.qualifier -source 1.5 -target 
1.5
  find: `bundles/org.eclipse.ui.workbench/Eclipse': No such file or directory
  find: `UI': No such file or directory
  find: `Editor': No such file or directory
  find: `Support': No such file or directory
  javac: no source files
  Usage: javac  
  use -help for a list of possible options

Please consider including the attached patch which should fix this issue.

Regards,

Jakub
From cfdc0aa86f6847ca99ed51b4a2af3c112e366765 Mon Sep 17 00:00:00 2001
From: Jakub Adam 
Date: Fri, 18 Sep 2015 14:36:02 +0200
Subject: [PATCH 1/2] jh_build: Fix build of sources with spaces in path

---
 jh_build | 24 
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/jh_build b/jh_build
index 6e99dee..cd5834c 100755
--- a/jh_build
+++ b/jh_build
@@ -73,13 +73,13 @@ function dobuild()
 	jarfile="$1"
 	shift
 	ext="`basename "$jarfile" .jar`"
-	srcdirs=
-	srcfiles=
+	srcdirs=()
+	srcfiles=()
 	while [ -n "$1" ]; do 
 		if [ -f "$1" ]; then
-			srcfiles="$srcfiles $1"
+			srcfiles+=("$1")
 		elif [ -d "$1" ]; then
-			srcdirs="$srcdirs $1"
+			srcdirs+=("$1")
 		else
 			echo "Ignoring $1 because it does not exist"
 		fi
@@ -110,32 +110,32 @@ function dobuild()
 	if [ -n "$srcdirs" ]; then
 
 		if [ -z "`getarg q quiet`" ]; then
-			echo find $srcdirs -name '*.java' -and -type f -print0 '|' xargs -0 $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS $srcfiles
+			echo find "${srcdirs[@]}" -name '*.java' -and -type f -print0 '|' xargs -0 $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS "${srcfiles[@]}"
 		fi
 
-		find $srcdirs -name '*.java' -and -type f -print0 | xargs -0 $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS $srcfiles
+		find "${srcdirs[@]}" -name '*.java' -and -type f -print0 | xargs -0 $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS "${srcfiles[@]}"
 
 		if [ -n "`getarg J javadoc`" ] || [ -z "`getarg N no-javadoc`" ]; then
 			if [ -z "`getarg q quiet`" ]; then
-echo find $srcdirs -name '*.java' -and -type f -print0 '|' xargs -0 $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS $srcfiles
+echo find "${srcdirs[@]}" -name '*.java' -and -type f -print0 '|' xargs -0 $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS "${srcfiles[@]}"
 			fi
 
-			find $srcdirs -name '*.java' -and -type f -print0 | xargs -0 $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS $srcfiles
+			find "${srcdirs[@]}" -name '*.java' -and -type f -print0 | xargs -0 $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS "${srcfiles[@]}"
 		fi
 
 	elif [ -n "$srcfiles" ]; then
 
 		if [ -z "`getarg q quiet`" ]; then
-			echo $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS $srcfiles
+			echo $JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS "${srcfiles[@]}"
 		fi
 
-		$JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS $srcfiles
+		$JAVAC -g -cp $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.$ext $JH_JAVAC_OPTS "${srcfiles[@]}"
 
 		if [ -n "`getarg J javadoc`" ] || [ -z "`getarg N no-javadoc`" ]; then
 			if [ -z "`getarg q quiet`" ]; then
-echo $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS $srcfiles
+echo $JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS "${srcfiles[@]}"
 			fi
-			$JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS $srcfiles
+			$JAVADOC $CLASSPATHDOCS -classpath $CLASSPATH:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS "${srcfiles[@]}"
 		fi
 
 	else
-- 
2.5.1



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

libcommons-fileupload-java changed in unstable: FTBFS -> reproducible

2015-09-18 Thread Reproducible builds folks
More information on 
https://reproducible.debian.net/unstable/amd64/libcommons-fileupload-java, feel 
free to reply to this email to get more help.

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


Bug#799373: java-package: Desktop tools integration

2015-09-18 Thread Emmanuel Bourg
Package: java-package
Version: 0.59
Severity: normal

The Oracle JRE/JDK provides desktop tools (Java Control Panel, Java Mission
Control, Java VisualVM) but java-package doesn't make them available from the
applications menu of the desktop environment. A .desktop file for the Java
Control Panel is already provided, but there is none for the two other tools.

The .desktop file for the Java Control Panel also has to be slightly modified
to make the application visible in the XFCE settings window. The 'Categories'
field must contain "X-XFCE-SettingsDialog;X-XFCE-SystemSettings".

Emmanuel Bourg

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


Bug#799370: java-package: jcontrol isn't on the path

2015-09-18 Thread Emmanuel Bourg
Package: java-package
Version: 0.59
Severity: normal

The Oracle JRE provides the Java Control Panel (jcontrol) but the package
generated by java-package doesn't make it available on the path, invoking
jcontrol from the command line doesn't work.

Emmanuel Bourg

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


libjtype-java changed in testing: FTBFS -> reproducible

2015-09-18 Thread Reproducible builds folks
More information on 
https://reproducible.debian.net/testing/amd64/libjtype-java, feel free to reply 
to this email to get more help.

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


maven-processor-plugin changed in testing: FTBFS -> reproducible

2015-09-18 Thread Reproducible builds folks
More information on 
https://reproducible.debian.net/testing/amd64/maven-processor-plugin, feel free 
to reply to this email to get more help.

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