OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2014 the V8 project authors. All rights reserved. | 2 # Copyright 2014 the V8 project authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """ | 6 """ |
7 Script to set v8's version file to the version given by the latest tag. | 7 Script to set v8's version file to the version given by the latest tag. |
8 """ | 8 """ |
9 | 9 |
10 | 10 |
11 import os | 11 import os |
12 import re | 12 import re |
13 import subprocess | 13 import subprocess |
14 import sys | 14 import sys |
15 | 15 |
16 | 16 |
17 CWD = os.path.abspath( | 17 CWD = os.path.abspath( |
18 os.path.dirname(os.path.dirname(os.path.dirname(__file__)))) | 18 os.path.dirname(os.path.dirname(os.path.dirname(__file__)))) |
19 VERSION_CC = os.path.join(CWD, "src", "version.cc") | 19 VERSION_CC = os.path.join(CWD, "src", "version.cc") |
20 | 20 |
21 def main(): | 21 def main(): |
| 22 if len(sys.argv) != 2: |
| 23 print "Error: Specify the output file path for version.cc" |
| 24 return 1 |
| 25 version_out = sys.argv[1] |
| 26 assert os.path.exists(os.path.dirname(version_out)) |
| 27 |
22 tag = subprocess.check_output( | 28 tag = subprocess.check_output( |
23 "git describe --tags", | 29 "git describe --tags", |
24 shell=True, | 30 shell=True, |
25 cwd=CWD, | 31 cwd=CWD, |
26 ).strip() | 32 ).strip() |
27 assert tag | 33 assert tag |
28 | 34 |
29 # Check for commits not exactly matching a tag. Those are candidate builds | 35 # Check for commits not exactly matching a tag. Those are candidate builds |
30 # for the next version. The output has the form | 36 # for the next version. The output has the form |
31 # <tag name>-<n commits>-<hash>. | 37 # <tag name>-<n commits>-<hash>. |
(...skipping 24 matching lines...) Expand all Loading... |
56 for line in text.split("\n"): | 62 for line in text.split("\n"): |
57 for definition, substitute in ( | 63 for definition, substitute in ( |
58 ("MAJOR_VERSION", major), | 64 ("MAJOR_VERSION", major), |
59 ("MINOR_VERSION", minor), | 65 ("MINOR_VERSION", minor), |
60 ("BUILD_NUMBER", build), | 66 ("BUILD_NUMBER", build), |
61 ("PATCH_LEVEL", patch), | 67 ("PATCH_LEVEL", patch), |
62 ("IS_CANDIDATE_VERSION", candidate)): | 68 ("IS_CANDIDATE_VERSION", candidate)): |
63 if line.startswith("#define %s" % definition): | 69 if line.startswith("#define %s" % definition): |
64 line = re.sub("\d+$", substitute, line) | 70 line = re.sub("\d+$", substitute, line) |
65 output.append(line) | 71 output.append(line) |
66 with open(VERSION_CC, "w") as f: | 72 with open(version_out, "w") as f: |
67 f.write("\n".join(output)) | 73 f.write("\n".join(output)) |
68 | 74 |
69 # Log what was done. | 75 # Log what was done. |
70 candidate_txt = " (candidate)" if candidate == "1" else "" | 76 candidate_txt = " (candidate)" if candidate == "1" else "" |
71 patch_txt = ".%s" % patch if patch != "0" else "" | 77 patch_txt = ".%s" % patch if patch != "0" else "" |
72 version_txt = ("%s.%s.%s%s%s" % | 78 version_txt = ("%s.%s.%s%s%s" % |
73 (major, minor, build, patch_txt, candidate_txt)) | 79 (major, minor, build, patch_txt, candidate_txt)) |
74 print "Modified version.cc. Set V8 version to %s" % version_txt | 80 print "Modified version.cc. Set V8 version to %s" % version_txt |
75 return 0 | 81 return 0 |
76 | 82 |
77 if __name__ == "__main__": | 83 if __name__ == "__main__": |
78 sys.exit(main()) | 84 sys.exit(main()) |
OLD | NEW |