summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnkur Tyagi <ankur.tyagi85@gmail.com>2025-11-19 23:53:27 +1300
committerKhem Raj <raj.khem@gmail.com>2025-11-19 09:41:30 -0800
commit99624f05f0c246c202121213cc6ecb67f476f8f3 (patch)
treeba31b553b40c3f0a1cc246d2e8a7b65b4ff5cc37
parent5039f2ebf10d934baa9412ee4183d092bc68b438 (diff)
downloadmeta-openembedded-99624f05f0c246c202121213cc6ecb67f476f8f3.tar.gz
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 <ankur.tyagi85@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-extended/tmux/tmux_3.5.bb2
1 files changed, 1 insertions, 1 deletions
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
11SRC_URI[sha256sum] = "2fe01942e7e7d93f524a22f2c883822c06bc258a4d61dba4b407353d7081950f" 11SRC_URI[sha256sum] = "2fe01942e7e7d93f524a22f2c883822c06bc258a4d61dba4b407353d7081950f"
12 12
13UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases" 13UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases"
14UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)" 14UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+[a-z]?)"
15 15
16inherit autotools pkgconfig 16inherit autotools pkgconfig
17 17