From: Alexander Kanavin Date: Wed, 27 May 2026 17:35:46 +0000 (+0200) Subject: libslirp: fix upstream version check X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a60e5db4460cd8ec99b43d8f2ff733ba509c373;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git libslirp: fix upstream version check The regex excludes bogus old yyyymmdd tags which sort higher than real versions. Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-connectivity/slirp/libslirp_4.9.1.bb b/meta/recipes-connectivity/slirp/libslirp_4.9.1.bb index 9f7005d709..50577fd4ae 100644 --- a/meta/recipes-connectivity/slirp/libslirp_4.9.1.bb +++ b/meta/recipes-connectivity/slirp/libslirp_4.9.1.bb @@ -6,6 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=bca0186b14e6b05e338e729f106db727" SRC_URI = "git://gitlab.freedesktop.org/slirp/libslirp.git;protocol=https;branch=master" SRCREV = "9c744e1e52aa0d9646ed91d789d588696292c21e" +UPSTREAM_CHECK_GITTAGREGEX = "v(?P\d+(\.\d+)+)" DEPENDS = "glib-2.0"