@@ -19,9 +19,12 @@ SUPPORTED_RELEASES = {
"yocto-5.0": "LTS until Apr. 2028",
"yocto-5.3": "Stable Release until May 2026",
}
+
CURRENT_ACTIVE_DEV_CODENAME = "Wrynose"
CURRENT_ACTIVE_DEV_VERSION = "6.0"
+CURRENT_ACTIVE_DEV_MAINTAINER = "Richard Purdie <richard.purdie@linuxfoundation.org>"
CURRENT_STABLE_BRANCH = "5.3"
+CURRENT_STABLE_MAINTAINER = "Yoann Congal <yoann.congal@smile.fr>"
repo = Repo(GIT_REPO)
@@ -89,6 +92,7 @@ def get_git_tags():
release_notes = ""
status = SUPPORTED_RELEASES.get(branch, "EOL")
+ maintainer = CURRENT_STABLE_MAINTAINER if branch in SUPPORTED_RELEASES else "N/A"
# Create a dictionary for the series entry
tag_dict = {
@@ -101,6 +105,7 @@ def get_git_tags():
"status": status,
"download": download,
"release_notes": release_notes,
+ "maintainer": maintainer
}
tag_list.append(tag_dict)
@@ -120,6 +125,7 @@ tags.append(
"releases" : list(e.name for e in filter(lambda e: e.name.startswith(CURRENT_ACTIVE_DEV_VERSION), repo.tags)),
"status": "Active Development",
"download": "",
+ "maintainer": CURRENT_ACTIVE_DEV_MAINTAINER,
}
)