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/07/29 01:48:06 UTC

git commit: Update to RBTools 0.6.2

Repository: incubator-aurora
Updated Branches:
  refs/heads/master 78ae04c59 -> fa2aa998d


Update to RBTools 0.6.2

Lots of improvements, including git workflow integration - see
https://www.reviewboard.org/docs/releasenotes/rbtools/0.6/

Testing Done:
./rbt post
./build-support/tools/list-missing-shipits

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


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

Branch: refs/heads/master
Commit: fa2aa998db38c848ea7d243c6eebd9199ac3b1f2
Parents: 78ae04c
Author: Kevin Sweeney <ke...@apache.org>
Authored: Mon Jul 28 16:47:38 2014 -0700
Committer: Kevin Sweeney <ke...@apache.org>
Committed: Mon Jul 28 16:47:38 2014 -0700

----------------------------------------------------------------------
 build-support/tools/list-missing-shipits | 4 ++--
 docs/contributing.md                     | 2 +-
 rbt                                      | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/fa2aa998/build-support/tools/list-missing-shipits
----------------------------------------------------------------------
diff --git a/build-support/tools/list-missing-shipits b/build-support/tools/list-missing-shipits
index bd5b2ff..18c3c80 100755
--- a/build-support/tools/list-missing-shipits
+++ b/build-support/tools/list-missing-shipits
@@ -97,8 +97,8 @@ class Reviewboard(object):
     if self._url is not None:
       base_cmd += ['--server=%s' % self._url]
     return json.loads(subprocess.Popen(
-      base_cmd + [resource, '--'] + ['--%s=%s' % (k, v) for k, v in params.items()],
-      stdout=subprocess.PIPE).communicate()[0])
+        base_cmd + [resource] + ['--%s=%s' % (k, v) for k, v in params.items()],
+        stdout=subprocess.PIPE).communicate()[0])
 
   def get_server_url(self):
     return self._get('info')['info']['site']['url']

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/fa2aa998/docs/contributing.md
----------------------------------------------------------------------
diff --git a/docs/contributing.md b/docs/contributing.md
index d337da2..44512c2 100644
--- a/docs/contributing.md
+++ b/docs/contributing.md
@@ -11,7 +11,7 @@ Submitting a Patch for Review
 -----------------------------
 Post a review with `rbt`, fill out the fields in your browser and hit Publish.
 
-    ./rbt post -o -g
+    ./rbt post -o
 
 Updating an Existing Review
 ---------------------------

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/fa2aa998/rbt
----------------------------------------------------------------------
diff --git a/rbt b/rbt
index 7875e89..9cbecf2 100755
--- a/rbt
+++ b/rbt
@@ -16,7 +16,7 @@
 set -e
 
 HERE=$(cd `dirname "${BASH_SOURCE[0]}"` && pwd)
-RBTOOLS_VERSION=0.5.5
+RBTOOLS_VERSION=0.6.2
 if ! [ -f "$HERE/build-support/rbt.venv/BOOTSTRAPPED" ] || \
     [ x`cat "$HERE/build-support/rbt.venv/BOOTSTRAPPED"` != x$RBTOOLS_VERSION ]; then