You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ke...@apache.org on 2014/01/28 22:24:02 UTC

git commit: Upgrade RBTools to 0.5.5.

Updated Branches:
  refs/heads/master 44170174f -> e15988090


Upgrade RBTools to 0.5.5.

This pins us to a stable released version of RBTools, with a number of bugfixes [1,2].

[1] https://github.com/reviewboard/rbtools/commits/release-0.5.5
[2] https://github.com/reviewboard/rbtools/commit/c9ce18becce5ef00fa5e70d51511ad43aab03601

Testing Done:
Posted this review, verified upgrade works.

Reviewed at https://reviews.apache.org/r/17464/


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

Branch: refs/heads/master
Commit: e1598809024bfae7bf1a4247b10f1398c17972cc
Parents: 4417017
Author: Kevin Sweeney <ke...@apache.org>
Authored: Tue Jan 28 13:23:31 2014 -0800
Committer: Kevin Sweeney <ke...@apache.org>
Committed: Tue Jan 28 13:23:31 2014 -0800

----------------------------------------------------------------------
 rbt | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/e1598809/rbt
----------------------------------------------------------------------
diff --git a/rbt b/rbt
index a05476d..8828ead 100755
--- a/rbt
+++ b/rbt
@@ -17,9 +17,7 @@
 # Wrapper script for self-bootstrapping rbt.
 set -e
 
-# TODO(kevints): Pin to stable version after patch --commit is available.
-# Stable version of the release-0.5.x branch
-RBTOOLS_VERSION=51b488bc72686c7db46189e4b41eae42a5500cc8
+RBTOOLS_VERSION=0.5.5
 if ! [ -f build-support/rbtools/BOOTSTRAPPED ] || \
     [ x`cat build-support/rbtools/BOOTSTRAPPED` != x$RBTOOLS_VERSION ]; then
 
@@ -27,7 +25,7 @@ if ! [ -f build-support/rbtools/BOOTSTRAPPED ] || \
   rm -fr build-support/rbtools
   ./build-support/virtualenv build-support/rbtools
   source build-support/rbtools/bin/activate
-  pip install -e "git+https://github.com/reviewboard/rbtools@$RBTOOLS_VERSION#egg=RBTools"
+  pip install "RBTools==$RBTOOLS_VERSION"
   echo $RBTOOLS_VERSION > build-support/rbtools/BOOTSTRAPPED
 fi
 source build-support/rbtools/bin/activate