X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/418c57bce3aac1a22548e53e1018a1547d9efee4..0b4945244d55214b331adabce38e33800b55b3e1:/tools/crunchstat-summary/arvados_version.py diff --git a/tools/crunchstat-summary/arvados_version.py b/tools/crunchstat-summary/arvados_version.py index a24d53dad6..d8eec3d9ee 100644 --- a/tools/crunchstat-summary/arvados_version.py +++ b/tools/crunchstat-summary/arvados_version.py @@ -6,25 +6,42 @@ import subprocess import time import os import re - -def git_latest_tag(): - gitinfo = subprocess.check_output( - ['git', 'describe', '--abbrev=0']).strip() - return str(gitinfo.decode('utf-8')) - -def git_timestamp_tag(): - gitinfo = subprocess.check_output( - ['git', 'log', '--first-parent', '--max-count=1', - '--format=format:%ct', '.']).strip() - return str(time.strftime('.%Y%m%d%H%M%S', time.gmtime(int(gitinfo)))) +import sys + +SETUP_DIR = os.path.dirname(os.path.abspath(__file__)) +VERSION_PATHS = { + SETUP_DIR, + os.path.abspath(os.path.join(SETUP_DIR, "../../sdk/python")), + os.path.abspath(os.path.join(SETUP_DIR, "../../build/version-at-commit.sh")) + } + +def choose_version_from(): + ts = {} + for path in VERSION_PATHS: + ts[subprocess.check_output( + ['git', 'log', '--first-parent', '--max-count=1', + '--format=format:%ct', path]).strip()] = path + + sorted_ts = sorted(ts.items()) + getver = sorted_ts[-1][1] + print("Using "+getver+" for version number calculation of "+SETUP_DIR, file=sys.stderr) + return getver + +def git_version_at_commit(): + curdir = choose_version_from() + myhash = subprocess.check_output(['git', 'log', '-n1', '--first-parent', + '--format=%H', curdir]).strip() + myversion = subprocess.check_output([SETUP_DIR+'/../../build/version-at-commit.sh', myhash]).strip().decode() + return myversion def save_version(setup_dir, module, v): - with open(os.path.join(setup_dir, module, "_version.py"), 'w') as fp: - return fp.write("__version__ = '%s'\n" % v) + v = v.replace("~dev", ".dev").replace("~rc", "rc") + with open(os.path.join(setup_dir, module, "_version.py"), 'wt') as fp: + return fp.write("__version__ = '%s'\n" % v) def read_version(setup_dir, module): - with open(os.path.join(setup_dir, module, "_version.py"), 'r') as fp: - return re.match("__version__ = '(.*)'$", fp.read()).groups()[0] + with open(os.path.join(setup_dir, module, "_version.py"), 'rt') as fp: + return re.match("__version__ = '(.*)'$", fp.read()).groups()[0] def get_version(setup_dir, module): env_version = os.environ.get("ARVADOS_BUILDING_VERSION") @@ -33,8 +50,9 @@ def get_version(setup_dir, module): save_version(setup_dir, module, env_version) else: try: - save_version(setup_dir, module, git_latest_tag() + git_timestamp_tag()) - except subprocess.CalledProcessError: + save_version(setup_dir, module, git_version_at_commit()) + except (subprocess.CalledProcessError, OSError) as err: + print("ERROR: {0}".format(err), file=sys.stderr) pass return read_version(setup_dir, module)