-
Notifications
You must be signed in to change notification settings - Fork 45
/
version.py
76 lines (58 loc) · 2.18 KB
/
version.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright (c) 2023 Marius Gräfe
# Script to generate version.h from git output
import re
import sys
import subprocess
import os
productName = 'ts3sb'; # Set product name here
outFileVersion = 'src/version/version.h'
outFilePackage = 'deploy/package.ini'
def main():
versionStr = subprocess.check_output(['git', 'describe', '--tags']).decode().strip()
checkFile = 'release/git-state.txt'
if os.path.isfile(checkFile):
with open(checkFile, 'r') as fh:
content = fh.read()
if content == versionStr and os.path.isfile(outFileVersion) and os.path.isfile(outFilePackage):
print('Output files exist and git tag did not change, not running version update')
return 0
print('Git change or missing file detected, re-creating files...')
try:
os.makedirs(os.path.dirname(checkFile), exist_ok=True)
fh = open(checkFile, 'w')
fh.write(versionStr)
except:
print('Unable to create git check file, write protected?')
pattern = 'v?([0-9]+)\\.([0-9]+)\\.([0-9]+)'
reObj = re.search(pattern, versionStr)
if reObj == None:
print('Pattern not found')
return 1
groups = list(reObj.groups())
productNameCap = productName.upper()
# Generate version.h
sh = \
'//CHANGES WILL BE OVERWRITTEN BY version.py\n\n' \
'#ifndef ' + productName + '_all__version_H__\n' \
'#define ' + productName + '_all__version_H__\n\n' \
'#define ' + productNameCap + '_VERSION ' + ','.join(groups) + ',0\n' + \
'#define ' + productNameCap + '_VERSION_S "' + versionStr + '"\n' + \
'#define ' + productNameCap + '_VERSION_MAJOR ' + groups[0] + '\n' + \
'#define ' + productNameCap + '_VERSION_MINOR ' + groups[1] + '\n' + \
'#define ' + productNameCap + '_VERSION_REVISION ' + groups[2] + '\n' + \
'#define ' + productNameCap + '_VERSION_BUILD ' + '1833' + '\n' + \
'\n#endif\n'
os.makedirs(os.path.dirname(outFileVersion), exist_ok=True)
with open(outFileVersion, 'w') as fh:
fh.write(sh)
fh.close()
# Generate package.ini
with open('src/package.ini.in', 'r') as fh:
txt = fh.read().replace('@version@', versionStr)
os.makedirs(os.path.dirname(outFilePackage), exist_ok=True)
with open(outFilePackage, 'w') as fh:
fh.write(txt)
return 0
sys.exit(main())