| 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 11 matching lines...) Expand all Loading... |
| 43 assert len(version_levels) == 4 | 49 assert len(version_levels) == 4 |
| 44 | 50 |
| 45 major, minor, build, patch = version_levels | 51 major, minor, build, patch = version_levels |
| 46 | 52 |
| 47 # Increment build level for candidate builds. | 53 # Increment build level for candidate builds. |
| 48 if candidate == "1": | 54 if candidate == "1": |
| 49 build = str(int(build) + 1) | 55 build = str(int(build) + 1) |
| 50 patch = "0" | 56 patch = "0" |
| 51 | 57 |
| 52 # Modify version.cc with the new values. | 58 # Modify version.cc with the new values. |
| 59 output = [] |
| 53 with open(VERSION_CC, "r") as f: | 60 with open(VERSION_CC, "r") as f: |
| 54 text = f.read() | 61 for line in f: |
| 55 output = [] | 62 for definition, substitute in ( |
| 56 for line in text.split("\n"): | 63 ("MAJOR_VERSION", major), |
| 57 for definition, substitute in ( | 64 ("MINOR_VERSION", minor), |
| 58 ("MAJOR_VERSION", major), | 65 ("BUILD_NUMBER", build), |
| 59 ("MINOR_VERSION", minor), | 66 ("PATCH_LEVEL", patch), |
| 60 ("BUILD_NUMBER", build), | 67 ("IS_CANDIDATE_VERSION", candidate)): |
| 61 ("PATCH_LEVEL", patch), | 68 if line.startswith("#define %s" % definition): |
| 62 ("IS_CANDIDATE_VERSION", candidate)): | 69 line = re.sub("\d+$", substitute, line) |
| 63 if line.startswith("#define %s" % definition): | 70 output.append(line) |
| 64 line = re.sub("\d+$", substitute, line) | 71 with open(version_out, "w") as f: |
| 65 output.append(line) | 72 f.write("".join(output)) |
| 66 with open(VERSION_CC, "w") as f: | |
| 67 f.write("\n".join(output)) | |
| 68 | 73 |
| 69 # Log what was done. | 74 # Log what was done. |
| 70 candidate_txt = " (candidate)" if candidate == "1" else "" | 75 candidate_txt = " (candidate)" if candidate == "1" else "" |
| 71 patch_txt = ".%s" % patch if patch != "0" else "" | 76 patch_txt = ".%s" % patch if patch != "0" else "" |
| 72 version_txt = ("%s.%s.%s%s%s" % | 77 version_txt = ("%s.%s.%s%s%s" % |
| 73 (major, minor, build, patch_txt, candidate_txt)) | 78 (major, minor, build, patch_txt, candidate_txt)) |
| 74 print "Modified version.cc. Set V8 version to %s" % version_txt | 79 print "Modified version.cc. Set V8 version to %s" % version_txt |
| 75 return 0 | 80 return 0 |
| 76 | 81 |
| 77 if __name__ == "__main__": | 82 if __name__ == "__main__": |
| 78 sys.exit(main()) | 83 sys.exit(main()) |
| OLD | NEW |