All of lore.kernel.org
 help / color / mirror / Atom feed
* [yocto-autobuilder-helper][PATCH] scripts/release-parser: remove poky repo add wrynose branch
@ 2026-02-11 23:15 Michael Halstead
  2026-02-12  8:18 ` [yocto-patches] " Mathieu Dubois-Briand
  2026-02-12  8:19 ` Antonin Godard
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Halstead @ 2026-02-11 23:15 UTC (permalink / raw)
  To: yocto-patches

Remove references to the deprecated poky repository. Use meta-yocto for
tag data instead. Update to include the 6.0 branch.

Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
---
 scripts/release-parser.py | 12 ++++++------
 scripts/run-gitstats      |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/scripts/release-parser.py b/scripts/release-parser.py
index 21a6d57..079bada 100755
--- a/scripts/release-parser.py
+++ b/scripts/release-parser.py
@@ -10,7 +10,7 @@ from collections import defaultdict
 import datetime
 import semver

-GIT_REPO = "~/git/mirror/poky"
+GIT_REPO = "~/git/mirror/meta-yocto"

 repo = Repo(GIT_REPO)

@@ -66,7 +66,7 @@ def get_git_tags():
         if (
             tags[-1].commit.committed_datetime
             >= repo.commit(
-                "73f103bf9b2cdf985464dc53bf4f1cfd71d4531f"
+                "7e35b0bea7f052d38768c4df655065dc43c691b8"
             ).committed_datetime
         ):
             download =
"https://downloads.yoctoproject.org/releases/yocto/{}".format(
@@ -83,8 +83,8 @@ def get_git_tags():
             status = "LTS until Apr. 2026"
         if branch == "yocto-5.0":
             status = "LTS until Apr. 2028"
-        if branch == "yocto-5.2":
-            status = "Stable Release until Nov 2025"
+        if branch == "yocto-5.3":
+            status = "Stable Release until May 2026"

         # Create a dictionary for the series entry
         tag_dict = {
@@ -108,10 +108,10 @@ tags = sorted(get_git_tags(), key=lambda x:
x["original_release_date"], reverse=

 tags.append(
     {
-        "series_version": "5.3",
+        "series_version": "6.0",
         "original_release_date": "",
         "latest_release_date": "",
-        "release_codename": "Whinlatter",
+        "release_codename": "Wrynose",
         "latest_tag": "",
         "releases" : list(e.name for e in filter(lambda e:
e.name.startswith("5.3"), repo.tags)),
         "status": "Active Development",
diff --git a/scripts/run-gitstats b/scripts/run-gitstats
index 5009122..05b13d0 100755
--- a/scripts/run-gitstats
+++ b/scripts/run-gitstats
@@ -17,7 +17,7 @@ dest=${DEST:-docs@docs.yoctoproject.org:dashboard/gitstats}

 cd $builddir
 mkdir gitstats
-gitstats ~/git/mirror/poky $builddir/gitstats/poky > /dev/null
+gitstats ~/git/mirror/meta-yocto $builddir/gitstats/meta-yocto > /dev/null
 gitstats ~/git/mirror/oecore $builddir/gitstats/oecore > /dev/null
 gitstats ~/git/mirror/bitbake $builddir/gitstats/bitbake > /dev/null
 gitstats ~/git/mirror/meta-openembedded
$builddir/gitstats/meta-openembedded > /dev/null
-- 
2.52.0

-- 
Michael Halstead
Linux Foundation / Yocto Project
Staff IT Engineer


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-02-12 17:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-11 23:15 [yocto-autobuilder-helper][PATCH] scripts/release-parser: remove poky repo add wrynose branch Michael Halstead
2026-02-12  8:18 ` [yocto-patches] " Mathieu Dubois-Briand
2026-02-12  8:19 ` Antonin Godard
2026-02-12 17:56   ` Michael Halstead

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.