From: Alexander Kanavin Date: Wed, 18 Jun 2025 08:56:53 +0000 (+0200) Subject: gst-examples: correct upstream version check X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=094cbd4f6a9f57eb146207355a921eaae44012ab;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git gst-examples: correct upstream version check If start-of-line is not enforced, then bogus tag 'gstreamer-sharp-1.13.0.1' would match as 13.0.1. Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-multimedia/gstreamer/gst-examples_1.26.2.bb b/meta/recipes-multimedia/gstreamer/gst-examples_1.26.2.bb index bc043f81c79..8974b9ac0ba 100644 --- a/meta/recipes-multimedia/gstreamer/gst-examples_1.26.2.bb +++ b/meta/recipes-multimedia/gstreamer/gst-examples_1.26.2.bb @@ -18,7 +18,7 @@ S = "${WORKDIR}/git/subprojects/gst-examples" inherit meson pkgconfig features_check -UPSTREAM_CHECK_GITTAGREGEX = "(?P\d+\.(\d*[02468])+(\.\d+)+)" +UPSTREAM_CHECK_GITTAGREGEX = "^(?P\d+\.(\d*[02468])+(\.\d+)+)" ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"