summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Marko <peter.marko@siemens.com>2026-03-17 00:06:07 +0100
committerKhem Raj <raj.khem@gmail.com>2026-03-18 14:33:30 -0700
commita28c68436e5a7e78f2b76116f638adbbe709549f (patch)
tree7285a1a58a0e8f0feb84cbb6192a5772575a160b
parent0a364d9c823515350d0dec35451da3d66c4edabf (diff)
downloadmeta-openembedded-a28c68436e5a7e78f2b76116f638adbbe709549f.tar.gz
squid: fix UPSTREAM_CHECK_REGEX
Squid tags are in form SQUID_<MAJ>_<MIN>. This can also be seen in SRC_URI download link. This change will make "devtool latest-version squid" correctly show 7.5 Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-networking/recipes-daemons/squid/squid_7.4.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-daemons/squid/squid_7.4.bb b/meta-networking/recipes-daemons/squid/squid_7.4.bb
index 6333d1e0f2..3ba1895c45 100644
--- a/meta-networking/recipes-daemons/squid/squid_7.4.bb
+++ b/meta-networking/recipes-daemons/squid/squid_7.4.bb
@@ -29,7 +29,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
29 " 29 "
30 30
31UPSTREAM_CHECK_URI = "https://github.com/squid-cache/${BPN}/releases/" 31UPSTREAM_CHECK_URI = "https://github.com/squid-cache/${BPN}/releases/"
32UPSTREAM_CHECK_REGEX = "v?(?P<pver>\d+(\.\d+)+)" 32UPSTREAM_CHECK_REGEX = "SQUID_(?P<pver>\d+(_\d+)+)"
33 33
34DEPENDS = "libtool" 34DEPENDS = "libtool"
35 35