summaryrefslogtreecommitdiffstats
path: root/documentation/set_versions.py
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/set_versions.py')
-rwxr-xr-xdocumentation/set_versions.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/documentation/set_versions.py b/documentation/set_versions.py
index dec0780834..820bd64036 100755
--- a/documentation/set_versions.py
+++ b/documentation/set_versions.py
@@ -168,17 +168,29 @@ series = [k for k in release_series]
168previousseries = series[series.index(ourseries)+1:] or [""] 168previousseries = series[series.index(ourseries)+1:] or [""]
169lastlts = [k for k in previousseries if k in ltsseries] or "dunfell" 169lastlts = [k for k in previousseries if k in ltsseries] or "dunfell"
170 170
171latestreltag = subprocess.run(["git", "describe", "--abbrev=0", "--tags", "--match", "yocto-*"], capture_output=True, text=True).stdout
172latestreltag = latestreltag.strip()
173if latestreltag:
174 if latestreltag.startswith("yocto-"):
175 latesttag = latestreltag[6:]
176else:
177 # fallback on the calculated version
178 print("Did not find a tag with 'git describe', falling back to %s" % ourversion)
179 latestreltag = "yocto-" + ourversion
180 latesttag = ourversion
181
171print("Version calculated to be %s" % ourversion) 182print("Version calculated to be %s" % ourversion)
183print("Latest release tag found is %s" % latestreltag)
172print("Release series calculated to be %s" % ourseries) 184print("Release series calculated to be %s" % ourseries)
173 185
174replacements = { 186replacements = {
175 "DISTRO" : ourversion, 187 "DISTRO" : ourversion,
188 "DISTRO_LATEST_TAG": latesttag,
176 "DISTRO_NAME_NO_CAP" : ourseries, 189 "DISTRO_NAME_NO_CAP" : ourseries,
177 "DISTRO_NAME" : ourseries.capitalize(), 190 "DISTRO_NAME" : ourseries.capitalize(),
178 "DISTRO_NAME_NO_CAP_MINUS_ONE" : previousseries[0], 191 "DISTRO_NAME_NO_CAP_MINUS_ONE" : previousseries[0],
179 "DISTRO_NAME_NO_CAP_LTS" : lastlts[0], 192 "DISTRO_NAME_NO_CAP_LTS" : lastlts[0],
180 "YOCTO_DOC_VERSION" : ourversion, 193 "YOCTO_DOC_VERSION" : ourversion,
181 "DISTRO_REL_TAG" : "yocto-" + ourversion,
182 "DOCCONF_VERSION" : docconfver, 194 "DOCCONF_VERSION" : docconfver,
183 "BITBAKE_SERIES" : bitbakeversion, 195 "BITBAKE_SERIES" : bitbakeversion,
184} 196}
@@ -316,3 +328,5 @@ with open('releases.rst', 'w') as f:
316 if tag == release_series[series] or tag.startswith('%s.' % release_series[series]): 328 if tag == release_series[series] or tag.startswith('%s.' % release_series[series]):
317 f.write('- :yocto_docs:`%s Documentation </%s>`\n' % (tag, tag)) 329 f.write('- :yocto_docs:`%s Documentation </%s>`\n' % (tag, tag))
318 f.write('\n') 330 f.write('\n')
331
332