From 2ddad2c0e30871002b802a87cf88295471a897dd Mon Sep 17 00:00:00 2001 From: "primiano@chromium.org" Date: Mon, 3 Mar 2014 18:34:28 +0000 Subject: [PATCH] Fix the git-svn remote for the depot_tools and nacl recipes. The depot_tools and nacl recipes aren't setting up git-svn properly. There is no git-svn branch in the git mirror for depot-tools and nacl, just master. As a consequence "fetch depot-tools" ends up recreating all the objects from svn taking much more time than it should. BUG= Review URL: https://codereview.chromium.org/183743010 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@254506 0039d316-1c4b-4281-b951-d872f2087c98 --- recipes/depot_tools.py | 2 +- recipes/nacl.py | 2 +- recipes/naclports.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/depot_tools.py b/recipes/depot_tools.py index ccd786036..1c9f7eee0 100644 --- a/recipes/depot_tools.py +++ b/recipes/depot_tools.py @@ -26,7 +26,7 @@ class DepotTools(recipe_util.Recipe): 'solutions': [solution], 'svn_url': 'svn://svn.chromium.org/chrome', 'svn_branch': 'trunk/tools/depot_tools', - 'svn_ref': 'git-svn', + 'svn_ref': 'master', } if props.get('submodule_git_svn_spec'): spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec'] diff --git a/recipes/nacl.py b/recipes/nacl.py index 75d8ef16f..3e3595fa7 100644 --- a/recipes/nacl.py +++ b/recipes/nacl.py @@ -27,7 +27,7 @@ class NaCl(recipe_util.Recipe): 'solutions': [solution], 'svn_url': 'svn://svn.chromium.org/native_client', 'svn_branch': 'trunk/src/native_client', - 'svn_ref': 'git-svn', + 'svn_ref': 'master', } if props.get('submodule_git_svn_spec'): spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec'] diff --git a/recipes/naclports.py b/recipes/naclports.py index 98064d719..a675cbdfb 100644 --- a/recipes/naclports.py +++ b/recipes/naclports.py @@ -26,7 +26,7 @@ class Naclports(recipe_util.Recipe): 'solutions': [solution], 'svn_url': 'https://naclports.googlecode.com/svn', 'svn_branch': 'trunk/src', - 'svn_ref': 'git-svn', + 'svn_ref': 'master', } if props.get('submodule_git_svn_spec'): spec['submodule_git_svn_spec'] = props['submodule_git_svn_spec']