#!/usr/bin/env python # Generate version information for a program # # Copyright (C) 2015 Kevin O'Connor # # This file may be distributed under the terms of the GNU GPLv3 license. import sys, os, subprocess, time, socket, optparse VERSION_FORMAT = """ /* DO NOT EDIT! This is an autogenerated file. See scripts/buildversion.py. */ #define BUILD_VERSION "%s" #define BUILD_TOOLS "%s" """ # Obtain version info from "git" program def git_version(): if not os.path.exists('.git'): return "" params = "git describe --tags --long --dirty".split() try: ver = subprocess.check_output(params).decode().strip() except: return "" return ver # Look for version in a ".version" file def file_version(): if not os.path.isfile('.version'): return "" try: f = open('.version', 'r') ver = f.readline().strip() f.close() except: return "" return ver # Generate an output file with the version information def write_version(outfile, version, toolstr): sys.stdout.write("Version: %s\n" % (version,)) f = open(outfile, 'w') f.write(VERSION_FORMAT % (version, toolstr)) f.close() # Run "tool --version" for each specified tool and extract versions def tool_versions(tools): tools = [t.strip() for t in tools.split(';')] versions = ['', ''] success = 0 for tool in tools: # Extract first line from "tool --version" output try: ver = subprocess.check_output([tool, '--version']).decode() except: continue verstr = ver.split('\n')[0] # Check if this tool looks like a binutils program isbinutils = 0 if verstr.startswith('GNU '): isbinutils = 1 verstr = verstr[4:] # Extract version information and exclude program name if ' ' not in verstr: continue prog, ver = verstr.split(' ', 1) if not prog or not ver: continue # Check for any version conflicts if versions[isbinutils] and versions[isbinutils] != ver: vers[isbinutils] = "mixed" continue versions[isbinutils] = ver success += 1 cleanbuild = versions[0] and versions[1] and success == len(tools) return cleanbuild, "gcc: %s binutils: %s" % (versions[0], versions[1]) def main(): usage = "%prog [options] " opts = optparse.OptionParser(usage) opts.add_option("-e", "--extra", dest="extra", default="", help="extra version string to append to version") opts.add_option("-t", "--tools", dest="tools", default="", help="list of build programs to extract version from") options, args = opts.parse_args() if len(args) != 1: opts.error("Incorrect arguments") outfile = args[0] cleanbuild, toolstr = tool_versions(options.tools) ver = git_version() cleanbuild = cleanbuild and ver and 'dirty' not in ver if not ver: ver = file_version() if not ver: ver = "?" if not cleanbuild: btime = time.strftime("%Y%m%d_%H%M%S") hostname = socket.gethostname() ver = "%s-%s-%s" % (ver, btime, hostname) write_version(outfile, ver + options.extra, toolstr) if __name__ == '__main__': main()