summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2025-11-09 21:40:28 +0800
committerKhem Raj <raj.khem@gmail.com>2025-11-09 06:52:51 -0800
commit5f756ae78028fedd698f0183989ee97d515db20d (patch)
treecaa2d715ce3713acd3b272089e29fd4944d8dd0f
parent25d14588ca87809316846c993124237fe0e7555e (diff)
downloadmeta-openembedded-5f756ae78028fedd698f0183989ee97d515db20d.tar.gz
ipset: add UPSTREAM_CHECK_URI
Add UPSTREAM_CHECK_URI and UPSTREAM_CHECK_REGEX to check the correct latest stable verison. Before the patch: $ devtool latest-version ipset INFO: Current version: 7.24 INFO: Latest version: After the patch: $ devtool latest-version ipset INFO: Current version: 7.24 INFO: Latest version: 7.24 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-networking/recipes-filter/ipset/ipset_7.24.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-networking/recipes-filter/ipset/ipset_7.24.bb b/meta-networking/recipes-filter/ipset/ipset_7.24.bb
index 15fffe6b9e..97c0d8b4d8 100644
--- a/meta-networking/recipes-filter/ipset/ipset_7.24.bb
+++ b/meta-networking/recipes-filter/ipset/ipset_7.24.bb
@@ -13,6 +13,9 @@ SRC_URI = "https://ipset.netfilter.org/${BP}.tar.bz2 \
13 file://0001-ipset-Define-portable-basename-function.patch" 13 file://0001-ipset-Define-portable-basename-function.patch"
14SRC_URI[sha256sum] = "fbe3424dff222c1cb5e5c34d38b64524b2217ce80226c14fdcbb13b29ea36112" 14SRC_URI[sha256sum] = "fbe3424dff222c1cb5e5c34d38b64524b2217ce80226c14fdcbb13b29ea36112"
15 15
16UPSTREAM_CHECK_URI = "https://ipset.netfilter.org/install.html"
17UPSTREAM_CHECK_REGEX = "ipset-(?P<pver>\d+(\.\d+)+).tar"
18
16inherit autotools pkgconfig module-base 19inherit autotools pkgconfig module-base
17 20
18EXTRA_OECONF += "-with-kbuild=${KBUILD_OUTPUT} --with-ksource=${STAGING_KERNEL_DIR}" 21EXTRA_OECONF += "-with-kbuild=${KBUILD_OUTPUT} --with-ksource=${STAGING_KERNEL_DIR}"