[SCM] eclipse - Powerful IDE written in java - Debian package. branch, master, updated. eclipse-ppa/maverick-2-ge84bb02

Adnan Hodzic absinthesyringe-guest at alioth.debian.org
Tue Jun 1 17:30:36 UTC 2010


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  e84bb023789cc926a5661c231fbda347d91c835a (commit)
      from  59431af3cf495c09508c935b055e3159c5a9297c (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 e84bb023789cc926a5661c231fbda347d91c835a
Author: Adnan Hodzic <adnan at foolcontrol.org>
Date:   Tue Jun 1 19:30:19 2010 +0200

    fix bashism - including patch

-----------------------------------------------------------------------

Summary of changes:
 debian/patches/bashism.patch |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/debian/patches/bashism.patch b/debian/patches/bashism.patch
new file mode 100644
index 0000000..5b19224
--- /dev/null
+++ b/debian/patches/bashism.patch
@@ -0,0 +1,40 @@
+Index: eclipse/build/eclipse-3.5.2-src/installation/plugins/org.eclipse.pde.build_3.5.2.R35x_20100114/templates/package-build/prepare-build-dir.sh
+===================================================================
+--- eclipse.orig/build/eclipse-3.5.2-src/installation/plugins/org.eclipse.pde.build_3.5.2.R35x_20100114/templates/package-build/prepare-build-dir.sh	2010-06-01 18:58:25.857923592 +0200
++++ eclipse/build/eclipse-3.5.2-src/installation/plugins/org.eclipse.pde.build_3.5.2.R35x_20100114/templates/package-build/prepare-build-dir.sh	2010-06-01 19:02:10.853929638 +0200
+@@ -44,7 +44,7 @@
+   PROJECTDIR=$(dirname "$f")
+   inSDK=1
+   inSDK=$(echo $PROJECTDIR | grep -c $BUILDDIR)
+-  if [ $inSDK == 0 ]; then
++  if [ $inSDK = 0 ]; then
+     PROJECTNAME=$(ant -Dbasedir="$PROJECTDIR" -f $BUILDDIR/tmp/feature-build.xml 2>&1 | grep echo | cut --delimiter=' ' -f 7)
+     ERROR=""
+     if [ -z "$PROJECTNAME" ]; then
+@@ -57,7 +57,7 @@
+     fi
+ 
+     if [ "x$ERROR" != "xyes" ]; then
+-      if [[ $TESTING != true || `echo $PROJECTNAME | grep "org.eclipse"` ]]; then
++      if [ $TESTING != true || `echo $PROJECTNAME | grep "org.eclipse"` ]; then
+         echo "  making symlink: $BUILDDIR/features/$PROJECTNAME -> $PROJECTDIR"
+         ln -sfT "$PROJECTDIR" $BUILDDIR/features/"$PROJECTNAME"
+       fi
+@@ -72,7 +72,7 @@
+   ERROR=""
+   inSDK=1
+   inSDK=$(echo $dir | grep -c $BUILDDIR)
+-  if [ $inSDK == 0 ]; then
++  if [ $inSDK = 0 ]; then
+     if [ -e "$dir/META-INF/MANIFEST.MF" ]; then
+       PROJECTNAME=$(grep Bundle-SymbolicName $dir/META-INF/MANIFEST.MF | cut --delimiter=';' -f 1 | cut --delimiter=' ' -f 2)
+     elif [ -e "$dir/plugin.xml" ]; then
+@@ -91,7 +91,7 @@
+     fi
+ 
+     if [ "x$ERROR" != "xyes" ]; then
+-      if [[ $TESTING != true || `echo $PROJECTNAME | grep "org.eclipse"` ]]; then
++      if [ $TESTING != true || `echo $PROJECTNAME | grep "org.eclipse"` ]; then
+         echo "  making symlink: $BUILDDIR/plugins/$PROJECTNAME -> $dir"
+         ln -sfT "$dir" $BUILDDIR/plugins/"$PROJECTNAME"
+       fi


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



More information about the pkg-java-commits mailing list