diff options
author | Fred Drake <fdrake@acm.org> | 2003-09-27 22:07:05 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-09-27 22:07:05 (GMT) |
commit | c8083cf1cc375fa4df828a8a2241cf6617c111f4 (patch) | |
tree | b96aacdf3c4f40859e4ff6790cc4526c1465daa0 /Doc/tools/getversioninfo | |
parent | 43b5e4079506029aa81ba7d4ec3d001f042ca689 (diff) | |
download | cpython-c8083cf1cc375fa4df828a8a2241cf6617c111f4.zip cpython-c8083cf1cc375fa4df828a8a2241cf6617c111f4.tar.gz cpython-c8083cf1cc375fa4df828a8a2241cf6617c111f4.tar.bz2 |
Load the version information from ../Include/patchlevel.h, so there are
fewer changes to make to version numbers after a release.
Diffstat (limited to 'Doc/tools/getversioninfo')
-rwxr-xr-x | Doc/tools/getversioninfo | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/Doc/tools/getversioninfo b/Doc/tools/getversioninfo new file mode 100755 index 0000000..9eb08d1 --- /dev/null +++ b/Doc/tools/getversioninfo @@ -0,0 +1,72 @@ +#! /usr/bin/env python + +import os +import re +import sys + +try: + __file__ +except NameError: + __file__ = sys.argv[0] + +tools = os.path.dirname(os.path.abspath(__file__)) +Doc = os.path.dirname(tools) +src = os.path.dirname(Doc) +patchlevel_h = os.path.join(src, "Include", "patchlevel.h") + +# This won't pick out all #defines, but it will pick up the ones we +# care about. +rx = re.compile(r"\s*#define\s+([a-zA-Z][a-zA-Z_0-9]*)\s+([a-zA-Z_0-9]+)") + +d = {} +f = open(patchlevel_h) +for line in f: + m = rx.match(line) + if m is not None: + name, value = m.group(1, 2) + d[name] = value +f.close() + +release = "%s.%s" % (d["PY_MAJOR_VERSION"], d["PY_MINOR_VERSION"]) +micro = int(d["PY_MICRO_VERSION"]) +shortversion = release +if micro != 0: + release += "." + str(micro) +level = d["PY_RELEASE_LEVEL"] + +suffixes = { + "PY_RELEASE_LEVEL_ALPHA": "a", + "PY_RELEASE_LEVEL_BETA": "b", + "PY_RELEASE_LEVEL_GAMMA": "c", + } + +releaseinfo = "" +if level != "PY_RELEASE_LEVEL_FINAL": + releaseinfo = suffixes[level] + str(int(d["PY_RELEASE_SERIAL"])) + +def write_file(name, text): + """Write text to a file if the file doesn't exist or if text + differs from any existing content.""" + if os.path.exists(name): + f = open(name, "r") + s = f.read() + f.close() + if s == text: + return + f = open(name, "w") + f.write(text) + f.close() + +patchlevel_tex = os.path.join(Doc, "commontex", "patchlevel.tex") +Makefile_version = os.path.join(Doc, "Makefile.version") + +write_file(patchlevel_tex, + "%% This file is generated by ../tools/getversioninfo;\n" + "%% do not edit manually.\n" + "\n" + "\\release{%s}\n" + "\\setreleaseinfo{%s}\n" + "\\setshortversion{%s}\n" + % (release, releaseinfo, shortversion)) + +print release + releaseinfo |