-
Notifications
You must be signed in to change notification settings - Fork 19
/
gitversion.pri
226 lines (197 loc) · 8.55 KB
/
gitversion.pri
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# If no version info can be determined, VERSION (in LP3D_VERSION_INFO format) will be used
VERSION = 2.4.8
# Need to discard STDERR so get path to NULL device
win32 {
NULL_DEVICE = NUL # Windows doesn't have /dev/null but has NUL
} else {
NULL_DEVICE = /dev/null
}
GIT_DIR = undefined
# Default location of Git directory
exists($$PWD/.git) {
GIT_DIR = $$PWD/.git
message("~~~ GIT_DIR FOUND AT $$GIT_DIR ~~~")
}
# enable to Test
# GIT_DIR = undefined
equals(GIT_DIR, undefined) {
OPEN_BUILD_SERVICE = $$(OBS)
contains(OPEN_BUILD_SERVICE, true) {
GIT_DIR_ENV = OBS
} else:contains(CONFIG, snp) {
GIT_DIR_ENV = SNAP
} else:contains(CONFIG, flp) {
GIT_DIR_ENV = FLATPAK
} else:contains(CONFIG, con) {
GIT_DIR_ENV = CONDA
} else {
GIT_DIR_ENV = UNDEFINED
}
VER_BASE_NAME = $$lower($$(LP3D_APP))
USE_GIT_VER_FILE = true
} else {
# Need to call git with manually specified paths to repository
GIT_BASE_COMMAND = git --git-dir $$shell_quote$$GIT_DIR --work-tree $$shell_quote$$PWD
# Trying to get version from git tag / revision
GIT_VERSION = $$system($$GIT_BASE_COMMAND describe --tags --match v* --long 2> $$NULL_DEVICE)
#message("~~~ DEBUG ~~ GIT_VERSION [RAW]: $$GIT_VERSION")
# Check if we do not have a valid version number (i.e. no version tag found)
isEmpty(GIT_VERSION) {
GIT_REVISION = 0
GIT_SHA = $$system($$GIT_BASE_COMMAND rev-parse --short HEAD 2> $$NULL_DEVICE)
GIT_COMMIT = $$system($$GIT_BASE_COMMAND rev-list --count HEAD 2> $$NULL_DEVICE)
GIT_VERSION = v$${VERSION}-$${GIT_REVISION}-$${GIT_SHA}
contains(CONFIG, snp): GIT_DIR_ENV = SNAP
contains(CONFIG, flp): GIT_DIR_ENV = FLATPAK
if(isEmpty(GIT_SHA)|equals(GIT_DIR_ENV, SNAP)|equals(GIT_DIR_ENV, FLATPAK)) {
USE_GIT_VER_FILE = true
} else {
VERSION_INFO_VAR = $$(LP3D_VERSION_INFO)
USING_GITHUB = $$(GITHUB)
# equals(USING_GITHUB, true): message("~~~ DEBUG ~~ NOTICE: USING GITHUB ~~~")
!isEmpty(VERSION_INFO_VAR) {
USE_VERSION_INFO_VAR = true
message("~~~ ALERT! GIT TAG NOT FOUND, USING LP3D_VERSION_INFO $$VERSION_INFO_VAR ~~~")
} else: equals(USING_GITHUB, true) {
USE_GIT_VER_FILE = true
message("~~~ ALERT! GIT TAG AND LP3D_VERSION_INFO NOT FOUND ~~~")
} else {
message("~~~ ALERT! GIT TAG AND LP3D_VERSION_INFO NOT FOUND, USING HEAD $$GIT_VERSION ~~~")
}
}
}
!equals(USE_GIT_VER_FILE, true):!equals(USE_VERSION_INFO_VAR, true) {
# Get commit count
GIT_COMMIT = $$system($$GIT_BASE_COMMAND rev-list --count HEAD 2> $$NULL_DEVICE)
isEmpty(GIT_COMMIT) {
GIT_COMMIT = 3723
message("~~~ ERROR! GIT_COMMIT NOT DEFINED, USING $$GIT_COMMIT ~~~")
}
# Append commit count
GIT_VERSION = g$$GIT_VERSION-$$GIT_COMMIT
# Token position 0 1 2 3 4 5 [6]
# Version string 2 4 3 1 410fdd7 2220 beta1
#message("~~~ DEBUG ~~ GIT_VERSION [RAW]: $$GIT_VERSION")
# Convert output from gv2.4.3-1-g410fdd7-2220 into "2.4.3.1.g410fdd7.2220"
GIT_VERSION ~= s/-/"."
GIT_VERSION ~= s/gv/""
#message(~~~ DEBUG ~~ GIT_VERSION [FORMATTED]: $$GIT_VERSION)
# Separate the build number into major, minor and service pack etc.
VER_MAJOR = $$section(GIT_VERSION, ., 0, 0)
VER_MINOR = $$section(GIT_VERSION, ., 1, 1)
VER_PATCH = $$section(GIT_VERSION, ., 2, 2)
VER_REVISION = $$section(GIT_VERSION, ., 3, 3)
VER_GIT_SHA = $$section(GIT_VERSION, ., 4, 4)
VER_COMMIT = $$section(GIT_VERSION, ., 5, 5)
# Capture and convert version suffix - everything after "_" if it exist
VER_PATCH_TEMP = $$section(GIT_VERSION, ., 2, 2)
VER_SUFFIX = $$section(VER_PATCH_TEMP, _, 1)
!isEmpty(VER_SUFFIX): \
VER_PATCH = $$section(VER_PATCH_TEMP, _, 0, 0)
# Strip leading 'g' from sha hash
VER_GIT_SHA ~= s/g/""
}
# Get the git repository name
GIT_BASE_NAME = $$system($$GIT_BASE_COMMAND rev-parse --show-toplevel 2> $$NULL_DEVICE)
VER_BASE_NAME = $$basename(GIT_BASE_NAME)
message("~~~ USING GIT_BASE_NAME $$GIT_BASE_NAME ~~~")
}
if (equals(USE_GIT_VER_FILE, true)|equals(USE_VERSION_INFO_VAR, true)) {
equals(USE_GIT_VER_FILE, true) {
GIT_VER_FILE = $$system_path($$PWD/builds/utilities/version.info)
exists($$GIT_VER_FILE) {
message("~~~ GIT_DIR [$$GIT_DIR_ENV, USING VERSION_INFO FILE] $$GIT_VER_FILE ~~~")
GIT_VERSION = $$cat($$GIT_VER_FILE, lines)
} else {
message("~~~ ERROR! $$GIT_DIR_ENV VERSION_INFO FILE $$GIT_VER_FILE NOT FOUND ~~~")
GIT_VERSION = $${VERSION}.0.3723.d7a131b34
message("~~~ GIT_DIR [$$GIT_DIR_ENV, USING VERSION] $$GIT_VERSION ~~~")
GIT_VERSION ~= s/\./" "
}
} else: equals(USE_VERSION_INFO_VAR, true) {
GIT_VERSION = $$VERSION_INFO_VAR
}
# Token position 0 1 2 3 4 5 [6]
# Version string 2 4 3 1 2220 f32acd5 beta1
#message("~~~ DEBUG ~~ GIT_VERSION [FILE]: $$GIT_VERSION")
# Separate version info into major, minor, patch, revision etc...
VER_MAJOR = $$section(GIT_VERSION, " ", 0, 0)
VER_MINOR = $$section(GIT_VERSION, " ", 1, 1)
VER_PATCH = $$section(GIT_VERSION, " ", 2, 2)
VER_REVISION = $$section(GIT_VERSION, " ", 3, 3)
VER_COMMIT = $$section(GIT_VERSION, " ", 4, 4)
!isEmpty(GIT_SHA): \
VER_GIT_SHA = $$GIT_SHA
else: \
VER_GIT_SHA = $$section(GIT_VERSION, " ", 5, 5)
VER_SUFFIX = $$section(GIT_VERSION, " ", 6, 6)
}
# Here we process the build date and time
win32 {
BUILD_DATE = $$system( date /t )
BUILD_TIME = $$system( echo %time% )
} else {
BUILD_DATE = $$system( date "+%d/%m/%Y/%H:%M:%S" )
BUILD_TIME = $$section(BUILD_DATE, /, 3, 3)
}
#message(~~~ DEBUG ~~ BUILD_DATE: $$BUILD_DATE) # output the current date
#message(~~~ DEBUG ~~ BUILD_TIME: $$BUILD_TIME) # output the current time
# Separate the date into 'DD/MM/YYYY' format
if (github_ci_win | azure_ci_win | appveyor_ci_win) {
message("~~~ BUILD DATE 'Day MM/DD/YYYY': $$BUILD_DATE ~~~")
BUILD_DATE ~= s/[\sA-Za-z\s]/""
DATE_MM = $$section(BUILD_DATE, /, 0, 0)
DATE_DD = $$section(BUILD_DATE, /, 1, 1)
DATE_YY = $$section(BUILD_DATE, /, 2, 2)
} else {
message("~~~ BUILD DATE 'DD/MM/YYYY': $$BUILD_DATE ~~~")
DATE_DD = $$section(BUILD_DATE, /, 0, 0)
DATE_DD = $$last(DATE_DD)
DATE_MM = $$section(BUILD_DATE, /, 1, 1)
DATE_YY = $$section(BUILD_DATE, /, 2, 2)
}
# Resolve Continuous Build version number
TRAVIS_BUILD = $$(TRAVIS_TAG)
APPVEYOR_BUILD = $$(APPVEYOR_REPO_TAG_NAME)
LOCAL_BUILD = $$system($$GIT_BASE_COMMAND describe --tags --abbrev=0 2> $$NULL_DEVICE)
contains(TRAVIS_BUILD,continuous) {
BUILD_TYPE = $$TRAVIS_BUILD
} else:contains(APPVEYOR_BUILD,continuous) {
BUILD_TYPE = $$APPVEYOR_BUILD
} else:contains(LOCAL_BUILD,continuous) {
BUILD_TYPE = $$LOCAL_BUILD
}
# C preprocessor DEFINES passed to application
contains(BUILD_TYPE,continuous) {
DEFINES += LP3D_CONTINUOUS_BUILD
}
if (contains(VER_BASE_NAME, $$lower("lpub3d-ci"))|contains(VER_BASE_NAME, $$lower("lpub3dnext"))) {
contains(VER_BASE_NAME, $$lower("lpub3dnext")) {
message("~~~ USING NEXT DEVEL BUILD VER_BASE_NAME $$VER_BASE_NAME ~~~")
DEFINES += LP3D_NEXT_BUILD
} else {
message("~~~ USING CI DEVEL BUILD VER_BASE_NAME $$VER_BASE_NAME ~~~")
DEFINES += LP3D_DEVOPS_BUILD
}
} else {
message("~~~ USING RELEASE BUILD VER_BASE_NAME $$VER_BASE_NAME ~~~")
}
DEFINES += VER_MAJOR=\\\"$$VER_MAJOR\\\"
DEFINES += VER_MINOR=\\\"$$VER_MINOR\\\"
DEFINES += VER_PATCH=\\\"$$VER_PATCH\\\"
DEFINES += BUILD_TIME=\\\"$$BUILD_TIME\\\"
DEFINES += DATE_YY=\\\"$$DATE_YY\\\"
DEFINES += DATE_MM=\\\"$$DATE_MM\\\"
DEFINES += DATE_DD=\\\"$$DATE_DD\\\"
DEFINES += VER_COMMIT_STR=\\\"$$VER_COMMIT\\\"
DEFINES += VER_GIT_SHA_STR=\\\"$$VER_GIT_SHA\\\"
DEFINES += VER_REVISION_STR=\\\"$$VER_REVISION\\\"
LP3D_VERSION_INFO = $$VER_MAJOR $$VER_MINOR $$VER_PATCH $$VER_REVISION $$VER_COMMIT $$VER_GIT_SHA
!isEmpty(VER_SUFFIX) {
DEFINES += VER_SUFFIX=\\\"$$VER_SUFFIX\\\"
LP3D_VERSION_INFO += $$VER_SUFFIX
}
# Now we are ready to pass parsed version to Qt
VERSION = $$VER_MAJOR"."$$VER_MINOR"."$$VER_PATCH"."$$VER_REVISION
# Display the complete version string
message(~~~ LP3D_VERSION_INFO: $$LP3D_VERSION_INFO $$upper($$BUILD_TYPE) ~~~)