From 99624f05f0c246c202121213cc6ecb67f476f8f3 Mon Sep 17 00:00:00 2001 From: Ankur Tyagi Date: Wed, 19 Nov 2025 23:53:27 +1300 Subject: [PATCH] tmux: update UPSTREAM_CHECK_REGEX Update UPSTREAM_CHECK_REGEX to check the correct latest stable verison. Before the patch: $ devtool latest-version tmux INFO: Current version: 3.5 INFO: Latest version: 3.5 After the patch: INFO: Current version: 3.5 INFO: Latest version: 3.5a Signed-off-by: Ankur Tyagi Signed-off-by: Khem Raj --- meta-oe/recipes-extended/tmux/tmux_3.5.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-extended/tmux/tmux_3.5.bb b/meta-oe/recipes-extended/tmux/tmux_3.5.bb index 33f709681d..c7c87eb4a1 100644 --- a/meta-oe/recipes-extended/tmux/tmux_3.5.bb +++ b/meta-oe/recipes-extended/tmux/tmux_3.5.bb @@ -11,7 +11,7 @@ SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.g SRC_URI[sha256sum] = "2fe01942e7e7d93f524a22f2c883822c06bc258a4d61dba4b407353d7081950f" UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases" -UPSTREAM_CHECK_REGEX = "(?P\d+(\.\d+)+)" +UPSTREAM_CHECK_REGEX = "(?P\d+(\.\d+)+[a-z]?)" inherit autotools pkgconfig