[pkg-java] r11054 - trunk/libcommons-fileupload-java/debian

2009-11-12 Thread Thierry Carrez
Author: ttx-guest
Date: 2009-11-12 10:35:03 + (Thu, 12 Nov 2009)
New Revision: 11054

Modified:
   trunk/libcommons-fileupload-java/debian/ant.properties
   trunk/libcommons-fileupload-java/debian/changelog
   trunk/libcommons-fileupload-java/debian/control
Log:
* Minimal dependency on default-jre-headless | java2-runtime-headless
* debian/ant.properties: Force Java2 code to match dependency

Modified: trunk/libcommons-fileupload-java/debian/ant.properties
===
--- trunk/libcommons-fileupload-java/debian/ant.properties  2009-11-12 
04:57:38 UTC (rev 11053)
+++ trunk/libcommons-fileupload-java/debian/ant.properties  2009-11-12 
10:35:03 UTC (rev 11054)
@@ -1 +1,3 @@
 build.sysclasspath=only
+ant.build.javac.target=1.4
+ant.build.javac.source=1.4

Modified: trunk/libcommons-fileupload-java/debian/changelog
===
--- trunk/libcommons-fileupload-java/debian/changelog   2009-11-12 04:57:38 UTC 
(rev 11053)
+++ trunk/libcommons-fileupload-java/debian/changelog   2009-11-12 10:35:03 UTC 
(rev 11054)
@@ -1,3 +1,10 @@
+libcommons-fileupload-java (1.2.1-4) UNRELEASED; urgency=low
+
+  * Minimal dependency on default-jre-headless | java2-runtime-headless
+  * debian/ant.properties: Force Java2 code to match dependency
+
+ -- Thierry Carrez thierry.car...@ubuntu.com  Thu, 12 Nov 2009 11:21:01 +0100
+
 libcommons-fileupload-java (1.2.1-3) unstable; urgency=low
 
   * (Build-)Depends on default-jdk.

Modified: trunk/libcommons-fileupload-java/debian/control
===
--- trunk/libcommons-fileupload-java/debian/control 2009-11-12 04:57:38 UTC 
(rev 11053)
+++ trunk/libcommons-fileupload-java/debian/control 2009-11-12 10:35:03 UTC 
(rev 11054)
@@ -12,7 +12,7 @@
 
 Package: libcommons-fileupload-java
 Architecture: all
-Depends: default-jdk | java1-runtime | java2-runtime, 
libcommons-beanutils-java, libservlet2.4-java, libcommons-io-java, 
${misc:Depends}
+Depends: default-jre-headless | java2-runtime-headless, 
libcommons-beanutils-java, libservlet2.4-java, libcommons-io-java, 
${misc:Depends}
 Description: File upload capability to your servlets and web applications
  The Commons FileUpload package makes it easy to add robust, high-performance,
  file upload capability to your servlets and web applications.


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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. 972c2d6e36ec277036833c83e1d6d415712b49a9

2009-11-12 Thread Niels Thykier
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 eclipse - Powerful IDE written in java - Debian package..

The branch, master has been updated
   via  972c2d6e36ec277036833c83e1d6d415712b49a9 (commit)
  from  b1acc83825a61c1451b1ca26d1078801eb609259 (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 972c2d6e36ec277036833c83e1d6d415712b49a9
Author: Niels Thykier ni...@thykier.net
Date:   Thu Nov 12 11:57:48 2009 +0100

Rewrote link script to handle features/ links.

---

Summary of changes:
 debian/extra/imagemv.pl |   56 +++
 debian/extra/imagemv.sh |   14 ---
 debian/rules|2 +-
 3 files changed, 57 insertions(+), 15 deletions(-)

diff --git a/debian/extra/imagemv.pl b/debian/extra/imagemv.pl
new file mode 100755
index 000..6e3f217
--- /dev/null
+++ b/debian/extra/imagemv.pl
@@ -0,0 +1,56 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+my $dryrun = defined($ARGV[0])  $ARGV[0] eq '--dry-run';
+
+while( my $image = STDIN ){
+my $des;
+my $desdir;
+my $relpath;
+my $linktarget;
+chomp($image);
+if( -l $image ){
+   # already a link - not touching
+   next;
+}
+if( ! -e $image ){
+   choke(Cannot \mv + ln\ $image: it does not exists.);
+}
+# Remove the leading ./ (from find output).
+$image =~ s...@^./@@o;
+$des = $image;
+$des =~ s...@lib/@share/@o;
+if($des =~ m...@eclipse/features/@o){
+   # They have some names that changes based on arch/build/something.
+   # So we will just remove that so the link is always correct.
+   # e.g. 
+   #   org.eclipse.help_1.1.1.R35x_v20090811-7e7eFAnFEx2XZoYwvOe8duD
+   # becomes
+   #   org.eclipse.help_1.1.1.R35x_v20090811
+   $des =~ s@(_)v\d{8}-[^/]...@$1@o;
+}
+$desdir = $des;
+# Remove the last part (the name of the file)
+$desdir =~ s...@[^/]++$@@o;
+$relpath = $desdir;
+# Replace path parts with ..
+$relpath =~ s...@[^/]...@..@go;
+# concat with the original target and we have
+# the relative link - There is no / in between
+# because $relpath already contains it.
+$linktarget = $relpath$des;
+if($dryrun){
+   print mkdir -p \$desdir\  mv -f \$image\ \$des\  ln -s 
\$linktarget\ \$image\\n;
+} else {
+   system(mkdir -p \$desdir\  mv -f \$image\ \$des\  ln -s 
\$linktarget\ \$image\) == 0
+   or choke(Could not complete link of $image.);
+}
+}
+
+sub choke{
+my $msg = shift;
+print STDERR $msg\n;
+exit(1);
+}
diff --git a/debian/extra/imagemv.sh b/debian/extra/imagemv.sh
deleted file mode 100755
index a06a29a..000
--- a/debian/extra/imagemv.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-set -e
-
-# You must be in the destDir/prefix directory!
-
-LINK_NAME=$(echo $1 | sed s...@^\./@@)
-
-IMAGE_NAME=$(echo ${LINK_NAME} | sed s...@lib/@share/@g)
-IMAGE_DIR=$(dirname ${IMAGE_NAME})
-LINK_DEST=$(dirname ${LINK_NAME} | sed s|[^/]*|..|g)/${IMAGE_NAME}
-
-mkdir -p ${IMAGE_DIR}
-mv ${LINK_NAME} ${IMAGE_NAME}
-ln -sf ${LINK_DEST} ${LINK_NAME}
diff --git a/debian/rules b/debian/rules
index bfe7d87..c427be1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -103,7 +103,7 @@ debian-install-stamp:
@echo *** debian-install-stamp ***
dh_testdir
# move images from /usr/lib to /usr/share
-   cd debian/tmp/usr  find lib/ -type f \( -name '*.bmp' -o -name 
'*.gif' -o -name '*.jpg' -o -name '*.png' \) -exec sh 
../../../debian/extra/imagemv.sh '{}' \;
+   cd debian/tmp/usr  find lib/ -type f \( -name '*.bmp' -o -name 
'*.gif' -o -name '*.jpg' -o -name '*.png' \) | perl 
../../../debian/extra/imagemv.pl
rm -fr $(DEBIAN_PACK_LIBDIR)/p2/
# Generate metadata and extract the swt libraries.
cd $(DEB_DESTDIR)  java \


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. d63c27dfae0cd8be6f26a8a78e663523cf897bd2

2009-11-12 Thread Niels Thykier
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 eclipse - Powerful IDE written in java - Debian package..

The branch, master has been updated
   via  d63c27dfae0cd8be6f26a8a78e663523cf897bd2 (commit)
  from  972c2d6e36ec277036833c83e1d6d415712b49a9 (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 d63c27dfae0cd8be6f26a8a78e663523cf897bd2
Author: Niels Thykier ni...@thykier.net
Date:   Thu Nov 12 12:03:33 2009 +0100

Updated changelog + TODO.

---

Summary of changes:
 debian/TODO  |1 -
 debian/changelog |2 ++
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/debian/TODO b/debian/TODO
index cd1eb8d..f8fce21 100644
--- a/debian/TODO
+++ b/debian/TODO
@@ -1,5 +1,4 @@
 Things needed to be fixed (discussed on 2009-10-09 on IRC; sorted by 
importance):
- * Fix broken symlinks LP: #471859
  * clean up eclipse.ini and install it in /etc/ (e.g. symlinked from eclipse 
install loc) LP: #43162
  * Use system jars rather than pre-compiled ones. (e.g. luence, ant, etc.).
(EB: #280688, LP: #453036)
diff --git a/debian/changelog b/debian/changelog
index b2f7ddc..a9cabeb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -37,6 +37,8 @@ eclipse (3.5.1+repack-1) UNRELEASED; urgency=low
   * Moved org.eclipse.ant.ui to eclipse-platform. (LP: #477944)
   * Added information about how to create the orig.tar.gz.
 (Closes: #505553)
+  * Rewrote symlink script to handle folders that are renamed on different
+archs/builds. (LP: #471859)
 
  -- Benjamin Drung bdr...@ubuntu.com  Wed, 14 Oct 2009 01:42:49 +0200
 


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


[pkg-java] r11055 - trunk/libcommons-jxpath-java/debian

2009-11-12 Thread Thierry Carrez
Author: ttx-guest
Date: 2009-11-12 11:06:04 + (Thu, 12 Nov 2009)
New Revision: 11055

Modified:
   trunk/libcommons-jxpath-java/debian/changelog
   trunk/libcommons-jxpath-java/debian/control
Log:
debian/control: Minimal dependency on -headless runtimes

Modified: trunk/libcommons-jxpath-java/debian/changelog
===
--- trunk/libcommons-jxpath-java/debian/changelog   2009-11-12 10:35:03 UTC 
(rev 11054)
+++ trunk/libcommons-jxpath-java/debian/changelog   2009-11-12 11:06:04 UTC 
(rev 11055)
@@ -1,3 +1,9 @@
+libcommons-jxpath-java (1.3-3) UNRELEASED; urgency=low
+
+  * debian/control: Minimal dependency on -headless runtimes
+
+ -- Thierry Carrez thierry.car...@ubuntu.com  Thu, 12 Nov 2009 12:00:16 +0100
+
 libcommons-jxpath-java (1.3-2) unstable; urgency=low
 
   * (Build-)Depends on libservlet2.5-java instead of libservlet2.3-java.

Modified: trunk/libcommons-jxpath-java/debian/control
===
--- trunk/libcommons-jxpath-java/debian/control 2009-11-12 10:35:03 UTC (rev 
11054)
+++ trunk/libcommons-jxpath-java/debian/control 2009-11-12 11:06:04 UTC (rev 
11055)
@@ -13,7 +13,7 @@
 
 Package: libcommons-jxpath-java
 Architecture: all
-Depends: default-jre-headless | java1-runtime | java2-runtime, ${misc:Depends}
+Depends: default-jre-headless | java1-runtime-headless | 
java2-runtime-headless, ${misc:Depends}
 Suggests: libcommons-jxpath-java-doc
 Description: manipulate javabean using XPath syntax
  This library provides the java developer the ability to manipulate 


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


[pkg-java] r11056 - trunk/libhamcrest-java/debian

2009-11-12 Thread Thierry Carrez
Author: ttx-guest
Date: 2009-11-12 11:14:45 + (Thu, 12 Nov 2009)
New Revision: 11056

Modified:
   trunk/libhamcrest-java/debian/changelog
   trunk/libhamcrest-java/debian/control
Log:
Set minimal dependency to java5-runtime-headless since we build Java5 code

Modified: trunk/libhamcrest-java/debian/changelog
===
--- trunk/libhamcrest-java/debian/changelog 2009-11-12 11:06:04 UTC (rev 
11055)
+++ trunk/libhamcrest-java/debian/changelog 2009-11-12 11:14:45 UTC (rev 
11056)
@@ -1,3 +1,9 @@
+libhamcrest-java (1.1-4) UNRELEASED; urgency=low
+
+  * Set minimal dependency to java5-runtime-headless since we build Java5 code
+
+ -- Thierry Carrez thierry.car...@ubuntu.com  Thu, 12 Nov 2009 12:10:42 +0100
+
 libhamcrest-java (1.1-3) unstable; urgency=low
 
   * (Build-)Depends on default-jdk.

Modified: trunk/libhamcrest-java/debian/control
===
--- trunk/libhamcrest-java/debian/control   2009-11-12 11:06:04 UTC (rev 
11055)
+++ trunk/libhamcrest-java/debian/control   2009-11-12 11:14:45 UTC (rev 
11056)
@@ -13,7 +13,7 @@
 
 Package: libhamcrest-java
 Architecture: all
-Depends: default-jre-headless | java1-runtime | java2-runtime, ${misc:Depends}
+Depends: default-jre-headless | java5-runtime-headless, ${misc:Depends}
 Description: library of matchers for building test expressions
  Provides a library of matcher objects (also known as constraints or
  predicates) allowing 'match' rules to be defined declaratively, to be


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


libitext-java 2.1.7-1 MIGRATED to testing

2009-11-12 Thread Debian testing watch
FYI: The status of the libitext-java source package
in Debian's testing distribution has changed.

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

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


commons-beanutils 1.8.1-1 MIGRATED to testing

2009-11-12 Thread Debian testing watch
FYI: The status of the commons-beanutils source package
in Debian's testing distribution has changed.

  Previous version: 1.8.0-2
  Current version:  1.8.1-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.

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


Bug#555910: icedtea-gcjwebplugin: Replace iceape-dev build dep with xulrunner-dev

2009-11-12 Thread Mike Hommey
Package: icedtea-gcjwebplugin
Severity: important

(disclaimer: this is a semi automatic message)

Hi,

Iceape 2.0 has been uploaded to unstable, and it is deprecating iceape-dev. 
For now, the iceape-dev package still exists and depends on xulrunner-dev, 
which may provide a smooth upgrade path, and your package may build 
properly this way (i.e. a binNMU would work)

But the iceape-dev package is going to be removed from the archive before
the squeeze release, so please switch to using xulrunner-dev anyways.

Cheers,

Mike

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages icedtea-gcjwebplugin depends on:
ii  libatk1.0-0 1.28.0-1 The ATK accessibility toolkit
ii  libc6   2.10.1-6 GNU C Library: Shared libraries
ii  libcairo2   1.8.8-2  The Cairo 2D vector graphics libra
ii  libgcc1 1:4.4.2-2GCC support library
ii  libglib2.0-02.22.2-2 The GLib library of C routines
ii  libgtk2.0-0 2.18.3-1 The GTK+ graphical user interface 
ii  libnspr4-0d 4.8.2-1  NetScape Portable Runtime Library
ii  libpango1.0-0   1.26.0-1 Layout and rendering of internatio
ii  libstdc++6  4.4.2-2  The GNU Standard C++ Library v3
ii  openjdk-6-jre   6b16-1.6.1-2 OpenJDK Java runtime, using Hotspo

icedtea-gcjwebplugin recommends no packages.

icedtea-gcjwebplugin suggests no packages.



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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. 532f8796366f3b564f53e842fdc2188210f90d29

2009-11-12 Thread Benjamin Drung
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 eclipse - Powerful IDE written in java - Debian package..

The branch, master has been updated
   via  532f8796366f3b564f53e842fdc2188210f90d29 (commit)
   via  5cf9c9a4523f055d1a4e4523a959c0c583804b23 (commit)
  from  d63c27dfae0cd8be6f26a8a78e663523cf897bd2 (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 532f8796366f3b564f53e842fdc2188210f90d29
Merge: d63c27dfae0cd8be6f26a8a78e663523cf897bd2 
5cf9c9a4523f055d1a4e4523a959c0c583804b23
Author: Benjamin Drung bdr...@ubuntu.com
Date:   Thu Nov 12 17:40:25 2009 +0100

Merge branch 'upstream'

---

Summary of changes:
 ChangeLog |4 
 eclipse-build-config/ChangeLog|6 ++
 eclipse-build-config/productFiles/sdk/sdk.product |2 +-
 pdebuild/eclipse-pdebuild.sh  |2 +-
 4 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 88928ab..ae0d619 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-11-11  Alexander Kurtakov  akurt...@redhat.com
+
+   * pdebuild/eclipse-pdebuild.sh: Do not escape $orbitDepsDir.
+
 2009-11-05  Alexander Kurtakov  akurt...@redhat.com
Fix for bug #294264.
* build.xml: Use ${buildWorkspace} instead of $HOME/workspace.
diff --git a/eclipse-build-config/ChangeLog b/eclipse-build-config/ChangeLog
index ea69312..8d41260 100644
--- a/eclipse-build-config/ChangeLog
+++ b/eclipse-build-config/ChangeLog
@@ -1,3 +1,9 @@
+2009-11-11  Andrew Overholt  overh...@redhat.com
+
+   Bug #294877
+
+   * productFiles/sdk/sdk.product: Set HotSpot JIT excludes to avoid 
crashes.
+
 2009-11-03  Andrew Overholt  overh...@redhat.com
 
Bug #293952 (Matthias Klose)
diff --git a/eclipse-build-config/productFiles/sdk/sdk.product 
b/eclipse-build-config/productFiles/sdk/sdk.product
index 0228566..9cc2133 100644
--- a/eclipse-build-config/productFiles/sdk/sdk.product
+++ b/eclipse-build-config/productFiles/sdk/sdk.product
@@ -8,7 +8,7 @@
 
launcherArgs
   programArgs-showsplash org.eclipse.platform --launcher.XXMaxPermSize 
256m/programArgs
-  vmArgs-Xms40m -Xmx256m/vmArgs
+  vmArgs-Xms128m -Xmx512m 
-XX:CompileCommand=exclude${#44}org/eclipse/core/internal/dtree/DataTreeNode${#44}forwardDeltaWith
 
-XX:CompileCommand=exclude${#44}org/eclipse/jdt/internal/compiler/lookup/ParameterizedMethodBinding${#44}lt;initgt;
 
-XX:CompileCommand=exclude${#44}org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/CPPTemplates${#44}instantiateTemplate
 
-XX:CompileCommand=exclude${#44}org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPLinkage${#44}addBinding
 
-XX:CompileCommand=exclude${#44}org/python/pydev/editor/codecompletion/revisited/PythonPathHelper${#44}isValidSourceFile
 
-XX:CompileCommand=exclude${#44}org/python/pydev/ui/filetypes/FileTypesPreferencesPage${#44}getDottedValidSourceFiles/vmArgs
   vmArgsMac-Xdock:icon=../Resources/Eclipse.icns -XstartOnFirstThread 
-Dorg.eclipse.swt.internal.carbon.smallFonts/vmArgsMac
/launcherArgs
 
diff --git a/pdebuild/eclipse-pdebuild.sh b/pdebuild/eclipse-pdebuild.sh
index 79462bc..1011199 100755
--- a/pdebuild/eclipse-pdebuild.sh
+++ b/pdebuild/eclipse-pdebuild.sh
@@ -230,7 +230,7 @@ if [ $debugPlatform -eq 1 ]; then
 fi
 
 if [ x$orbitDepsDir != x ]; then
-orbitDeps=-DorbitDepsDir=\$orbitDepsDir\
+orbitDeps=-DorbitDepsDir=$orbitDepsDir
 fi
 
 if [ x$zipDeps != x ]; then


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


[SCM] eclipse - Powerful IDE written in java - Debian package. branch, upstream, updated. 5cf9c9a4523f055d1a4e4523a959c0c583804b23

2009-11-12 Thread Benjamin Drung
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 eclipse - Powerful IDE written in java - Debian package..

The branch, upstream has been updated
   via  5cf9c9a4523f055d1a4e4523a959c0c583804b23 (commit)
  from  1bb11f4387754520010656b9c0be81bf05395590 (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 -
---

Summary of changes:
 ChangeLog |4 
 eclipse-build-config/ChangeLog|6 ++
 eclipse-build-config/productFiles/sdk/sdk.product |2 +-
 pdebuild/eclipse-pdebuild.sh  |2 +-
 4 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 88928ab..ae0d619 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-11-11  Alexander Kurtakov  akurt...@redhat.com
+
+   * pdebuild/eclipse-pdebuild.sh: Do not escape $orbitDepsDir.
+
 2009-11-05  Alexander Kurtakov  akurt...@redhat.com
Fix for bug #294264.
* build.xml: Use ${buildWorkspace} instead of $HOME/workspace.
diff --git a/eclipse-build-config/ChangeLog b/eclipse-build-config/ChangeLog
index ea69312..8d41260 100644
--- a/eclipse-build-config/ChangeLog
+++ b/eclipse-build-config/ChangeLog
@@ -1,3 +1,9 @@
+2009-11-11  Andrew Overholt  overh...@redhat.com
+
+   Bug #294877
+
+   * productFiles/sdk/sdk.product: Set HotSpot JIT excludes to avoid 
crashes.
+
 2009-11-03  Andrew Overholt  overh...@redhat.com
 
Bug #293952 (Matthias Klose)
diff --git a/eclipse-build-config/productFiles/sdk/sdk.product 
b/eclipse-build-config/productFiles/sdk/sdk.product
index 0228566..9cc2133 100644
--- a/eclipse-build-config/productFiles/sdk/sdk.product
+++ b/eclipse-build-config/productFiles/sdk/sdk.product
@@ -8,7 +8,7 @@
 
launcherArgs
   programArgs-showsplash org.eclipse.platform --launcher.XXMaxPermSize 
256m/programArgs
-  vmArgs-Xms40m -Xmx256m/vmArgs
+  vmArgs-Xms128m -Xmx512m 
-XX:CompileCommand=exclude${#44}org/eclipse/core/internal/dtree/DataTreeNode${#44}forwardDeltaWith
 
-XX:CompileCommand=exclude${#44}org/eclipse/jdt/internal/compiler/lookup/ParameterizedMethodBinding${#44}lt;initgt;
 
-XX:CompileCommand=exclude${#44}org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/CPPTemplates${#44}instantiateTemplate
 
-XX:CompileCommand=exclude${#44}org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPLinkage${#44}addBinding
 
-XX:CompileCommand=exclude${#44}org/python/pydev/editor/codecompletion/revisited/PythonPathHelper${#44}isValidSourceFile
 
-XX:CompileCommand=exclude${#44}org/python/pydev/ui/filetypes/FileTypesPreferencesPage${#44}getDottedValidSourceFiles/vmArgs
   vmArgsMac-Xdock:icon=../Resources/Eclipse.icns -XstartOnFirstThread 
-Dorg.eclipse.swt.internal.carbon.smallFonts/vmArgsMac
/launcherArgs
 
diff --git a/pdebuild/eclipse-pdebuild.sh b/pdebuild/eclipse-pdebuild.sh
index 79462bc..1011199 100755
--- a/pdebuild/eclipse-pdebuild.sh
+++ b/pdebuild/eclipse-pdebuild.sh
@@ -230,7 +230,7 @@ if [ $debugPlatform -eq 1 ]; then
 fi
 
 if [ x$orbitDepsDir != x ]; then
-orbitDeps=-DorbitDepsDir=\$orbitDepsDir\
+orbitDeps=-DorbitDepsDir=$orbitDepsDir
 fi
 
 if [ x$zipDeps != x ]; then


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


[SCM] eclipse - Powerful IDE written in java - Debian package. tag, upstream/3.5.1+repack, updated. 5cf9c9a4523f055d1a4e4523a959c0c583804b23

2009-11-12 Thread Benjamin Drung
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 eclipse - Powerful IDE written in java - Debian package..

The tag, upstream/3.5.1+repack has been updated
to  5cf9c9a4523f055d1a4e4523a959c0c583804b23 (commit)
  from  1bb11f4387754520010656b9c0be81bf05395590

- Log -
commit 5cf9c9a4523f055d1a4e4523a959c0c583804b23
Author: Benjamin Drung bdr...@ubuntu.com
Date:   Thu Nov 12 17:39:57 2009 +0100

Merge upstream trunk branch.
---


hooks/post-receive
-- 
eclipse - Powerful IDE written in java - Debian package.

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


[pkg-java] r11058 - in trunk/jasperreports/debian: . patches

2009-11-12 Thread Damien Raude-Morvan
Author: drazzib
Date: 2009-11-12 23:50:13 + (Thu, 12 Nov 2009)
New Revision: 11058

Added:
   trunk/jasperreports/debian/patches/10_disable_fonts.diff
   trunk/jasperreports/debian/patches/11_pom.diff
Modified:
   trunk/jasperreports/debian/changelog
   trunk/jasperreports/debian/control
   trunk/jasperreports/debian/maven.rules
   trunk/jasperreports/debian/patches/01_exclude_olap_and_jpa.diff
   trunk/jasperreports/debian/patches/06_configure_javaflow.diff
   trunk/jasperreports/debian/patches/07_exclude_barcode4j_and_barbecue.diff
   trunk/jasperreports/debian/patches/08_no_maxmemory_for_javadoc.diff
   trunk/jasperreports/debian/patches/09_use_commons_codec.diff
   trunk/jasperreports/debian/patches/series
   trunk/jasperreports/debian/rules
Log:
* New upstream release
* debian/patches/11_pom.diff: remove uneeded dependencies removed from
  Debian package
* debian/patches/10_disable_fonts.diff: don't build font package
* Build-Depends on libcommons-collections3-java instead of
  libcommons-collections-java

Modified: trunk/jasperreports/debian/changelog
===
--- trunk/jasperreports/debian/changelog2009-11-12 23:42:06 UTC (rev 
11057)
+++ trunk/jasperreports/debian/changelog2009-11-12 23:50:13 UTC (rev 
11058)
@@ -1,3 +1,14 @@
+jasperreports (3.6.1+dfsg-1) UNRELEASED; urgency=low
+
+  * New upstream release
+  * debian/patches/11_pom.diff: remove uneeded dependencies removed from
+Debian package
+  * debian/patches/10_disable_fonts.diff: don't build font package
+  * Build-Depends on libcommons-collections3-java instead of
+libcommons-collections-java
+
+ -- Damien Raude-Morvan draz...@debian.org  Fri, 13 Nov 2009 00:49:24 +0100
+
 jasperreports (3.6.0+dfsg-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/jasperreports/debian/control
===
--- trunk/jasperreports/debian/control  2009-11-12 23:42:06 UTC (rev 11057)
+++ trunk/jasperreports/debian/control  2009-11-12 23:50:13 UTC (rev 11058)
@@ -6,7 +6,7 @@
 Build-Depends: cdbs, quilt, debhelper (= 7), default-jdk, ant
 Build-Depends-Indep: ant-optional, bsh, libasm2-java, groovy, libjcommon-java,
   libspring-core-2.5-java, libspring-beans-2.5-java,
-  libcommons-digester-java, libcommons-collections-java, 
libcommons-logging-java,
+  libcommons-digester-java, libcommons-collections3-java, 
libcommons-logging-java,
   libcommons-beanutils-java, libcommons-codec-java, libcommons-javaflow-java,
   libecj-java, libxalan2-java, libjaxen-java, libxml-commons-external-java,
   libjexcelapi-java, libjakarta-poi-java (= 3.2), libitext-java,

Modified: trunk/jasperreports/debian/maven.rules
===
--- trunk/jasperreports/debian/maven.rules  2009-11-12 23:42:06 UTC (rev 
11057)
+++ trunk/jasperreports/debian/maven.rules  2009-11-12 23:50:13 UTC (rev 
11058)
@@ -1,4 +1,6 @@
 s/ant/org.apache.ant/ * * s/.*/debian/
 junit junit jar s/3\..*/3.x/
-commons-collections commons-collections jar s/2\..*/2.x/
-javax.servlet servlet-api jar *
+commons-collections commons-collections * s/.*/3.x/
+javax.servlet servlet-api * s/.*/2.5/
+com.lowagie itext * s/.*/1.4/
+antlr antlr * s/.*/2.x/

Modified: trunk/jasperreports/debian/patches/01_exclude_olap_and_jpa.diff
===
--- trunk/jasperreports/debian/patches/01_exclude_olap_and_jpa.diff 
2009-11-12 23:42:06 UTC (rev 11057)
+++ trunk/jasperreports/debian/patches/01_exclude_olap_and_jpa.diff 
2009-11-12 23:50:13 UTC (rev 11058)
@@ -4,16 +4,18 @@
 Last-Update: 2009-08-30
 --- a/build.xml
 +++ b/build.xml
-@@ -13,9 +13,9 @@
+@@ -13,10 +13,10 @@
/or
/condition
javac destdir=./build/classes debug=true optimize=false 
deprecation=true target=1.4 source=1.4 encoding=ISO-8859-1
 -  exclude 
name=**/net/sf/jasperreports/engine/util/Java15BigDecimalHandler.java 
unless=using.jdk.1.5/
 -  exclude name=**/olap/**/*.java 
unless=using.jdk.1.5/
 -  exclude name=**/JRJpa*.java unless=using.jdk.1.5/
+-  exclude name=**/Java15BigDecimalHandler.java 
unless=using.jdk.1.5/
 +  exclude 
name=**/net/sf/jasperreports/engine/util/Java15BigDecimalHandler.java/
 +  exclude name=**/olap/**/*.java/
 +  exclude name=**/JRJpa*.java/
++  exclude name=**/Java15BigDecimalHandler.java/
classpath
pathelement location=./build/classes/
fileset dir=./lib

Modified: trunk/jasperreports/debian/patches/06_configure_javaflow.diff
===
--- trunk/jasperreports/debian/patches/06_configure_javaflow.diff

[pkg-java] r11057 - in trunk/jexcelapi/debian: . patches

2009-11-12 Thread Damien Raude-Morvan
Author: drazzib
Date: 2009-11-12 23:42:06 + (Thu, 12 Nov 2009)
New Revision: 11057

Added:
   trunk/jexcelapi/debian/README.source
   trunk/jexcelapi/debian/libjexcelapi-java.poms
   trunk/jexcelapi/debian/patches/
   trunk/jexcelapi/debian/patches/series
   trunk/jexcelapi/debian/patches/system_jflex.diff
   trunk/jexcelapi/debian/pom.xml
Removed:
   trunk/jexcelapi/debian/install
Modified:
   trunk/jexcelapi/debian/changelog
   trunk/jexcelapi/debian/compat
   trunk/jexcelapi/debian/control
   trunk/jexcelapi/debian/copyright
   trunk/jexcelapi/debian/orig-tar.sh
   trunk/jexcelapi/debian/rules
Log:
* New upstream release.
* debian/control:
  - Add myself as Uploaders
  - Bump debhelper version to = 7
  - Remove unneeded ${shlibs:Depends} from Depends
* debian/copyright:
  - Update Copyright years
* Maven POMs:
  - debian/control: add a Build-Depends-Indep dependency on maven-repo-helper
  - debian/rules: use mh_installpoms and mh_installjar
to install the POM and the jar to the Maven repository
  - debian/pom.xml: Debian pom.xml file as upstream doesn't provide one
  - debian/rules: new get-orig-pom to update debian/pom.xml at new upstream
release.
* Use JFlex to rebuild lexer:
  - Add Build-Depends-Indep on jflex
  - Add new patch to use system installed flex
  - Add Build-Depends on quilt
  - Describe patch system in debian/README.source

Added: trunk/jexcelapi/debian/README.source
===
--- trunk/jexcelapi/debian/README.source(rev 0)
+++ trunk/jexcelapi/debian/README.source2009-11-12 23:42:06 UTC (rev 
11057)
@@ -0,0 +1,9 @@
+Patch System
+
+
+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.
+
+See /usr/share/doc/quilt/README.source for a detailed explanation.
+

Modified: trunk/jexcelapi/debian/changelog
===
--- trunk/jexcelapi/debian/changelog2009-11-12 11:14:45 UTC (rev 11056)
+++ trunk/jexcelapi/debian/changelog2009-11-12 23:42:06 UTC (rev 11057)
@@ -1,10 +1,32 @@
-jexcelapi (2.6.10-3) UNRELEASED; urgency=low
+jexcelapi (2.6.12-1) UNRELEASED; urgency=low
 
+  [ Thierry Carrez ]
   * debian/control: Minimal dependency on java2-runtime-headless
   * debian/ant.properties: Build java2 code to match minimal dependency
 
- -- Thierry Carrez thierry.car...@ubuntu.com  Wed, 11 Nov 2009 11:29:47 +0100
+  [ Damien Raude-Morvan ]
+  * New upstream release.
+  * debian/control:
+- Add myself as Uploaders
+- Bump debhelper version to = 7
+- Remove unneeded ${shlibs:Depends} from Depends
+  * debian/copyright:
+- Update Copyright years
+  * Maven POMs:
+- debian/control: add a Build-Depends-Indep dependency on maven-repo-helper
+- debian/rules: use mh_installpoms and mh_installjar
+  to install the POM and the jar to the Maven repository
+- debian/pom.xml: Debian pom.xml file as upstream doesn't provide one
+- debian/rules: new get-orig-pom to update debian/pom.xml at new upstream
+  release.
+  * Use JFlex to rebuild lexer:
+- Add Build-Depends-Indep on jflex
+- Add new patch to use system installed flex
+- Add Build-Depends on quilt
+- Describe patch system in debian/README.source
 
+ -- Damien Raude-Morvan draz...@debian.org  Fri, 13 Nov 2009 00:38:13 +0100
+
 jexcelapi (2.6.10-2) unstable; urgency=low
 
   * Switch to default-java.

Modified: trunk/jexcelapi/debian/compat
===
--- trunk/jexcelapi/debian/compat   2009-11-12 11:14:45 UTC (rev 11056)
+++ trunk/jexcelapi/debian/compat   2009-11-12 23:42:06 UTC (rev 11057)
@@ -1 +1 @@
-5
+7

Modified: trunk/jexcelapi/debian/control
===
--- trunk/jexcelapi/debian/control  2009-11-12 11:14:45 UTC (rev 11056)
+++ trunk/jexcelapi/debian/control  2009-11-12 23:42:06 UTC (rev 11057)
@@ -2,17 +2,17 @@
 Section: java
 Priority: optional
 Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
-Uploaders: Torsten Werner twer...@debian.org
-Build-Depends: ant, cdbs, debhelper (= 5), default-jdk
+Uploaders: Torsten Werner twer...@debian.org, Damien Raude-Morvan 
draz...@debian.org
+Build-Depends: ant, cdbs, debhelper (= 7), default-jdk, quilt
+Build-Depends-Indep: jflex, maven-repo-helper
 Standards-Version: 3.8.3
-Homepage: http://jexcelapi.sourceforge.net
+Homepage: http://jexcelapi.sourceforge.net/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/jexcelapi/
-Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/jexcelapi
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/jexcelapi/
 
 Package: libjexcelapi-java
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, default-jre-headless | 
java2-runtime-headless

Bug#500539: Removed package(s) from unstable

2009-11-12 Thread Debian Archive Maintenance
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:

libjdom0-java | 0.9b-3 | source, all

--- Reason ---
ROM; abandoned upstream
--

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 500...@bugs.debian.org.

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

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.
Barry deFreese (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


[pkg-java] r11059 - in trunk: . fast-md5 fast-md5/debian

2009-11-12 Thread Onkar Shinde
Author: onkarshinde-guest
Date: 2009-11-13 05:30:06 + (Fri, 13 Nov 2009)
New Revision: 11059

Added:
   trunk/fast-md5/
   trunk/fast-md5/debian/
   trunk/fast-md5/debian/changelog
   trunk/fast-md5/debian/compat
   trunk/fast-md5/debian/control
   trunk/fast-md5/debian/copyright
   trunk/fast-md5/debian/rules
   trunk/fast-md5/debian/watch
Log:
fast-md5 initial release

Added: trunk/fast-md5/debian/changelog
===
--- trunk/fast-md5/debian/changelog (rev 0)
+++ trunk/fast-md5/debian/changelog 2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1,5 @@
+fast-md5 (2.6.2-1) UNRELEASED; urgency=low
+
+  * Initial release. Merge from Ubuntu. (Closes: #555944)
+
+ -- Onkar Shinde onkarshi...@ubuntu.com  Fri, 13 Nov 2009 10:36:46 +0530

Added: trunk/fast-md5/debian/compat
===
--- trunk/fast-md5/debian/compat(rev 0)
+++ trunk/fast-md5/debian/compat2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1 @@
+5

Added: trunk/fast-md5/debian/control
===
--- trunk/fast-md5/debian/control   (rev 0)
+++ trunk/fast-md5/debian/control   2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1,25 @@
+Source: fast-md5
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
+Uploaders: Onkar Shinde onkarshi...@ubuntu.com
+Build-Depends: debhelper (=5), cdbs, ant
+Build-Depends-Indep: default-jdk
+Standards-Version: 3.8.3
+Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/fast-md5/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-java/trunk/fast-md5/
+Homepage: http://www.twmacinta.com/myjava/fast_md5.php
+DM-Upload-Allowed: yes
+
+Package: libfast-md5-java
+Architecture: all
+Depends: ${misc:Depends}, default-jre-headless | java2-runtime-headless
+Description: fast implementation of the MD5 algorithm written in Java
+ fast-md5 is faster than the build-in MD5 support in java standard toolkit.
+ It can be used if one or more of following applies:
+  * Java's built-in MD5 support is a bottleneck for your program's performance
+and you want something faster.
+  * You are using a version of Java which doesn't have MD5 support, such as
+J2ME MIDP/CLDC.
+  * You want the extra convenience methods for hashing a file, hashing a
+string, converting the hash to a hex string, etc. 

Added: trunk/fast-md5/debian/copyright
===
--- trunk/fast-md5/debian/copyright (rev 0)
+++ trunk/fast-md5/debian/copyright 2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1,30 @@
+Format-Specification: http://dep.debian.net/deps/dep5/
+Name: fast-md5
+Maintainer: Timothy W Macinta t...@twmacinta.com
+Source: http://www.twmacinta.com/myjava/fast_md5.php
+
+Files: *
+Copyright: 1996-2002, Santeri Paavolainen sjpaa...@cc.helsinki.fi
+   2002-2008, Timothy W Macinta t...@twmacinta.com
+License: LGPL-2.1+
+
+Files: src/com/twmacinta/io/NullOutputStream.java
+Copyright: 2001-2002 by Pensamos Digital, Inc.
+   2002-2008, Timothy W Macinta t...@twmacinta.com
+License: LGPL-2.1+
+
+Files: build.xml
+Copyright: 2003 - 2006 by Dannes Wessels, Timothy W Macinta, Martin West.
+License: LGPL-2.1+
+
+Files: src/com/twmacinta/util/test/MD5OutputStreamTest.java
+Copyright: 2002-2008, Timothy W Macinta t...@twmacinta.com
+License: LGPL-2.1+
+
+Files: debian/*
+Copyright: 2009, Onkar Shinde onkarshi...@ubuntu.com
+License: LGPL-2.1+
+
+License: LGPL-2.1+
+ On Debian systems the full text of the LGPL-2.1 license can be found in the
+ `/usr/share/common-licenses/LGPL-2.1' file.

Added: trunk/fast-md5/debian/rules
===
--- trunk/fast-md5/debian/rules (rev 0)
+++ trunk/fast-md5/debian/rules 2009-11-13 05:30:06 UTC (rev 11059)
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+JAVA_HOME_DIRS := /usr/lib/jvm/default-java
+DEB_ANT_BUILD_TARGET   := jar
+DEB_ANT_ARGS   := -Dapp.name=fast-md5-${DEB_UPSTREAM_VERSION} 
-Dant.build.javac.source=1.4 -Dant.build.javac.target=1.4
+
+install/libfast-md5-java::
+   dh_install dist/fast-md5-${DEB_UPSTREAM_VERSION}.jar usr/share/java/
+   dh_link usr/share/java/fast-md5-${DEB_UPSTREAM_VERSION}.jar 
usr/share/java/fast-md5.jar
+
+get-orig-source::
+   uscan --verbose --force-download
+   unzip ../fast-md5-$(DEB_UPSTREAM_VERSION).zip
+   mv fast-md5/ fast-md5-$(DEB_UPSTREAM_VERSION)
+   rm -rf fast-md5-$(DEB_UPSTREAM_VERSION)/build
+   tar -zcv --exclude *.h --exclude *.jnilib \
+   --exclude *.dll --exclude *.so \
+   -f ../fast-md5_$(DEB_UPSTREAM_VERSION).orig.tar.gz 

[pkg-java] r11060 - trunk/fast-md5/debian

2009-11-12 Thread Onkar Shinde
Author: onkarshinde-guest
Date: 2009-11-13 05:32:36 + (Fri, 13 Nov 2009)
New Revision: 11060

Modified:
   trunk/fast-md5/debian/changelog
Log:
change release to unstable

Modified: trunk/fast-md5/debian/changelog
===
--- trunk/fast-md5/debian/changelog 2009-11-13 05:30:06 UTC (rev 11059)
+++ trunk/fast-md5/debian/changelog 2009-11-13 05:32:36 UTC (rev 11060)
@@ -1,4 +1,4 @@
-fast-md5 (2.6.2-1) UNRELEASED; urgency=low
+fast-md5 (2.6.2-1) unstable; urgency=low
 
   * Initial release. Merge from Ubuntu. (Closes: #555944)
 


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