forked from BOINC/boinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set-client-version.py
150 lines (131 loc) · 5.32 KB
/
set-client-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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# This file is part of BOINC.
# https://boinc.berkeley.edu
# Copyright (C) 2022 University of California
#
# BOINC is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# BOINC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with BOINC. If not, see <http://www.gnu.org/licenses/>.
import os
import subprocess
import sys
def split_version(version):
major = int(version.split('.')[0])
minor = int(version.split('.')[1])
release = int(version.split('.')[2])
return major, minor, release
def is_release(minor):
return minor % 2 == 0
def set_configure_ac(version):
with open('configure.ac', 'r') as f:
lines = f.readlines()
with open('configure.ac', 'w') as f:
for line in lines:
if line.startswith('AC_INIT'):
line = f'AC_INIT(BOINC, {version})\n'
f.write(line)
def set_version_h(version):
major, minor, release = split_version(version)
with open('version.h', 'r') as f:
lines = f.readlines()
with open('version.h', 'w') as f:
for line in lines:
if line.startswith('#define BOINC_MAJOR_VERSION'):
line = f'#define BOINC_MAJOR_VERSION {major}\n'
elif line.startswith('#define BOINC_MINOR_VERSION'):
line = f'#define BOINC_MINOR_VERSION {minor}\n'
elif line.startswith('#define BOINC_RELEASE'):
line = f'#define BOINC_RELEASE {release}\n'
elif line.startswith('#define BOINC_VERSION_STRING'):
line = f'#define BOINC_VERSION_STRING "{major}.{minor}.{release}"\n'
elif line.startswith('#define PACKAGE_STRING'):
line = f'#define PACKAGE_STRING "BOINC {major}.{minor}.{release}"\n'
elif line.startswith('#define PACKAGE_VERSION'):
line = f'#define PACKAGE_VERSION "{major}.{minor}.{release}"\n'
elif line.find('#define BOINC_PRERELEASE 1') != -1:
if is_release(minor):
line = '//#define BOINC_PRERELEASE 1\n'
else:
line = '#define BOINC_PRERELEASE 1\n'
f.write(line)
def set_version_h_in(version):
_, minor, _ = split_version(version)
with open('version.h.in', 'r') as f:
lines = f.readlines()
with open('version.h.in', 'w') as f:
for line in lines:
if line.find('#define BOINC_PRERELEASE 1') != -1:
if is_release(minor):
line = '//#define BOINC_PRERELEASE 1\n'
else:
line = '#define BOINC_PRERELEASE 1\n'
f.write(line)
def set_version_log(version):
with open('version.log', 'w') as f:
line = f'{version}\n'
f.write(line)
def set_build_gradle(version):
_, minor, _ = split_version(version)
if (is_release(minor)):
return
with open('android/BOINC/app/build.gradle', 'r') as f:
lines = f.readlines()
with open('android/BOINC/app/build.gradle', 'w') as f:
for line in lines:
if line.startswith(' def version = '):
line = f' def version = \'{version} : DEVELOPMENT\'\n'
f.write(line)
def set_installshield(version):
for ism in ['win_build/installerv2/BOINCx64_vbox.ism', 'win_build/installerv2/BOINCx64.ism']:
with open(ism, 'r') as f:
lines = f.readlines()
with open(ism, 'w') as f:
for line in lines:
if line.startswith(' <row><td>ProductVersion</td><td>'):
line = f' <row><td>ProductVersion</td><td>{version}</td><td/></row>\n'
f.write(line)
def set_snapcraft(version):
with open('snap/snapcraft.yaml','r') as f:
lines = f.readlines()
with open('snap/snapcraft.yaml','w') as f:
for line in lines:
if line.startswith('version:'):
line = f'version: "{version}"\n'
f.write(line)
def set_snap_boinc_desktop(version):
with open('snap/gui/boinc.desktop','r') as f:
lines = f.readlines()
with open('snap/gui/boinc.desktop','w') as f:
for line in lines:
if line.startswith('version='):
line = f'version="{version}"\n'
f.write(line)
if (len(sys.argv) != 2):
print('Usage: set-client-version.py VERSION')
exit(1)
version = sys.argv[1]
_, minor, release = split_version(version)
if (not is_release(minor) and release != 0):
print(f'ERROR: for development version release number should be 0 but it\'s set to {release}')
exit(1)
print(f'Setting BOINC client version to {version}...')
set_configure_ac(version)
set_version_h(version)
set_version_h_in(version)
set_version_log(version)
set_build_gradle(version)
set_installshield(version)
set_snapcraft(version)
set_snap_boinc_desktop(version)
if (os.name == 'posix' and sys.platform != 'darwin'):
print('Running autosetup...')
subprocess.call('./_autosetup -c', shell=True)
print('Done.')