summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'BuildTools/SCons')
-rw-r--r--BuildTools/SCons/Tools/BuildVersion.py4
-rw-r--r--BuildTools/SCons/Version.py25
2 files changed, 20 insertions, 9 deletions
diff --git a/BuildTools/SCons/Tools/BuildVersion.py b/BuildTools/SCons/Tools/BuildVersion.py
index 530ef8a..5edc79e 100644
--- a/BuildTools/SCons/Tools/BuildVersion.py
+++ b/BuildTools/SCons/Tools/BuildVersion.py
@@ -3,11 +3,11 @@ import SCons.Util
import Version
def generate(env) :
- def createBuildVersion(env, target, version = None) :
+ def createBuildVersion(env, target, project) :
buildVersion = """#pragma once
static const char* buildVersion = \"%(buildVersion)s\";\n
-""" % { "buildVersion" : Version.getBuildVersion(version) }
+""" % { "buildVersion" : Version.getBuildVersion(project) }
env.WriteVal(target, env.Value(buildVersion))
env.AddMethod(createBuildVersion, "BuildVersion")
diff --git a/BuildTools/SCons/Version.py b/BuildTools/SCons/Version.py
index 02edcc9..f4affd4 100644
--- a/BuildTools/SCons/Version.py
+++ b/BuildTools/SCons/Version.py
@@ -1,15 +1,26 @@
import subprocess, os, datetime
-def getGitBuildVersion() :
- p = subprocess.Popen("git rev-parse HEAD", shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=(os.name != "nt"))
- gitVersion = p.stdout.read().rstrip()[0:7]
+def getGitBuildVersion(project) :
+ headVersion = git("rev-parse HEAD")
+ if headVersion :
+ tags = git("tag --contains HEAD -l " + project + "-*")
+ if len(tags) > 0 :
+ for tag in tags.split("\n") :
+ tagVersion = git("rev-parse " + tag + "^{commit}")
+ if tagVersion == headVersion :
+ return tag
+ return None
+
+def git(cmd) :
+ p = subprocess.Popen("git " + cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=(os.name != "nt"))
+ gitVersion = p.stdout.read()
p.stdin.close()
return gitVersion if p.wait() == 0 else None
-def getBuildVersion(version = None) :
- if version :
- return version
- gitVersion = getGitBuildVersion()
+def getBuildVersion(project) :
+ gitVersion = getGitBuildVersion(project)
if gitVersion :
return gitVersion
+ # TODO: Add the current branch
+ # TODO: Pick up a version number from a file (for distributing)
return datetime.date.today().strftime("%Y%m%d")