OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # coding: utf-8 | 2 # coding: utf-8 |
3 | 3 |
4 # This Source Code Form is subject to the terms of the Mozilla Public | 4 # This Source Code Form is subject to the terms of the Mozilla Public |
5 # License, v. 2.0. If a copy of the MPL was not distributed with this | 5 # License, v. 2.0. If a copy of the MPL was not distributed with this |
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | 6 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
7 | 7 |
8 import sys | 8 import sys |
9 import os | 9 import os |
10 import posixpath | 10 import posixpath |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 source = source.rstrip("/") | 90 source = source.rstrip("/") |
91 if not source.endswith(".git"): | 91 if not source.endswith(".git"): |
92 source += ".git" | 92 source += ".git" |
93 subprocess.check_call(["git", "clone", "--quiet", source, target]) | 93 subprocess.check_call(["git", "clone", "--quiet", source, target]) |
94 | 94 |
95 def get_revision_id(self, repo, rev="HEAD"): | 95 def get_revision_id(self, repo, rev="HEAD"): |
96 command = ["git", "rev-parse", "--revs-only", rev + '^{commit}'] | 96 command = ["git", "rev-parse", "--revs-only", rev + '^{commit}'] |
97 return subprocess.check_output(command, cwd=repo).strip() | 97 return subprocess.check_output(command, cwd=repo).strip() |
98 | 98 |
99 def pull(self, repo): | 99 def pull(self, repo): |
| 100 # First perform a fetch so we have a list of remote branch names and tags |
100 subprocess.check_call(["git", "fetch", "--quiet", "--all", "--tags"], cwd=re
po) | 101 subprocess.check_call(["git", "fetch", "--quiet", "--all", "--tags"], cwd=re
po) |
| 102 # Next we need to ensure all remote branches are tracked |
| 103 newly_tracked = False |
| 104 remotes = subprocess.check_output(["git", "branch", "--remotes"], cwd=repo) |
| 105 for match in re.finditer(r"(?:^|\s)(origin/((?!HEAD(?:$|\s))\S+))", remotes)
: |
| 106 remote, local = match.groups() |
| 107 with open(os.devnull, "wb") as devnull: |
| 108 if subprocess.call(["git", "branch", "--track", local, remote], |
| 109 cwd=repo, stdout=devnull, stderr=devnull) == 0: |
| 110 newly_tracked = True |
| 111 # Finally fetch any newly tracked remote branches |
| 112 if newly_tracked: |
| 113 subprocess.check_call(["git", "fetch", "--quiet", "origin"], cwd=repo) |
101 | 114 |
102 def update(self, repo, rev): | 115 def update(self, repo, rev): |
103 subprocess.check_call(["git", "checkout", "--quiet", rev], cwd=repo) | 116 subprocess.check_call(["git", "checkout", "--quiet", rev], cwd=repo) |
104 | 117 |
105 def ignore(self, target, repo): | 118 def ignore(self, target, repo): |
106 module = os.path.relpath(target, repo) | 119 module = os.path.relpath(target, repo) |
107 exclude_file = os.path.join(repo, ".git", "info", "exclude") | 120 exclude_file = os.path.join(repo, ".git", "info", "exclude") |
108 _ensure_line_exists(exclude_file, module) | 121 _ensure_line_exists(exclude_file, module) |
109 | 122 |
110 def postprocess_url(self, url): | 123 def postprocess_url(self, url): |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 args = parser.parse_args() | 317 args = parser.parse_args() |
305 | 318 |
306 if args.quiet: | 319 if args.quiet: |
307 logging.disable(logging.INFO) | 320 logging.disable(logging.INFO) |
308 | 321 |
309 repos = args.repos | 322 repos = args.repos |
310 if not len(repos): | 323 if not len(repos): |
311 repos = [os.path.dirname(__file__)] | 324 repos = [os.path.dirname(__file__)] |
312 for repo in repos: | 325 for repo in repos: |
313 resolve_deps(repo) | 326 resolve_deps(repo) |
OLD | NEW |