forked from radareorg/radare2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.py
executable file
·29 lines (24 loc) · 979 Bytes
/
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
#!/usr/bin/env python
""" Portable python script to read version from configure.acr """
import sys
full_version = False
for arg in sys.argv[1:]:
if arg == '--full-version':
full_version = True
else:
print('Option %s not supported' % (arg,))
sys.exit(1)
with open('configure.acr', 'r') as f:
f.readline()
version = f.readline().split()[1]
sys.stdout.write(version + '\n')
if full_version:
versions = version.split('.')
version_major = versions[0] if len(versions) > 0 else 0
version_minor = versions[1] if len(versions) > 1 else 0
version_patch = versions[2].replace('-git', '') if len(versions) > 2 else 0
version_number = "%d%02d%02d"%(int(version_major), int(version_minor), int(version_patch))
sys.stdout.write(version_major + '\n')
sys.stdout.write(version_minor + '\n')
sys.stdout.write(version_patch + '\n')
sys.stdout.write(version_number + '\n')