2012-05-10 16:24:17 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import commands
|
|
|
|
import fnmatch
|
|
|
|
import re
|
|
|
|
import subprocess, shlex
|
|
|
|
|
|
|
|
def cmdsplit(args):
|
|
|
|
if os.sep == '\\':
|
|
|
|
args = args.replace('\\', '\\\\')
|
|
|
|
return shlex.split(args)
|
|
|
|
|
|
|
|
def cleanDirs(path):
|
|
|
|
if not os.path.isdir(path):
|
|
|
|
return
|
|
|
|
|
|
|
|
files = os.listdir(path)
|
|
|
|
if len(files):
|
|
|
|
for f in files:
|
|
|
|
fullpath = os.path.join(path, f)
|
|
|
|
if os.path.isdir(fullpath):
|
|
|
|
cleanDirs(fullpath)
|
|
|
|
|
|
|
|
files = os.listdir(path)
|
|
|
|
if len(files) == 0:
|
|
|
|
os.rmdir(path)
|
|
|
|
|
|
|
|
def main():
|
|
|
|
print("Obtaining version information from git")
|
2012-05-10 16:53:27 +00:00
|
|
|
cmd = "git describe --long --match='[^(jenkins)]*'"
|
2012-05-10 16:24:17 +00:00
|
|
|
try:
|
|
|
|
process = subprocess.Popen(cmdsplit(cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, bufsize=-1)
|
|
|
|
vers, _ = process.communicate()
|
|
|
|
except OSError:
|
|
|
|
print("Git not found")
|
|
|
|
vers="v1.0-0-deadbeef"
|
|
|
|
(major,minor,rev,githash)=re.match("v(\d+).(\d+)-(\d+)-(.*)",vers).groups()
|
|
|
|
with open("fmlversion.properties","w") as f:
|
|
|
|
f.write("%s=%s\n" %("fmlbuild.major.number",major))
|
|
|
|
f.write("%s=%s\n" %("fmlbuild.minor.number",minor))
|
|
|
|
f.write("%s=%s\n" %("fmlbuild.revision.number",rev))
|
|
|
|
f.write("%s=%s\n" %("fmlbuild.githash",githash))
|
2012-05-10 17:01:39 +00:00
|
|
|
f.write("%s=%s\n" %("fmlbuild.mcversion","1.2.5"))
|
2012-05-10 16:24:17 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|