Repository: hbase
Updated Branches:
  refs/heads/branch-1 45b0aa874 -> b9f5c6b06


Commented out smart -p0 handling in dev-support/smart-apply-patch.sh until we 
fix our jenkins env


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b9f5c6b0
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b9f5c6b0
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b9f5c6b0

Branch: refs/heads/branch-1
Commit: b9f5c6b065ebd572193c1fdc9d38557320b42fe6
Parents: 45b0aa8
Author: Enis Soztutar <e...@apache.org>
Authored: Thu Jul 17 17:35:14 2014 -0700
Committer: Enis Soztutar <e...@apache.org>
Committed: Thu Jan 29 15:39:29 2015 -0800

----------------------------------------------------------------------
 dev-support/smart-apply-patch.sh | 54 +++++++++++++++++++----------------
 1 file changed, 29 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b9f5c6b0/dev-support/smart-apply-patch.sh
----------------------------------------------------------------------
diff --git a/dev-support/smart-apply-patch.sh b/dev-support/smart-apply-patch.sh
index 74a7128..cf1a7b0 100755
--- a/dev-support/smart-apply-patch.sh
+++ b/dev-support/smart-apply-patch.sh
@@ -46,32 +46,36 @@ if $PATCH -p0 -E --dry-run < $PATCH_FILE 2>&1 > $TMP; then
   # is adding new files and they would apply anywhere. So try to guess the
   # correct place to put those files.
 
-  TMP2=/tmp/tmp.paths.2.$$
-  TOCLEAN="$TOCLEAN $TMP2"
+#  NOTE 2014/07/17:
+#  Temporarily disabling below check since our jenkins boxes seems to be not 
defaulting to bash 
+#  causing below checks to fail. Once it is fixed, we can revert the commit 
and enable this again.
 
-  grep '^patching file ' $TMP | awk '{print $3}' | grep -v /dev/null | sort | 
uniq > $TMP2
-
-  #first off check that all of the files do not exist
-  FOUND_ANY=0
-  for CHECK_FILE in $(cat $TMP2)
-  do
-    if [[ -f $CHECK_FILE ]]; then
-      FOUND_ANY=1
-    fi
-  done
-
-  if [[ "$FOUND_ANY" = "0" ]]; then
-    #all of the files are new files so we have to guess where the correct 
place to put it is.
-
-    # if all of the lines start with a/ or b/, then this is a git patch that
-    # was generated without --no-prefix
-    if ! grep -qv '^a/\|^b/' $TMP2 ; then
-      echo Looks like this is a git patch. Stripping a/ and b/ prefixes
-      echo and incrementing PLEVEL
-      PLEVEL=$[$PLEVEL + 1]
-      sed -i -e 's,^[ab]/,,' $TMP2
-    fi
-  fi
+#  TMP2=/tmp/tmp.paths.2.$$
+#  TOCLEAN="$TOCLEAN $TMP2"
+#
+#  grep '^patching file ' $TMP | awk '{print $3}' | grep -v /dev/null | sort | 
uniq > $TMP2
+#
+#  #first off check that all of the files do not exist
+#  FOUND_ANY=0
+#  for CHECK_FILE in $(cat $TMP2)
+#  do
+#    if [[ -f $CHECK_FILE ]]; then
+#      FOUND_ANY=1
+#    fi
+#  done
+#
+#  if [[ "$FOUND_ANY" = "0" ]]; then
+#    #all of the files are new files so we have to guess where the correct 
place to put it is.
+#
+#    # if all of the lines start with a/ or b/, then this is a git patch that
+#    # was generated without --no-prefix
+#    if ! grep -qv '^a/\|^b/' $TMP2 ; then
+#      echo Looks like this is a git patch. Stripping a/ and b/ prefixes
+#      echo and incrementing PLEVEL
+#      PLEVEL=$[$PLEVEL + 1]
+#      sed -i -e 's,^[ab]/,,' $TMP2
+#    fi
+#  fi
 elif $PATCH -p1 -E --dry-run < $PATCH_FILE 2>&1 > /dev/null; then
   PLEVEL=1
 elif $PATCH -p2 -E --dry-run < $PATCH_FILE 2>&1 > /dev/null; then

Reply via email to