Chromium Code Reviews| Index: tools/release/update_node.py |
| diff --git a/tools/release/update_node.py b/tools/release/update_node.py |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..60b5b171c71552bbff1f8f342eae0e3f40ca3a89 |
| --- /dev/null |
| +++ b/tools/release/update_node.py |
| @@ -0,0 +1,107 @@ |
| +#!/usr/bin/env python |
| +# Copyright 2017 the V8 project authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import argparse |
| +import os |
| +import shutil |
| +import subprocess |
| + |
| +TARGET_SUBDIR = os.path.join("deps", "v8") |
| + |
| +REPOSITORIES = [ [""], |
| + ["testing", "gtest"], |
| + ["third_party", "jinja2"], |
| + ["third_party", "markupsafe"] ] |
| + |
| +DELETE_FROM_GITIGNORE = [ "/base", |
| + "/testing/gtest" ] |
| + |
| +ADD_TO_GITIGNORE = [ "/testing/gtest/*", |
|
Michael Achenbach
2017/03/13 17:13:20
Maybe add a comment/documentation somewhere what t
Yang
2017/03/14 07:49:00
I added a comment.
|
| + "!/testing/gtest/include", |
| + "/testing/gtest/include/*", |
| + "!/testing/gtest/include/gtest", |
| + "/testing/gtest/include/gtest/*", |
| + "!/testing/gtest/include/gtest/gtest_prod.h", |
| + "!/third_party/jinja2", |
| + "!/third_party/markupsafe" ] |
| + |
| +def RunGclient(path): |
| + assert os.path.isdir(path) |
| + print ">> Running gclient sync" |
| + subprocess.call("gclient sync --nohooks", cwd=path, shell=True) |
| + |
| +def UninitGit(path): |
| + target = os.path.join(path, ".git") |
| + if os.path.isdir(target): |
| + print ">> Cleaning up %s" % path |
| + shutil.rmtree(target) |
| + |
| +def UpdateTarget(repository, options): |
| + source = os.path.join(options.v8_path, *repository) |
| + target = os.path.join(options.node_path, TARGET_SUBDIR, *repository) |
| + print ">> Updating target directory %s" % target |
| + print ">> from active branch at %s" % source |
| + # Remove possible remnants of previous incomplete runs. |
| + UninitGit(target) |
| + |
| + git_commands = [ |
| + "git init", # initialize target repo |
| + "git remote add origin %s" % source, # point to the source repo |
| + "git fetch origin HEAD", # sync to the current branch |
| + "git reset --hard FETCH_HEAD", # reset to the current branch |
| + "git clean -fd" # delete removed files |
| + ] |
| + try: |
| + for command in git_commands: |
| + subprocess.call(command, cwd=target, shell=True) |
| + except: |
| + raise |
| + finally: |
| + UninitGit(target) |
| + |
| +def UpdateGitIgnore(options): |
| + file_name = os.path.join(options.node_path, TARGET_SUBDIR, ".gitignore") |
| + assert os.path.isfile(file_name) |
| + print ">> Updating .gitignore with lines" |
| + with open(file_name) as gitignore: |
| + content = gitignore.readlines() |
| + content = [x.strip() for x in content] |
| + for x in DELETE_FROM_GITIGNORE: |
| + if x in content: |
| + print "- %s" % x |
| + content.remove(x) |
| + for x in ADD_TO_GITIGNORE: |
| + if x not in content: |
| + print "+ %s" % x |
| + content.append(x) |
| + content.sort(key=lambda x: x[1:] if x.startswith("!") else x) |
| + with open(file_name, "w") as gitignore: |
| + for x in content: |
| + gitignore.write("%s\n" % x) |
| + |
| +def ParseOptions(): |
| + parser = argparse.ArgumentParser(description="Update V8 in Node.js") |
| + parser.add_argument("v8_path", help="Path to V8 checkout") |
| + parser.add_argument("node_path", help="Path to Node.js checkout") |
| + parser.add_argument("--gclient", dest="gclient", |
| + action="store_true", help="Run gclient sync") |
| + options = parser.parse_args() |
| + assert os.path.isdir(options.v8_path) |
| + options.v8_path = os.path.abspath(options.v8_path) |
| + assert os.path.isdir(options.node_path) |
| + options.node_path = os.path.abspath(options.node_path) |
| + return options |
| + |
| +def Main(): |
| + options = ParseOptions() |
| + if options.gclient: |
| + RunGclient(options.v8_path) |
| + for repo in REPOSITORIES: |
| + UpdateTarget(repo, options) |
| + UpdateGitIgnore(options) |
|
Michael Achenbach
2017/03/13 10:33:23
Possibility for confusion - not sure how it could
Yang
2017/03/14 07:49:00
I don't think .gitignore applies to 'git clean -fd
|
| + |
| +if __name__ == "__main__": |
| + Main() |