Bug#663548: stapler: FTBFS: IO error: opening debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar for read : No such file or directory

2012-03-12 Thread Moritz Muehlenhoff
Package: stapler
Version: 1.174-1
Severity: serious

Your package fails to build from source:

dh_bugfiles -plibstapler-java 
dh_install -plibstapler-java  
dh_link -plibstapler-java  
dh_buildinfo -plibstapler-java 
dh_installmime -plibstapler-java 
dh_installgsettings -plibstapler-java 
jh_installlibs -plibstapler-java 
jh_classpath -plibstapler-java 
IO error: opening 
debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar for 
read : No such file or directory 
 at /usr/share/perl5/Archive/Zip/Archive.pm line 546
Archive::Zip::Archive::read('Archive::Zip::Archive=HASH(0xad8fd0)', 
'debian/libstapler-java/debian/libstapler-java//usr/share/java...') called at 
/usr/bin/jh_manifest line 295

main::update_jar('debian/libstapler-java/debian/libstapler-java//usr/share/java...',
 undef) called at /usr/bin/jh_manifest line 142
jh_manifest: Could not read 
debian/libstapler-java/debian/libstapler-java//usr/share/java/stapler.jar: No 
such file or directory
make: *** [binary-post-install/libstapler-java] Error 1
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2



__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[SCM] UNNAMED PROJECT branch, master, updated. 0.40-7-gd67fe25

2012-03-12 Thread Niels Thykier
The following commit has been merged in the master branch:
commit d67fe254bf31dcdd938c3c2d7e4a0cbf5dfe8f22
Author: Niels Thykier ni...@thykier.net
Date:   Mon Mar 12 08:31:05 2012 +0100

jh_manifest: produce cleaner error message for non-existent jar

Signed-off-by: Niels Thykier ni...@thykier.net

diff --git a/debian/changelog b/debian/changelog
index 727fd7b..07b7008 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
 javatools (0.41) UNRELEASED; urgency=low
 
+  [ Sylvestre Ledru ]
   * jh_makepkg: 
 - Switch the OpenJDK6 path to the multiarch one.
 - Remove the sun-java6 support since it has been
@@ -7,6 +8,10 @@ javatools (0.41) UNRELEASED; urgency=low
 - Provide the support for OpenJDK 7
 - Create the new package under the source format 3.0
 - -doc packages are now in the doc section.
+
+  [ Niels Thykier ]
+  * Produce a better error message when a non-existent Jar file is
+passed to jh_manifest.


  -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 16:22:58 +0100
diff --git a/jh_manifest b/jh_manifest
index 55aca49..d1418f4 100755
--- a/jh_manifest
+++ b/jh_manifest
@@ -123,6 +123,8 @@ if(@ARGV){
 # strip any leading / or ./ - it looks better and it
 # does not accidentally install a system install jar instead.
 $target =~ s@^\.?/+@@og;
+# Bail unless $dir/$target exists
+error ($target: $!) unless -f $dir/$target;
 $target = $dir/$target;
 }
 if ( -l $jar ){

-- 
UNNAMED PROJECT

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


[SCM] UNNAMED PROJECT branch, master, updated. 0.40-8-g3f252f6

2012-03-12 Thread Niels Thykier
The following commit has been merged in the master branch:
commit 3f252f654a8bc8fb33ab9484777d3dbe5725a6f5
Author: Niels Thykier ni...@thykier.net
Date:   Mon Mar 12 08:53:49 2012 +0100

jh_lib.sh: Try to parse -O options

Parse (and accept) known options passed via the -O paramater.  Unknown
options are silently discarded (as before).

Signed-off-by: Niels Thykier ni...@thykier.net

diff --git a/debian/changelog b/debian/changelog
index 07b7008..33e9bd6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -12,7 +12,9 @@ javatools (0.41) UNRELEASED; urgency=low
   [ Niels Thykier ]
   * Produce a better error message when a non-existent Jar file is
 passed to jh_manifest.
-   
+  * Try to parse arguments passed via -O for jh_lib.sh as regular
+options, but ignore them if they are unknown.  Previously, -O
+options was silently ignored.

  -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 16:22:58 +0100
 
diff --git a/jh_lib.sh.in b/jh_lib.sh.in
index 0cb90f6..300f807 100644
--- a/jh_lib.sh.in
+++ b/jh_lib.sh.in
@@ -12,27 +12,30 @@ parseargs()
ARGV=()
debhelper=
while [ -n $1 ]; do
-  if [ -V = $1 ] || [ --version = $1 ]; then
+  ignore=no
+  arg=$1
+  if [ -O = ${arg:0:2} ] ; then
+ arg=${arg:2}
+ ignore=yes
+  fi
+  if [ -V = $arg ] || [ --version = $arg ]; then
  echo Javahelper Version $JAVATOOLS_VERSION
  exit 0
-  elif [ -h = $1 ] || [ --help = $1 ]; then
+  elif [ -h = $arg ] || [ --help = $arg ]; then
  syntax
-  elif [ --with = $1 ]; then
+  elif [ --with = $arg ]; then
debhelper=true
shift
-  elif [ -O = ${1:0:2} ]; then
-  # -O from debhelper - we ignore that
-  :
-  elif [ - = ${1:1:1} ]; then
+  elif [ - = ${arg:1:1} ]; then
   # long opt
- optn=`sed 's/^--\([^=]*\)\(=.*\)*$/\1/;s/-/_/g'  $1`
+ optn=`sed 's/^--\([^=]*\)\(=.*\)*$/\1/;s/-/_/g'  $arg`
  if [ -z $optn ] || ! echo $ARGS | sed 's/-/_/g' | grep $optn 
/dev/null; then
-   if [ -z $debhelper ]; then
-   echo Invalid option: $optn
-   syntax
-   fi
+if [ -z $debhelper -a $ignore != yes ]; then
+echo Invalid option: $optn
+syntax
+fi
  fi
- optv=`echo $1 | sed -n 's/^[^=]*=\(.*\)$/\1/p'`
+ optv=`echo $arg | sed -n 's/^[^=]*=\(.*\)$/\1/p'`
  if [ -z $optv ]; then
 optv=true
  fi
@@ -42,16 +45,16 @@ parseargs()
else
export opt_$optn=$optv
fi
-  elif [ - = ${1:0:1} ]; then
+  elif [ - = ${arg:0:1} ]; then
   # short opt
- optn=${1:1:1}
+ optn=${arg:1:1}
  if [ -z $optn ] || ! echo $ARGS | grep $optn /dev/null; then
-   if [ -z $debhelper ]; then
-   echo Invalid option: $optn
-   syntax
-   fi
+if [ -z $debhelper -a $ignore != yes ]; then
+echo Invalid option: $optn
+syntax
+fi
  fi
- optv=${1:2}
+ optv=${arg:2}
  if [ -z $optv ]; then
 optv=true
  fi
@@ -63,7 +66,7 @@ parseargs()
fi
   else
   # not-opt arg
- ARGV[$ARGC]=$1
+ ARGV[$ARGC]=$arg
  ARGC=$(( $ARGC + 1 ))
   fi
   shift

-- 
UNNAMED PROJECT

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


Bug#662729: marked as done (/usr/bin/jh_linkjars: jh_linkjars fails when using dh --verbose)

2012-03-12 Thread Debian Bug Tracking System
Your message dated Mon, 12 Mar 2012 09:07:15 +0100
with message-id 4f5daeb3.70...@thykier.net
and subject line Re: Bug#662729: /usr/bin/jh_linkjars: jh_linkjars fails when 
using dh  --verbose
has caused the Debian Bug report #662729,
regarding /usr/bin/jh_linkjars: jh_linkjars fails when using dh --verbose
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
662729: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=662729
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: javahelper
Version: 0.32
Severity: important
File: /usr/bin/jh_linkjars


Hi,
I'm trying to debug a package using jh and dh (compat 7), and
jh_linkjars is buggering up.


dpkg-source: info: using source format `3.0 (quilt)'
dpkg-source: info: building crg-scoreboard using existing 
./crg-scoreboard_0.2.0.orig.tar.bz2
dpkg-source: info: building crg-scoreboard in 
crg-scoreboard_0.2.0-1.debian.tar.gz
dpkg-source: info: building crg-scoreboard in crg-scoreboard_0.2.0-1.dsc
 debian/rules build
dh --verbose --with javahelper build
   dh_testdir -O--verbose
   dh_auto_configure -O--verbose
   jh_linkjars -O--verbose
Invalid option: O
Usage: jh_linkjars [options] [target]
Options:
-h --help: show this text
-V --version: show the version
-v --verbose: show more information while running
-t --transitive: transitively link jars
-n --no-act: don't actually do anything, just print the results
-u --unlink: remove the links instead of adding them
make: *** [build] Error 1
dpkg-buildpackage: error: debian/rules build gave error exit status 2
debuild: fatal error at line 1325:
dpkg-buildpackage -rfakeroot -D -us -uc failed


jh_clean appeared to run correctly earlier on, so I suspect its not a general
problem with javahelper packages

thanks,
kk


-- System Information:
Debian Release: 6.0.4
  APT prefers stable
  APT policy: (990, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=en_AU.utf8, LC_CTYPE=en_AU.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages javahelper depends on:
ii  bsdmainutils  8.0.13 collection of more utilities from 
ii  dctrl-tools   2.14.5 Command-line tools to process Debi
ii  debhelper 9.20120115~bpo60+1 helper programs for debian/rules
ii  devscripts2.10.69+squeeze2   scripts to make the life of a Debi
ii  dpkg-dev  1.15.8.12  Debian package development tools
ii  fastjar   2:0.98-3   Jar creation utility
ii  libarchive-zip-perl   1.30-3 Perl module for manipulation of ZI

javahelper recommends no packages.

Versions of packages javahelper suggests:
pn  cvs none   (no description available)
ii  gawk1:3.1.7.dfsg-5   GNU awk, a pattern scanning and pr
ii  tofrodos1.7.8.debian.1-2 Converts DOS - Unix text files, 

-- no debconf information


---End Message---
---BeginMessage---
Version: 0.34


On 2012-03-06 04:03, Karl Goetz wrote:
 Package: javahelper
 Version: 0.32
 Severity: important
 File: /usr/bin/jh_linkjars
 
 
 Hi,
 I'm trying to debug a package using jh and dh (compat 7), and
 jh_linkjars is buggering up.
 

Hi,

Thanks for the report.

The particularly issue has been fixed in javahelper/0.34[1] and I am
therefore closing this report (in sid and Wheezy).  It is, however,
still open for stable (Squeeze).
  As a short-term solution, I can recommend using javahelper from
stable-backports, which have javahelper/0.37.  I will look at this fix
backported to stable (and thus available in the next point release).

 
 [...]
 
 
 jh_clean appeared to run correctly earlier on, so I suspect its not a general
 problem with javahelper packages
 

The bug affects all javahelper tools using jh_lib.sh to parse their
arguments.  In javahelper/0.40 these are:

java-propose-classpath
jh_build
jh_classpath
jh_depends
jh_exec
jh_installjavadoc
jh_installlibs
jh_linkjars
jh_makepkg
jh_repack

I would not be surprised if the list for javahelper/0.32 was slightly
longer.


 thanks,
 kk
 
 
 [...]
 

~Niels

[1] http://packages.qa.debian.org/j/javatools/news/20110429T173330Z.html


---End Message---
__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#661632: javahelper: jh_depends determines incorrect class version on sparc

2012-03-12 Thread Niels Thykier
On 2012-02-28 19:08, Kai Ruschenburg wrote:
 Package: javahelper
 Version: 0.32
 Severity: normal
 Tags: patch
 
 Hi,
 

Hi,

Thanks for the report.

 when packaging Java programs on sparc (using the sources fetched by apt-get
 source), on some programs (e.g. sat4j) this warning is printed:
 
 $ debuild
 [...]
 jh_depends -i
 Warning: Class version too new to recognise (88), might not run with any JVMs
 [...]
 
 This is caused by hd in the function getclassversion() in jh_depends.
 
 The output of hd seems to depend on the endianness of the architecture.
 Therefore probably not only sparc, but all big-endian architectures are
 affected.
 
 Changing line 37 from
 new=`hd -s 7 -n 1 -d $i | sed -n '2s/.*\([^ ][^ ]\) *$/\1/p'`
 to
 new=`hexdump -s 6 -n 2 -e '/1 %u ' -e '/2  r 256 * + p' $i | dc`
 should fix this.
 

To be honest, I do not see why the old code should fail.  The
specification says that bytes 6 and 7 are read as an unsigned short in
big-endian.
  Sure, our code fails if the class version suddenly jumps above 255
(because we only read the last byte).  However, we are at 51 with Java7
so I do not see that coming anytime soon.

Can you give me a hexdump of the 16 characters of the class file?

 Some examples:
 
 $ [...]
 
 Best regards
 
 Kai
 
 
 [...]

~Niels




__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[SCM] UNNAMED PROJECT branch, master, updated. 0.40-9-gbb38bb2

2012-03-12 Thread Niels Thykier
The following commit has been merged in the master branch:
commit bb38bb2f2d5bc7920a0172fa1f1bce2bf32697c8
Author: Niels Thykier ni...@thykier.net
Date:   Mon Mar 12 10:23:37 2012 +0100

jh_depends: remove sun JVM

Signed-off-by: Niels Thykier ni...@thykier.net

diff --git a/debian/changelog b/debian/changelog
index 33e9bd6..ec198d2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -15,7 +15,9 @@ javatools (0.41) UNRELEASED; urgency=low
   * Try to parse arguments passed via -O for jh_lib.sh as regular
 options, but ignore them if they are unknown.  Previously, -O
 options was silently ignored.
-   
+  * Remove support for using the sun (and sun6) JVM with
+jh_depends, as Debian is no longer ships the Sun/Oracle Java.
+
  -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 16:22:58 +0100
 
 javatools (0.40) unstable; urgency=low
diff --git a/jh_depends b/jh_depends
index 93bf6b6..9b86991 100755
--- a/jh_depends
+++ b/jh_depends
@@ -19,7 +19,7 @@ syntax()
echo -e \t-a --arch: work on all arch-specific packages
echo -e \t-s --same-arch: alias of --arch for compatibility with debhelper
echo -e \t-n --no-act: don't actually do anything, just print the results
-   echo -e \t-j[jvm] --jvm[=jvm]: Options are: default, headless, gcj, 
open, sun, sun6. Can be a space-separated list.
+   echo -e \t-j[jvm] --jvm[=jvm]: Options are: default, headless, gcj, 
open. Can be a space-separated list.
echo -e \t-Xpackage --exclude=package: don't add this package to 
depends  
echo -e 
echo -e Note: \headless\ (for --jvm) affects other values and 
alternatives (e.g. java6-runtime becomes
@@ -74,12 +74,6 @@ function home-to-jvm()
if echo $JHOME | grep 6-openjdk /dev/null; then
JVM=$JVM open
fi
-   if echo $JHOME | grep 6-sun /dev/null; then
-   JVM=$JVM sun6
-   fi
-   if echo $JHOME | grep 1.5.0-sun /dev/null; then
-   JVM=$JVM sun5
-   fi
echo $JVM
 }
 
@@ -229,9 +223,6 @@ for p in $PACKAGES; do
 gcj)
JVMDEPS=$JVMDEPS gcj-jre$headles $alternateversiondeps 
;;
-sun|sun6)
-   JVMDEPS=$JVMDEPS sun-java6-jre$headless 
-   ;;
 open)
JVMDEPS=$JVMDEPS openjdk-6-jre$headless 
;;
diff --git a/jh_depends.1 b/jh_depends.1
index fb65b5b..86b0e84 100644
--- a/jh_depends.1
+++ b/jh_depends.1
@@ -24,6 +24,6 @@ Refer to the tutorials in /usr/share/doc/javahelper for more 
detail
 .HP
 \fB\-n\fR \fB\-\-no\-act\fR: don't actually do anything, just print the results
 .HP
-\fB\-j[\fRjvm] \fB\-\-jvm[=\fRjvm]: Options are: default, headless, gcj, 
open, sun, sun5, sun6. May be a space-separated list
+\fB\-j[\fRjvm] \fB\-\-jvm[=\fRjvm]: Options are: default, headless, gcj, 
open. May be a space-separated list
 .HP
 \fB\-X[\fRpackage] \fB\-\-exclude[=\fRpackage]: Don't include this package 
in depends

-- 
UNNAMED PROJECT

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


Bug#663569: libspring-webflow-2.0-java: FTBFS: libspring-webflow-2.0-java-2.0.9.RELEASE/debian/build.xml:46: Compile failed; see the compiler error output for details.

2012-03-12 Thread Moritz Muehlenhoff
Package: libspring-webflow-2.0-java
Version: 2.0.9.RELEASE-3
Severity: serious

Your package fails to build from source:

jar-spring-js:
  [jar] Building jar: 
/home/jmm/libspring-webflow-2.0-java-2.0.9.RELEASE/dist/spring-js-2.0.9.RELEASE.jar

compile-spring-webflow:
[javac] Compiling 311 source files to 
/home/jmm/libspring-webflow-2.0-java-2.0.9.RELEASE/build
[javac] WebFlowUpgrader.java:34: warning: 
com.sun.org.apache.xml.internal.serializer.OutputPropertiesFactory is internal 
proprietary API and may be removed in a future release
[javac] import 
com.sun.org.apache.xml.internal.serializer.OutputPropertiesFactory;
[javac]  ^
[javac] ConversationScope.java:25: 
org.springframework.webflow.scope.ConversationScope is not abstract and does 
not override abstract method resolveContextualObject(java.lang.String) in 
org.springframework.beans.factory.config.Scope
[javac] public class ConversationScope extends AbstractWebFlowScope {
[javac]^
[javac] FlashScope.java:25: org.springframework.webflow.scope.FlashScope is 
not abstract and does not override abstract method 
resolveContextualObject(java.lang.String) in 
org.springframework.beans.factory.config.Scope
[javac] public class FlashScope extends AbstractWebFlowScope {
[javac]^
[javac] FlowScope.java:25: org.springframework.webflow.scope.FlowScope is 
not abstract and does not override abstract method 
resolveContextualObject(java.lang.String) in 
org.springframework.beans.factory.config.Scope
[javac] public class FlowScope extends AbstractWebFlowScope {
[javac]^
[javac] RequestScope.java:25: 
org.springframework.webflow.scope.RequestScope is not abstract and does not 
override abstract method resolveContextualObject(java.lang.String) in 
org.springframework.beans.factory.config.Scope
[javac] public class RequestScope extends AbstractWebFlowScope {
[javac]^
[javac] ViewScope.java:25: org.springframework.webflow.scope.ViewScope is 
not abstract and does not override abstract method 
resolveContextualObject(java.lang.String) in 
org.springframework.beans.factory.config.Scope
[javac] public class ViewScope extends AbstractWebFlowScope {
[javac]^
[javac] WebFlowUpgrader.java:87: warning: 
com.sun.org.apache.xml.internal.serializer.OutputPropertiesFactory is internal 
proprietary API and may be removed in a future release
[javac] 
transformer.setOutputProperty(OutputPropertiesFactory.S_KEY_INDENT_AMOUNT, 4);
[javac]   ^
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] 5 errors
[javac] 2 warnings

BUILD FAILED
/home/jmm/libspring-webflow-2.0-java-2.0.9.RELEASE/debian/build.xml:46: Compile 
failed; see the compiler error output for details.

Total time: 16 seconds
make[1]: *** [override_dh_auto_install] Error 1
make[1]: Leaving directory `/home/jmm/libspring-webflow-2.0-java-2.0.9.RELEASE'
make: *** [binary] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2



__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[SCM] jenkins packaging branch, master, updated. debian/1.424.3+dfsg-1-1-g8b2ad63

2012-03-12 Thread James Page
The following commit has been merged in the master branch:
commit 8b2ad633de09ab232f7d761fcdd662bfaa8cd3a7
Author: James Page james.p...@ubuntu.com
Date:   Mon Mar 12 11:43:21 2012 +

Switch upstart configuration to use start-stop-daemon to allow desktop 
systems to shutdown.

diff --git a/debian/changelog b/debian/changelog
index 0b9c297..c280d45 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+jenkins (1.424.3+dfsg-2) UNRELEASED; urgency=low
+
+  * Switch upstart configuration to use start-stop-daemon to allow
+desktop systems to shutdown.
+
+ -- James Page james.p...@ubuntu.com  Mon, 12 Mar 2012 11:42:43 +
+
 jenkins (1.424.3+dfsg-1) unstable; urgency=low
 
   * New upstream bugfix release.
diff --git a/debian/jenkins.upstart.in b/debian/jenkins.upstart.in
index 01ec80d..b55f37a 100644
--- a/debian/jenkins.upstart.in
+++ b/debian/jenkins.upstart.in
@@ -16,6 +16,7 @@ end script
 
 script
 [ -r /etc/default/jenkins ]  . /etc/default/jenkins
-exec su -l $JENKINS_USER --shell=/bin/bash -c \
-JENKINS_HOME=$JENKINS_HOME $JAVA $JAVA_ARGS -jar $JENKINS_WAR 
$JENKINS_ARGS --logfile=$JENKINS_LOG
+export JENKINS_HOME
+exec start-stop-daemon --start -c $JENKINS_USER --exec $JAVA --name 
jenkins \
+-- $JAVA_ARGS -jar $JENKINS_WAR $JENKINS_ARGS --logfile=$JENKINS_LOG
 end script

-- 
jenkins packaging

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


eclipse-cdt 8.0.2-1 MIGRATED to testing

2012-03-12 Thread Debian testing watch
FYI: The status of the eclipse-cdt source package
in Debian's testing distribution has changed.

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

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


ehcache 2.5.0-1 MIGRATED to testing

2012-03-12 Thread Debian testing watch
FYI: The status of the ehcache source package
in Debian's testing distribution has changed.

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

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#634089: jarwrapper: Getting CRC error when running a jar file

2012-03-12 Thread Wookey
Version 0.40 of this package currently in testing depends on
libarchive-zip-perl 1.30-5~ in order to make sure the broken version
is not used.

However in fact the 1.30-5 upload of libarchive-zip-perl turned out to
be broken too, so the correct dependency is 1.30-6~

See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654899#95

Another upload with the correct dependency would stop people getting
accidentally bitten by this in the future. 

Wookey
-- 
Principal hats:  Linaro, Emdebian, Wookware, Balloonboard, ARM
http://wookware.org/



__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#661632: javahelper: jh_depends determines incorrect class version on sparc

2012-03-12 Thread Kai Ruschenburg
Hi,

On Mon, 12 Mar 2012 09:26:06 +0100, Niels Thykier wrote:
 On 2012-02-28 19:08, Kai Ruschenburg wrote:
 [...]
  Changing line 37 from
  new=`hd -s 7 -n 1 -d $i | sed -n '2s/.*\([^ ][^ ]\) *$/\1/p'`
  to
  new=`hexdump -s 6 -n 2 -e '/1 %u ' -e '/2  r 256 * + p' $i | dc`
  should fix this.
  
 
 To be honest, I do not see why the old code should fail.  The
 specification says that bytes 6 and 7 are read as an unsigned short in
 big-endian.
   Sure, our code fails if the class version suddenly jumps above 255
 (because we only read the last byte).  However, we are at 51 with Java7
 so I do not see that coming anytime soon.

Right, as long as the class version fits into one byte, reading byte 7 is
sufficient. But this is not the problem. The problem is hexdump's -d
option, which (according to man hd) produces a zero-filled *two-byte*
decimal display.

So even if you do not read byte 6 (which for now is zero anyway), the
output of hd -s 7 -n 1 -d is byte 7 filled with zeros to make it
two-byte wide. This two-byte representation is differing on sparc
compared to i386.

 Can you give me a hexdump of the 16 characters of the class file?

This is not a problem of the class file. You can reproduce it with any
class file. Here are the first 16 bytes of the file I used as an example
in my report (compiled for Java 1.4):

$ hd -n 16 Test.class
  ca fe ba be 00 00 00 30  00 0f 0a 00 03 00 0c 07  |...0|
0010

This is on sparc:
$ hd -s 7 -n 1 -d Test.class
0007  30|0|
007   12288
008

This is on i386 (same class file):
$ hd -s 7 -n 1 -d Test.class
0007  30|0|
007   00048
008

As you can see, on sparc the decimal representation of 0x3000 is printed,
whereas on i386 it is the decimal representation of 0x0030.

Please excuse that this was not clear in my initial report.

 [...]
 
 ~Niels

Best regards

Kai



__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r15852 - trunk/libjogl2-java/debian

2012-03-12 Thread Sylvestre Ledru
Author: sylvestre
Date: 2012-03-12 19:20:50 + (Mon, 12 Mar 2012)
New Revision: 15852

Modified:
   trunk/libjogl2-java/debian/changelog
   trunk/libjogl2-java/debian/rules
Log:
Some sbuild still want to build the doc package. Enable it only for amd64
and x86. See build log of ia64  powerpc of version 2.0-rc5-1~exp2

Modified: trunk/libjogl2-java/debian/changelog
===
--- trunk/libjogl2-java/debian/changelog2012-03-11 14:36:51 UTC (rev 
15851)
+++ trunk/libjogl2-java/debian/changelog2012-03-12 19:20:50 UTC (rev 
15852)
@@ -1,3 +1,10 @@
+libjogl2-java (2.0-rc5-1~exp3) experimental; urgency=low
+
+  * Some sbuild still want to build the doc package. Enable it only for amd64
+and x86. See build log of ia64  powerpc of version 2.0-rc5-1~exp2
+
+ -- Sylvestre Ledru sylves...@debian.org  Wed, 28 Dec 2011 13:59:28 +0100
+
 libjogl2-java (2.0-rc5-1~exp2) experimental; urgency=low
 
   * Only build the doc once

Modified: trunk/libjogl2-java/debian/rules
===
--- trunk/libjogl2-java/debian/rules2012-03-11 14:36:51 UTC (rev 15851)
+++ trunk/libjogl2-java/debian/rules2012-03-12 19:20:50 UTC (rev 15852)
@@ -10,9 +10,14 @@
 DEB_ANT_CLEAN_TARGET := clean
 DEB_ANT_BUILD_TARGET := all
 DEB_ANT_BUILDFILE:= make/build.xml
+ENABLE_BUILD_HELP_ARCHS := amd64 i386
+DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
 
 build-indep:
+# Disable the build of the help on slow archs. It takes forever (a few hours) 
+ifneq (,$(findstring $(DEB_HOST_ARCH),$(ENABLE_BUILD_HELP_ARCHS)))
$(DEB_ANT_INVOKE) javadoc.all
+endif
 
 common-install-prehook-indep::
mv build/jar/jogl.all.jar build/jar/jogl2.jar


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


[SCM] eclipse-mercurialeclipse packaging branch, pristine-tar, updated. 80601c9c533e751a5d8dd3a78bdfb3d0be5fb027

2012-03-12 Thread Jakub Adam
The following commit has been merged in the pristine-tar branch:
commit 80601c9c533e751a5d8dd3a78bdfb3d0be5fb027
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Mon Mar 12 20:06:27 2012 +0100

pristine-tar data for eclipse-mercurialeclipse_1.9.2.orig.tar.gz

diff --git a/eclipse-mercurialeclipse_1.9.2.orig.tar.gz.delta 
b/eclipse-mercurialeclipse_1.9.2.orig.tar.gz.delta
new file mode 100644
index 000..6579e61
Binary files /dev/null and b/eclipse-mercurialeclipse_1.9.2.orig.tar.gz.delta 
differ
diff --git a/eclipse-mercurialeclipse_1.9.2.orig.tar.gz.id 
b/eclipse-mercurialeclipse_1.9.2.orig.tar.gz.id
new file mode 100644
index 000..c154785
--- /dev/null
+++ b/eclipse-mercurialeclipse_1.9.2.orig.tar.gz.id
@@ -0,0 +1 @@
+914af3b4d64264e9d797ec02c10579d302388234

-- 
eclipse-mercurialeclipse packaging

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


[SCM] eclipse-mercurialeclipse packaging branch, master, updated. upstream/1.9.2-10-gd082946

2012-03-12 Thread Jakub Adam
The following commit has been merged in the master branch:
commit d789752773915f65442152a49f1cb1cf034e88e0
Merge: b2e4008c941b2fdd8860cade7fe19997813c2355 
914af3b4d64264e9d797ec02c10579d302388234
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Mon Mar 12 20:00:39 2012 +0100

Merge tag 'upstream/1.9.2'

Upstream version 1.9.2


-- 
eclipse-mercurialeclipse packaging

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


[SCM] eclipse-mercurialeclipse packaging branch, master, updated. upstream/1.9.2-10-gd082946

2012-03-12 Thread Jakub Adam
The following commit has been merged in the master branch:
commit e344a6182302988afbf767d04dee94f7ebc8a111
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Mon Mar 12 20:02:43 2012 +0100

Updated d/changelog

diff --git a/debian/changelog b/debian/changelog
index 9e5d748..aa95c50 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,5 @@
-eclipse-mercurialeclipse (1.9.1-1) UNRELEASED; urgency=low
-
-  * New upstream release.
-
- -- Jakub Adam jakub.a...@ktknet.cz  Tue, 13 Dec 2011 01:00:43 +0100
-
-eclipse-mercurialeclipse (1.9.0-1) UNRELEASED; urgency=low
+eclipse-mercurialeclipse (1.9.2-1) UNRELEASED; urgency=low
 
   * Initial release. (Closes: #649123)
 
- -- Jakub Adam jakub.a...@ktknet.cz  Sat, 15 Oct 2011 12:46:33 +0200
+ -- Jakub Adam jakub.a...@ktknet.cz  Mon, 12 Mar 2012 20:02:02 +0100

-- 
eclipse-mercurialeclipse packaging

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


[SCM] eclipse-mercurialeclipse packaging branch, master, updated. upstream/1.9.2-10-gd082946

2012-03-12 Thread Jakub Adam
The following commit has been merged in the master branch:
commit d082946a00d0dbe4cad514c1554b8dfacd34431f
Author: Jakub Adam jakub.a...@ktknet.cz
Date:   Mon Mar 12 20:03:45 2012 +0100

Bump Standards-Version to 3.9.3

diff --git a/debian/control b/debian/control
index 1df48f6..87ebb27 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,7 @@ Build-Depends: debhelper (= 8~),
javahelper (= 0.32~),
unzip,
zip
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Vcs-Git: git://git.debian.org/git/pkg-java/eclipse-mercurialeclipse.git
 Vcs-Browser: http://git.debian.org/?p=pkg-java/eclipse-mercurialeclipse.git
 Homepage: http://www.javaforge.com/project/HGE

-- 
eclipse-mercurialeclipse packaging

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


[SCM] eclipse-mercurialeclipse packaging annotated tag, upstream/1.9.2, created. upstream/1.9.2

2012-03-12 Thread Jakub Adam
The annotated tag, upstream/1.9.2 has been created
at  009dd3ba20303d2a995aea924f85c12480b60225 (tag)
   tagging  914af3b4d64264e9d797ec02c10579d302388234 (commit)
  replaces  upstream/1.9.1
 tagged by  Jakub Adam
on  Mon Mar 12 20:00:39 2012 +0100

- Shortlog 
Upstream version 1.9.2

Jakub Adam (1):
  Imported Upstream version 1.9.2

---

-- 
eclipse-mercurialeclipse packaging

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


[pkg-java] r15853 - in trunk/gluegen2/debian: . patches

2012-03-12 Thread Sylvestre Ledru
Author: sylvestre
Date: 2012-03-12 19:22:50 + (Mon, 12 Mar 2012)
New Revision: 15853

Added:
   trunk/gluegen2/debian/patches/s390x.diff
Modified:
   trunk/gluegen2/debian/changelog
   trunk/gluegen2/debian/patches/series
Log:
Fix the build issue under s390x

Modified: trunk/gluegen2/debian/changelog
===
--- trunk/gluegen2/debian/changelog 2012-03-12 19:20:50 UTC (rev 15852)
+++ trunk/gluegen2/debian/changelog 2012-03-12 19:22:50 UTC (rev 15853)
@@ -1,3 +1,9 @@
+gluegen2 (2.0-rc5-1~exp2) experimental; urgency=low
+
+  * Fix the build issue under s390x
+
+ -- Sylvestre Ledru sylves...@debian.org  Mon, 26 Dec 2011 09:27:15 +0100
+
 gluegen2 (2.0-rc5-1~exp1) experimental; urgency=low
 
   * New upstream release

Added: trunk/gluegen2/debian/patches/s390x.diff
===
--- trunk/gluegen2/debian/patches/s390x.diff(rev 0)
+++ trunk/gluegen2/debian/patches/s390x.diff2012-03-12 19:22:50 UTC (rev 
15853)
@@ -0,0 +1,130 @@
+diff --git a/make/build.xml b/make/build.xml
+index bc04423..87678bc 100644
+--- a/make/build.xml
 b/make/build.xml
+@@ -343,13 +343,19 @@
+   property name=linker.cfg.id
value=linker.cfg.linux.s390 / 
+ /target
+ 
++target name=declare.linux.s390x if=isLinuxs390x
++  echo message=Linux.s390x /
++  property name=compiler.cfg.id  
value=compiler.cfg.linux / 
++  property name=linker.cfg.id
value=linker.cfg.linux.s390x / 
++/target
++
+ target name=declare.linux.sparc if=isLinuxSparc
+   echo message=Linux.sparc /
+   property name=compiler.cfg.id  
value=compiler.cfg.linux / 
+   property name=linker.cfg.id
value=linker.cfg.linux.sparc / 
+ /target
+ 
+-target name=declare.linux 
depends=declare.linux.x86,declare.linux.amd64,declare.linux.ia64,declare.linux.hppa,declare.linux.mips,declare.linux.mipsel,declare.linux.ppc,declare.linux.s390,declare.linux.sparc,declare.linux.armv7
 if=isLinux 
++target name=declare.linux 
depends=declare.linux.x86,declare.linux.amd64,declare.linux.ia64,declare.linux.hppa,declare.linux.mips,declare.linux.mipsel,declare.linux.ppc,declare.linux.s390,declare.linux.s390x,declare.linux.sparc,declare.linux.armv7
 if=isLinux 
+   property name=c.src.dir.os value=unix /
+   property name=java.includes.dir.platform   
value=${java.includes.dir}/linux /
+ /target
+diff --git a/make/gluegen-cpptasks-base.xml b/make/gluegen-cpptasks-base.xml
+index 92aab28..f0ea963 100755
+--- a/make/gluegen-cpptasks-base.xml
 b/make/gluegen-cpptasks-base.xml
+@@ -36,6 +36,7 @@
+-   isLinuxMipsel
+-   isLinuxPpc
+-   isLinuxs390
++   -   isLinuxs390x
+-   isLinuxSparc
+-   isOSX
+-   isOSXPPC
+@@ -117,6 +118,7 @@
+-   compiler.cfg.linux.mipsel
+-   compiler.cfg.linux.ppc
+-   compiler.cfg.linux.s390
++   -   compiler.cfg.linux.s390x
+-   compiler.cfg.linux.sparc
+-   compiler.cfg.solaris
+-   compiler.cfg.solaris.sparcv9
+@@ -137,6 +139,7 @@
+-   linker.cfg.linux.mipsel
+-   linker.cfg.linux.ppc
+-   linker.cfg.linux.s390
++   -   linker.cfg.linux.s390x
+-   linker.cfg.linux.sparc
+-   linker.cfg.freebsd.x86
+-   linker.cfg.freebsd.amd64
+@@ -340,6 +343,15 @@
+ condition property=s390
+   os arch=s390 /
+ /condition
++condition property=isLinuxs390x
++  and
++istrue value=${isLinux} /
++os arch=s390x /
++  /and
++/condition
++condition property=s390x
++  os arch=s390x /
++/condition
+ condition property=isLinuxSparc
+   and
+ istrue value=${isLinux} /
+@@ -478,6 +490,7 @@
+ echo message=LinuxMipsel=${isLinuxMipsel} /
+ echo message=LinuxPpc=${isLinuxPpc} /
+ echo message=Linuxs390=${isLinuxs390} /
++echo message=Linuxs390x=${isLinuxs390x} /
+ echo message=LinuxSparc=${isLinuxSparc} /
+ echo message=OS X=${isOSX} /
+ echo message=OS X PPC=${use.macosppc} /
+@@ -552,6 +565,10 @@
+ property name=os.and.arch value=linux-s390 /
+   /target
+ 
++  target name=gluegen.cpptasks.detect.os.linux.s390x 
unless=gluegen.cpptasks.detected.os.2 if=isLinuxs390x
++property name=os.and.arch value=linux-s390x /
++  /target
++
+   target name=gluegen.cpptasks.detect.os.linux.sparc 
unless=gluegen.cpptasks.detected.os.2 if=isLinuxSparc
+ property name=os.and.arch value=linux-sparc /
+   /target
+@@ -561,7 +578,7 @@
+ property name=os.and.arch value=android-armv7 /
+   /target
+ 
+-  target name=gluegen.cpptasks.detect.os.linux 

[pkg-java] r15854 - trunk/gluegen2/debian

2012-03-12 Thread Sylvestre Ledru
Author: sylvestre
Date: 2012-03-12 19:40:56 + (Mon, 12 Mar 2012)
New Revision: 15854

Modified:
   trunk/gluegen2/debian/changelog
   trunk/gluegen2/debian/control
Log:
* Upload in unstable
* Standards-Version updated to version 3.9.3

Modified: trunk/gluegen2/debian/changelog
===
--- trunk/gluegen2/debian/changelog 2012-03-12 19:22:50 UTC (rev 15853)
+++ trunk/gluegen2/debian/changelog 2012-03-12 19:40:56 UTC (rev 15854)
@@ -1,3 +1,10 @@
+gluegen2 (2.0-rc5-1) experimental; urgency=low
+
+  * Upload in unstable
+  * Standards-Version updated to version 3.9.3
+
+ -- Sylvestre Ledru sylves...@debian.org  Mon, 12 Mar 2012 20:31:43 +0100
+
 gluegen2 (2.0-rc5-1~exp2) experimental; urgency=low
 
   * Fix the build issue under s390x

Modified: trunk/gluegen2/debian/control
===
--- trunk/gluegen2/debian/control   2012-03-12 19:22:50 UTC (rev 15853)
+++ trunk/gluegen2/debian/control   2012-03-12 19:40:56 UTC (rev 15854)
@@ -5,7 +5,7 @@
 Uploaders: Sylvestre Ledru sylves...@debian.org
 Build-Depends: debhelper (= 7), cdbs, quilt, default-jdk, 
  ant, junit4, ant-contrib-cpptasks, ant-optional, libantlr-java
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Homepage: http://jogamp.org/
 Vcs-Svn: svn+ssh://svn.debian.org/svn/pkg-java/trunk/gluegen2/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-java/trunk/gluegen2/


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


Processing of gluegen2_2.0-rc5-1_amd64.changes

2012-03-12 Thread Debian FTP Masters
gluegen2_2.0-rc5-1_amd64.changes uploaded successfully to localhost
along with the files:
  gluegen2_2.0-rc5-1.dsc
  gluegen2_2.0-rc5-1.debian.tar.gz
  libgluegen2-rt-java_2.0-rc5-1_all.deb
  libgluegen2-build-java_2.0-rc5-1_all.deb
  libgluegen2-doc_2.0-rc5-1_all.deb
  libgluegen2-jni_2.0-rc5-1_amd64.deb

Greetings,

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

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


gluegen2_2.0-rc5-1_amd64.changes ACCEPTED into experimental

2012-03-12 Thread Debian FTP Masters



Accepted:
gluegen2_2.0-rc5-1.debian.tar.gz
  to main/g/gluegen2/gluegen2_2.0-rc5-1.debian.tar.gz
gluegen2_2.0-rc5-1.dsc
  to main/g/gluegen2/gluegen2_2.0-rc5-1.dsc
libgluegen2-build-java_2.0-rc5-1_all.deb
  to main/g/gluegen2/libgluegen2-build-java_2.0-rc5-1_all.deb
libgluegen2-doc_2.0-rc5-1_all.deb
  to main/g/gluegen2/libgluegen2-doc_2.0-rc5-1_all.deb
libgluegen2-jni_2.0-rc5-1_amd64.deb
  to main/g/gluegen2/libgluegen2-jni_2.0-rc5-1_amd64.deb
libgluegen2-rt-java_2.0-rc5-1_all.deb
  to main/g/gluegen2/libgluegen2-rt-java_2.0-rc5-1_all.deb


Changes:
gluegen2 (2.0-rc5-1) experimental; urgency=low
 .
  * Upload in unstable
  * Standards-Version updated to version 3.9.3


Override entries for your package:
gluegen2_2.0-rc5-1.dsc - source java
libgluegen2-build-java_2.0-rc5-1_all.deb - optional java
libgluegen2-doc_2.0-rc5-1_all.deb - optional doc
libgluegen2-jni_2.0-rc5-1_amd64.deb - optional java
libgluegen2-rt-java_2.0-rc5-1_all.deb - optional java

Announcing to debian-experimental-chan...@lists.debian.org
Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of velocity_1.7-3_source.changes

2012-03-12 Thread Debian FTP Masters
velocity_1.7-3_source.changes uploaded successfully to localhost
along with the files:
  velocity_1.7-3.dsc
  velocity_1.7-3.debian.tar.gz

Greetings,

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

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r15855 - in trunk/batik/debian: . patches

2012-03-12 Thread Vincent Fourmond
Author: fourmond
Date: 2012-03-12 19:57:14 + (Mon, 12 Mar 2012)
New Revision: 15855

Added:
   trunk/batik/debian/patches/remove-js.patch
Modified:
   trunk/batik/debian/changelog
   trunk/batik/debian/control
   trunk/batik/debian/copyright
   trunk/batik/debian/new-upstream
   trunk/batik/debian/patches/series
   trunk/batik/debian/rules
   trunk/batik/debian/watch
Log:
[batik] remove binary jars in the source package + various cleanups

Modified: trunk/batik/debian/changelog
===
--- trunk/batik/debian/changelog2012-03-12 19:40:56 UTC (rev 15854)
+++ trunk/batik/debian/changelog2012-03-12 19:57:14 UTC (rev 15855)
@@ -1,3 +1,14 @@
+batik (1.7+dfsg-1) unstable; urgency=low
+
+  * Provide a repackaged tarball stripping all binary jars (closes: #657244)
+- updated debian/new-upstream as a consequence 
+  * Disable the installation of batik-js.jar, that wasn't built from sources 
+(it was a subset of rhino's js.jar)
+  * Conforms to standards 3.9.3
+  * Modernize a bit debian/copyright
+
+ -- Vincent Fourmond fourm...@debian.org  Mon, 12 Mar 2012 20:53:43 +0100
+
 batik (1.7-8) unstable; urgency=low
 
   * Fix FTBS with recent openjdk (closes: #643508)

Modified: trunk/batik/debian/control
===
--- trunk/batik/debian/control  2012-03-12 19:40:56 UTC (rev 15854)
+++ trunk/batik/debian/control  2012-03-12 19:57:14 UTC (rev 15855)
@@ -4,7 +4,7 @@
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Wolfgang Baer wb...@gmx.de, Michael Koch konque...@gmx.de, 
  Vincent Fourmond fourm...@debian.org, Onkar Shinde onkarshi...@ubuntu.com
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Build-Depends: debhelper (= 5.0), cdbs
 Build-Depends-Indep: openjdk-6-jdk | sun-java5-jdk | sun-java6-jdk, ant, 
  libbsf-java, libxalan2-java, rhino, libavalon-framework-java (= 4.2.0), 

Modified: trunk/batik/debian/copyright
===
--- trunk/batik/debian/copyright2012-03-12 19:40:56 UTC (rev 15854)
+++ trunk/batik/debian/copyright2012-03-12 19:57:14 UTC (rev 15855)
@@ -1,9 +1,10 @@
-Format-Specification:
-http://wiki.debian.org/Proposals/CopyrightFormat?action=recallrev=196
-Upstream-Source: http://xml.apache.org/batik
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: batik
-Upstream-Maintainer: Apache Software Foundation
-
+Upstream-Contact: Apache Software Foundation
+Source: http://xml.apache.org/batik
+ The source zip file was repackaged to remove pre-compiled binary JAR files,
+ using the script found in debian/new-upstream in debian sources.
+ .
  This package was debianized by Jeff Bailey jbai...@debian.org on
  Tue, 11 Jun 2002 10:52:34 -0400.
 
@@ -12,21 +13,22 @@
 Copyright: Apache Foundation
 License: Apache-2.0
 
+Files: debian/*
+Copyright: 2002-2009 Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
+License: Apache-2.0
+
+License: Apache-2.0
  Licensed under the Apache License, Version 2.0 (the License);
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
-
+ .
http://www.apache.org/licenses/LICENSE-2.0
-
+ .
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an AS IS BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-
+ .
  The full text of the Apache License version 2.0 can be found at
  /usr/share/common-licenses/Apache-2.0 on debian systems.
-
-Files: debian/*
-Copyright: 2002-2009 Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-License: Apache-2.0

Modified: trunk/batik/debian/new-upstream
===
--- trunk/batik/debian/new-upstream 2012-03-12 19:40:56 UTC (rev 15854)
+++ trunk/batik/debian/new-upstream 2012-03-12 19:57:14 UTC (rev 15855)
@@ -1,7 +1,7 @@
 #!/bin/sh
 #
-# new-upstream: copyright 2008 by Vincent Fourmond.
-# Repackage a zip into a .tar.gz archive
+# new-upstream: copyright 2012 by Vincent Fourmond.
+# See debian/copyright file for details.
 #
 # Called by uscan; from uscan(1):
 #
@@ -15,18 +15,25 @@
 #
 
 version=$2
-filename=$3
+filename=`readlink -f $3`
 
 dir=`mktemp -d`
 
-# We repackage the upstream source zip file:
-unzip $filename -d $dir
-origname=batik_$version.orig.tar.gz
+curdir=`pwd`
 
-# We repackage excluding the lib/ subdir
+origname=batik_$version+dfsg.orig.tar.xz
+
+echo Repackaging batik version $version from $filename
+
+# Abort on errors:
+set -e
+
+# We repackage the upstream source file, skipping binary JAR files.
 cd $dir
-tar cvz \
--f $origname bat*
+unzip $filename
+cd $dir/batik*

Processing of batik_1.7+dfsg-1_amd64.changes

2012-03-12 Thread Debian FTP Masters
batik_1.7+dfsg-1_amd64.changes uploaded successfully to localhost
along with the files:
  batik_1.7+dfsg-1.dsc
  batik_1.7+dfsg.orig.tar.xz
  batik_1.7+dfsg-1.debian.tar.gz
  libbatik-java_1.7+dfsg-1_all.deb

Greetings,

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

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of bouncycastle_1.46+dfsg-3_source.changes

2012-03-12 Thread Debian FTP Masters
bouncycastle_1.46+dfsg-3_source.changes uploaded successfully to localhost
along with the files:
  bouncycastle_1.46+dfsg-3.dsc
  bouncycastle_1.46+dfsg-3.debian.tar.gz

Greetings,

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

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#661632: javahelper: jh_depends determines incorrect class version on sparc

2012-03-12 Thread Niels Thykier
On 2012-03-12 19:11, Kai Ruschenburg wrote:
 Hi,
 
 On Mon, 12 Mar 2012 09:26:06 +0100, Niels Thykier wrote:
 On 2012-02-28 19:08, Kai Ruschenburg wrote:
 [...]
 Changing line 37 from
 new=`hd -s 7 -n 1 -d $i | sed -n '2s/.*\([^ ][^ ]\) *$/\1/p'`
 to
 new=`hexdump -s 6 -n 2 -e '/1 %u ' -e '/2  r 256 * + p' $i | dc`
 should fix this.


 To be honest, I do not see why the old code should fail.  The
 specification says that bytes 6 and 7 are read as an unsigned short in
 big-endian.
   Sure, our code fails if the class version suddenly jumps above 255
 (because we only read the last byte).  However, we are at 51 with Java7
 so I do not see that coming anytime soon.
 
 Right, as long as the class version fits into one byte, reading byte 7 is
 sufficient. But this is not the problem. The problem is hexdump's -d
 option, which (according to man hd) produces a zero-filled *two-byte*
 decimal display.
 

Right, I thought it only produced a single byte output.  Assuming I got
my hd-foo right, I believe:

  $ hd -n 1 -s 7 -e '/1 %02d' classfile

would also produce the right result.  If you can confirm this, I would
like to use that instead (saves dependency for dc and it even simplier
than the current code).

 So even if you do not read byte 6 (which for now is zero anyway), the
 output of hd -s 7 -n 1 -d is byte 7 filled with zeros to make it
 two-byte wide. This two-byte representation is differing on sparc
 compared to i386.
 

Good old endian issues, I presume.

 [...]
 
 As you can see, on sparc the decimal representation of 0x3000 is printed,
 whereas on i386 it is the decimal representation of 0x0030.
 
 Please excuse that this was not clear in my initial report.
 

That is quite all right.  I had long forgotten hd did not output a
single byte.  :)

 [...]

 ~Niels
 
 Best regards
 
 Kai

~Niels




__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[pkg-java] r15856 - in tags/batik: . 1.7+dfsg-1/debian 1.7+dfsg-1/debian/patches

2012-03-12 Thread Vincent Fourmond
Author: fourmond
Date: 2012-03-12 20:03:50 + (Mon, 12 Mar 2012)
New Revision: 15856

Added:
   tags/batik/1.7+dfsg-1/
   tags/batik/1.7+dfsg-1/debian/changelog
   tags/batik/1.7+dfsg-1/debian/control
   tags/batik/1.7+dfsg-1/debian/copyright
   tags/batik/1.7+dfsg-1/debian/new-upstream
   tags/batik/1.7+dfsg-1/debian/patches/remove-js.patch
   tags/batik/1.7+dfsg-1/debian/patches/series
   tags/batik/1.7+dfsg-1/debian/rules
   tags/batik/1.7+dfsg-1/debian/watch
Removed:
   tags/batik/1.7+dfsg-1/debian/changelog
   tags/batik/1.7+dfsg-1/debian/control
   tags/batik/1.7+dfsg-1/debian/copyright
   tags/batik/1.7+dfsg-1/debian/new-upstream
   tags/batik/1.7+dfsg-1/debian/patches/series
   tags/batik/1.7+dfsg-1/debian/rules
   tags/batik/1.7+dfsg-1/debian/watch
Log:
[svn-buildpackage] Tagging batik 1.7+dfsg-1

Deleted: tags/batik/1.7+dfsg-1/debian/changelog
===
--- trunk/batik/debian/changelog2012-01-24 23:09:55 UTC (rev 15740)
+++ tags/batik/1.7+dfsg-1/debian/changelog  2012-03-12 20:03:50 UTC (rev 
15856)
@@ -1,246 +0,0 @@
-batik (1.7-8) unstable; urgency=low
-
-  * Fix FTBS with recent openjdk (closes: #643508)
-  * Bump to newer standards version, no changes required
-
- -- Vincent Fourmond fourm...@debian.org  Thu, 29 Sep 2011 21:35:31 +0200
-
-batik (1.7-7) unstable; urgency=low
-
-  * Re-enable all patches that had mistakenly been disabled by switching to
-source format 3.0 (quilt) (closes: #604871)
-  * Already conforms to standards 3.9.1
-
- -- Vincent Fourmond fourm...@debian.org  Thu, 25 Nov 2010 16:24:33 +0100
-
-batik (1.7-6) unstable; urgency=low
-
-  [ Vincent Fourmond ]
-  * Really fix the dependency on java runtime to only pull headless
-runtimes
-
-  [ Gabriele Giacone ]
-  * Added Maven support
-  * Standards-Version to 3.8.4
-  * Source format 3.0 (quilt)
-
- -- Gabriele Giacone 1o5g4...@gmail.com  Sun, 21 Feb 2010 19:02:10 +0100
-
-batik (1.7-5) unstable; urgency=low
-
-  * Dropped the dependency on openjdk-6-jre, in profit for
-openjdk-6-jre-headless, so we won't pull the whole Gtk libraries just
-for using fop (closes: #551545).
-  * Already conforms to standards 3.8.3
-  * Removing Arnaud Vandyck from Uploaders as he did retire. Many thanks
-for your work on batik !
-
- -- Vincent Fourmond fourm...@debian.org  Mon, 25 Jan 2010 21:58:59 +0100
-
-batik (1.7-4) unstable; urgency=low
-
-  * Porting fixes from Ubuntu (1.7.dfsg-0ubuntu3) by Onkar Shinde
-onkarshi...@ubuntu.com:
-- add xml-apis-ext and js to classpath for debian/wrappers/squiggle
-- promote rhino to a Recommends, as squiggle depends on it
-- debian/patches/06_fix_paths_in_policy_files.patch to fix the paths
-  of the security policy files
-  * This finally makes squiggle work for Debian ! (closes: #499852)
-Many thanks again to Onkar...
-
- -- Vincent Fourmond fourm...@debian.org  Mon, 20 Apr 2009 21:22:26 +0200
-
-batik (1.7-3) unstable; urgency=low
-
-  [ Onkar Shinde ]
-  * debian/rules
-- Use DEB_UPSTREAM_VERSION at all places.
-- Add symlinks batik-version.jar and batik.jar pointing to
-  batik-all-version.jar. (Closes: #522340)
-  * debian/control
-- Add myself to 'Uploaders'.
-
-  [ Vincent Fourmond ]
-  * Changed section to java, what currently is in the archive
-  * Already conforms to standard 3.8.1
-  * Bumped debhelper compatibility level to 5, and bumped Build-depends
-accordingly
-
- -- Vincent Fourmond fourm...@debian.org  Mon, 13 Apr 2009 20:42:00 +0200
-
-batik (1.7-2) unstable; urgency=low
-
-  * Adding xmlgraphics-commons-1.2 and xml-apis-ext to the jars for
-the build + corresponding build-deps
-  * Added Vcs-* fields
-
-  [ Sylvestre Ledru ]
-  * Build class version 49 (instead of 50)
-
-  [ Vincent Fourmond ]
-  * Minor updates to the debian/copyright file 
-  * It seems time has come for an upload to unstable...
-  * Adding ${misc:Depends} for potential debhelper-induced dependencies
-  * Tweaking rasterizer.1 to avoid unbreakable lines
-
- -- Vincent Fourmond fourm...@debian.org  Wed, 18 Feb 2009 22:58:36 +0100
-
-batik (1.7-1) experimental; urgency=low
-
-  * New upstream release (Closes: #417888, #490556)
-  * Switched to using java-wrappers for executables; dropping the 
-/usr/lib/java/wrappers.sh script
-  * Switched debian/copyright to a machine-readable format
-  * Added ANT_OPTS to fix the compiler out of memory problem
-  * Removing 02_fix_jar_target, no longer applicable
-  * Removing 01_build_xml, as the created target (pdf-transcoder) cannot
-be built anymore
-  * Fixed JAVA_HOME_DIRS so it can build with Sun's java 5
-  * Strip the full text of the Apache-2.0 license, as it now is
-in the common licenses
-  * Switch to openjdk-6-jdk for building (closes: #397562)
-  * Several tweaks in debian/rules to build and install all the jars,
-based on a patch by Sylvestre Ledru sylvestre.le...@inria.fr
-  * Now depends also on 

Bug#661632: javahelper: jh_depends determines incorrect class version on sparc

2012-03-12 Thread Niels Thykier
On 2012-03-12 21:31, Niels Thykier wrote:
 hd -n 1 -s 7 -e '/1 %02d'
Actually, make that hexdump -n 1 -s 7 -e '/1 %02d'.  Apparently, hd
and hexdump are not as interchangable as I thought.

~Niels



__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


batik_1.7+dfsg-1_amd64.changes ACCEPTED into unstable

2012-03-12 Thread Debian FTP Masters



Accepted:
batik_1.7+dfsg-1.debian.tar.gz
  to main/b/batik/batik_1.7+dfsg-1.debian.tar.gz
batik_1.7+dfsg-1.dsc
  to main/b/batik/batik_1.7+dfsg-1.dsc
batik_1.7+dfsg.orig.tar.xz
  to main/b/batik/batik_1.7+dfsg.orig.tar.xz
libbatik-java_1.7+dfsg-1_all.deb
  to main/b/batik/libbatik-java_1.7+dfsg-1_all.deb


Changes:
batik (1.7+dfsg-1) unstable; urgency=low
 .
  * Provide a repackaged tarball stripping all binary jars (closes: #657244)
- updated debian/new-upstream as a consequence
  * Disable the installation of batik-js.jar, that wasn't built from sources
(it was a subset of rhino's js.jar)
  * Conforms to standards 3.9.3
  * Modernize a bit debian/copyright


Override entries for your package:
batik_1.7+dfsg-1.dsc - source libs
libbatik-java_1.7+dfsg-1_all.deb - optional java

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


Thank you for your contribution to Debian.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


bouncycastle_1.46+dfsg-3_source.changes REJECTED

2012-03-12 Thread Debian FTP Masters



Reject Reasons:
source only uploads are not supported.



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#657244: marked as done (batik bundles a non free colour profile in pdf-transcoder.jar)

2012-03-12 Thread Debian Bug Tracking System
Your message dated Mon, 12 Mar 2012 20:47:38 +
with message-id e1s7c9a-00018o...@franck.debian.org
and subject line Bug#657244: fixed in batik 1.7+dfsg-1
has caused the Debian Bug report #657244,
regarding batik bundles a non free colour profile in pdf-transcoder.jar
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

Package: batik
Severity: serious
Justification: may not be distributed without fee if modified
User: gnewsense-...@nongnu.org
Usertags: gnewsense libreplanet

Hi,
From [1], it seems the pdf-transcoder.jar in batik contains a colour  
profile with a crazy licence.
 ...permission to use, copy and distribute this file for any purpose is
 hereby granted without fee, provided that the file is not changed
 including the HP copyright notice tag, ... 

The file will need to be removed from the jar, or the jar (and pdf
support) removed from batik :/

[1] https://savannah.nongnu.org/bugs/?34579
thanks,
kk


-- System Information:
Debian Release: 6.0.3
  APT prefers stable
  APT policy: (990, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=en_AU.utf8, LC_CTYPE=en_AU.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- 
Karl Goetz, (Kamping_Kaiser / VK7FOSS)
http://www.kgoetz.id.au
No, I won't join your social networking group


signature.asc
Description: PGP signature
---End Message---
---BeginMessage---
Source: batik
Source-Version: 1.7+dfsg-1

We believe that the bug you reported is fixed in the latest version of
batik, which is due to be installed in the Debian FTP archive:

batik_1.7+dfsg-1.debian.tar.gz
  to main/b/batik/batik_1.7+dfsg-1.debian.tar.gz
batik_1.7+dfsg-1.dsc
  to main/b/batik/batik_1.7+dfsg-1.dsc
batik_1.7+dfsg.orig.tar.xz
  to main/b/batik/batik_1.7+dfsg.orig.tar.xz
libbatik-java_1.7+dfsg-1_all.deb
  to main/b/batik/libbatik-java_1.7+dfsg-1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 657...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Vincent Fourmond fourm...@debian.org (supplier of updated batik package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 12 Mar 2012 20:53:43 +0100
Source: batik
Binary: libbatik-java
Architecture: source all
Version: 1.7+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Vincent Fourmond fourm...@debian.org
Description: 
 libbatik-java - xml.apache.org SVG Library
Closes: 657244
Changes: 
 batik (1.7+dfsg-1) unstable; urgency=low
 .
   * Provide a repackaged tarball stripping all binary jars (closes: #657244)
 - updated debian/new-upstream as a consequence
   * Disable the installation of batik-js.jar, that wasn't built from sources
 (it was a subset of rhino's js.jar)
   * Conforms to standards 3.9.3
   * Modernize a bit debian/copyright
Checksums-Sha1: 
 a037a23a847e99d867c3143ec9679713ac7e2a4b 1629 batik_1.7+dfsg-1.dsc
 b9e8d2bdedcb1ddf553c9b99115165264cf8b4b8 4290288 batik_1.7+dfsg.orig.tar.xz
 e18997c3d32339dd8547af4bad05f893d7001608 11745 batik_1.7+dfsg-1.debian.tar.gz
 7ae27337d3524ae591c33e355debfa6182f4e5a2 8699110 
libbatik-java_1.7+dfsg-1_all.deb
Checksums-Sha256: 
 9148f1a55c2873382844877098ff2868ddb53b60d1368b1da94871235dffae99 1629 
batik_1.7+dfsg-1.dsc
 2003bc124a01cedb1ebebda32c1412a0a8292573348d751f8b06fa24dcf03124 4290288 
batik_1.7+dfsg.orig.tar.xz
 4ac102a42688b8927f706d40f25ebb3cbad2e437981ad6a8175dcbbcab2a0d37 11745 
batik_1.7+dfsg-1.debian.tar.gz
 68bb0699dd5586b329c3c1b4abffbea0d5253ba798baad4fd9845135ff1b7c17 8699110 
libbatik-java_1.7+dfsg-1_all.deb
Files: 
 ed709233f4db7bb46ed6906851a138cf 1629 java optional batik_1.7+dfsg-1.dsc
 dfd317fa0c7bc9782273c05d3045b90c 4290288 java optional 
batik_1.7+dfsg.orig.tar.xz
 6087ec01ceb7173459d824a51e315cee 11745 java optional 
batik_1.7+dfsg-1.debian.tar.gz
 fe7d656a171d8d1f79b13144320157a1 8699110 java optional 
libbatik-java_1.7+dfsg-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)


velocity_1.7-3_source.changes REJECTED

2012-03-12 Thread Debian FTP Masters



Reject Reasons:
source only uploads are not supported.



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Processing of libjogl2-java_2.0-rc5-1_amd64.changes

2012-03-12 Thread Debian FTP Masters
libjogl2-java_2.0-rc5-1_amd64.changes uploaded successfully to localhost
along with the files:
  libjogl2-java_2.0-rc5-1.dsc
  libjogl2-java_2.0-rc5-1.debian.tar.gz
  libjogl2-java_2.0-rc5-1_all.deb
  libjogl2-java-doc_2.0-rc5-1_all.deb
  libjogl2-toolkits_2.0-rc5-1_all.deb
  libjogl2-jni_2.0-rc5-1_amd64.deb

Greetings,

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

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.


[SCM] UNNAMED PROJECT branch, master, updated. 0.40-10-g98af8fe

2012-03-12 Thread Niels Thykier
The following commit has been merged in the master branch:
commit 98af8fee4631ab6af78be13c8808894cb660770c
Author: Niels Thykier ni...@thykier.net
Date:   Mon Mar 12 22:17:17 2012 +0100

Bump dependency on libarchive-zip-perl

Signed-off-by: Niels Thykier ni...@thykier.net

diff --git a/debian/changelog b/debian/changelog
index ec198d2..3d85271 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -17,6 +17,8 @@ javatools (0.41) UNRELEASED; urgency=low
 options was silently ignored.
   * Remove support for using the sun (and sun6) JVM with
 jh_depends, as Debian is no longer ships the Sun/Oracle Java.
+  * Bump libarchive-zip-perl depends as 1.30.5 was still affected
+by #654899.
 
  -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 16:22:58 +0100
 
diff --git a/debian/control b/debian/control
index 8f82137..c5fa9e1 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
 Uploaders: Matthew Johnson mj...@debian.org, Niels Thykier 
ni...@thykier.net
 Build-Depends: debhelper (= 7.0.50~)
-Build-Depends-Indep: default-jdk, libarchive-zip-perl (= 1.30-5~), markdown, 
perl
+Build-Depends-Indep: default-jdk, libarchive-zip-perl (= 1.30-6~), markdown, 
perl
 Standards-Version: 3.9.2
 Section: java
 Vcs-Git: git://git.debian.org/git/pkg-java/javatools.git
@@ -24,7 +24,7 @@ Package: javahelper
 Architecture: all
 Depends: ${misc:Depends}, debhelper, devscripts,
  bsdmainutils, dpkg-dev, dctrl-tools,
- libarchive-zip-perl (= 1.30-5~)
+ libarchive-zip-perl (= 1.30-6~)
 Suggests: cvs,
   gawk,
   tofrodos,

-- 
UNNAMED PROJECT

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


[SCM] UNNAMED PROJECT branch, master, updated. 0.40-11-g8797a4e

2012-03-12 Thread Niels Thykier
The following commit has been merged in the master branch:
commit 8797a4e54d5d25d9ae69d7ab1ecfa15030aa63ab
Author: Niels Thykier ni...@thykier.net
Date:   Mon Mar 12 22:22:26 2012 +0100

jh_depends: Use java5-runtime as minimum alt dependency

Signed-off-by: Niels Thykier ni...@thykier.net

diff --git a/debian/changelog b/debian/changelog
index 3d85271..1c657c1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -19,6 +19,9 @@ javatools (0.41) UNRELEASED; urgency=low
 jh_depends, as Debian is no longer ships the Sun/Oracle Java.
   * Bump libarchive-zip-perl depends as 1.30.5 was still affected
 by #654899.
+  * jh_depends no longer emits dependencies with java-runtime or
+java2-runtime.  The minimum generated dependency is now
+java5-runtime.
 
  -- Sylvestre Ledru sylves...@debian.org  Fri, 24 Feb 2012 16:22:58 +0100
 
diff --git a/jh_depends b/jh_depends
index 9b86991..ed8ff36 100755
--- a/jh_depends
+++ b/jh_depends
@@ -46,11 +46,7 @@ getclassversion()
 # getalternatedepends version
 getalternatedepends()
 {
-   if (( $1  48 )); then
-   echo | java-runtime$2 | java2-runtime$2 | java5-runtime$2 | 
java6-runtime$2
-   elif [ $1 == 48 ]; then
-   echo | java2-runtime$2 | java5-runtime$2 | java6-runtime$2
-   elif [ $1 == 49 ]; then
+   if (( $1  50 )); then
echo | java5-runtime$2 | java6-runtime$2
elif [ $1 == 50 ]; then
echo | java6-runtime$2

-- 
UNNAMED PROJECT

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