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

Adnan Hodzic absinthesyringe-guest at alioth.debian.org
Fri Jun 18 09:55:53 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  fb7c5294e19c069ddce9733797d9e3a8e56c61c6 (commit)
      from  5876fba892262b971cce1816a2cab756c70eb721 (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 fb7c5294e19c069ddce9733797d9e3a8e56c61c6
Author: Adnan Hodzic <adnan at foolcontrol.org>
Date:   Fri Jun 18 11:55:24 2010 +0200

    added fix-bashism patch

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

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

diff --git a/debian/patches/fix-bashism.patch b/debian/patches/fix-bashism.patch
new file mode 100644
index 0000000..3eb93ab
--- /dev/null
+++ b/debian/patches/fix-bashism.patch
@@ -0,0 +1,42 @@
+Author: Adnan Hodzic <adnan at foolcontrol.org>
+Subject: Fix bashisms in Eclipse (in /bin/sh scripts)
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=581099
+Last-Update: <2010-06-18>
+--- eclipse-3.5.2.orig/patches/eclipse-pde.build-add-package-build.patch
++++ eclipse-3.5.2/patches/eclipse-pde.build-add-package-build.patch
+@@ -53,7 +53,7 @@ diff -N templates/package-build/prepare-
+ +  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
+@@ -66,7 +66,7 @@ diff -N templates/package-build/prepare-
+ +    fi
+ +
+ +    if [ "x$ERROR" != "xyes" ]; then
+-+      if [[ $TESTING != true || `echo $PROJECTNAME | grep "org.eclipse"` ]]; then
+++      if [ $TESTING != true -o `echo $PROJECTNAME | grep "org.eclipse"` ]; then
+ +        echo "  making symlink: $BUILDDIR/features/$PROJECTNAME -> $PROJECTDIR"
+ +        ln -sfT "$PROJECTDIR" $BUILDDIR/features/"$PROJECTNAME"
+ +      fi
+@@ -81,7 +81,7 @@ diff -N templates/package-build/prepare-
+ +  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
+@@ -100,7 +100,7 @@ diff -N templates/package-build/prepare-
+ +    fi
+ +
+ +    if [ "x$ERROR" != "xyes" ]; then
+-+      if [[ $TESTING != true || `echo $PROJECTNAME | grep "org.eclipse"` ]]; then
+++      if [ $TESTING != true -o `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