You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by zm...@apache.org on 2015/11/25 03:04:03 UTC

aurora git commit: Upgrade RBTools to 0.7.5

Repository: aurora
Updated Branches:
  refs/heads/master e3c5c370c -> 8524dbfef


Upgrade RBTools to 0.7.5

Upgrade to RBTools 0.7.5 and use the wheel hosted on PyPI.
Changelog: https://www.reviewboard.org/docs/releasenotes/rbtools/0.7.5/

Testing Done:
Modified the script and ran ./rbt

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


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

Branch: refs/heads/master
Commit: 8524dbfef6e3225eeed1e85a04308104cd5c2029
Parents: e3c5c37
Author: Zameer Manji <zm...@apache.org>
Authored: Tue Nov 24 18:03:21 2015 -0800
Committer: Zameer Manji <zm...@apache.org>
Committed: Tue Nov 24 18:03:21 2015 -0800

----------------------------------------------------------------------
 rbt | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/8524dbfe/rbt
----------------------------------------------------------------------
diff --git a/rbt b/rbt
index 59f8629..5b94e53 100755
--- a/rbt
+++ b/rbt
@@ -16,7 +16,7 @@
 set -e
 
 HERE=$(cd `dirname "${BASH_SOURCE[0]}"` && pwd)
-RBTOOLS_VERSION=0.7.4
+RBTOOLS_VERSION=0.7.5
 if ! [ -f "$HERE/build-support/rbt.venv/BOOTSTRAPPED" ] || \
     [ x`cat "$HERE/build-support/rbt.venv/BOOTSTRAPPED"` != x$RBTOOLS_VERSION ]; then
 
@@ -24,11 +24,8 @@ if ! [ -f "$HERE/build-support/rbt.venv/BOOTSTRAPPED" ] || \
   rm -fr "$HERE/build-support/rbt.venv"
   "$HERE/build-support/virtualenv" "$HERE/build-support/rbt.venv"
   source "$HERE/build-support/rbt.venv/bin/activate"
-  # Workaround for https://groups.google.com/forum/#!topic/reviewboard/rqdoykc-rpo
-  python -m pip install "RBTools==$RBTOOLS_VERSION" \
-      --allow-external RBTools --allow-unverified RBTools
+  python -m pip install --use-wheel "RBTools==$RBTOOLS_VERSION"
   echo $RBTOOLS_VERSION > "$HERE/build-support/rbt.venv/BOOTSTRAPPED"
 fi
 source "$HERE/build-support/rbt.venv/bin/activate"
-# TODO(kevints): Use ./pants py here instead of virtualenv.
 exec rbt "$@"