summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/c-ares/c-ares_1.34.6.bb
diff options
context:
space:
mode:
authorJason Schonberg <schonm@gmail.com>2025-12-12 22:04:30 -0500
committerKhem Raj <raj.khem@gmail.com>2025-12-12 22:27:45 -0800
commit996768e0800a008e06d6c8d305f443198d4df847 (patch)
tree1dd4d01d49c1b711e5a8508840a6b3406ec1b625 /meta-oe/recipes-support/c-ares/c-ares_1.34.6.bb
parent7781c0e662efd49813ecc1a0562217d37c097a11 (diff)
downloadmeta-openembedded-996768e0800a008e06d6c8d305f443198d4df847.tar.gz
c-ares: upgrade 1.34.5 -> 1.34.6
Drop memory leak patch which has already been included in this new version. The new version also includes a fix for CVE 2025-62408. Changelog: https://github.com/c-ares/c-ares/releases/tag/v1.34.6 Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/c-ares/c-ares_1.34.6.bb')
-rw-r--r--meta-oe/recipes-support/c-ares/c-ares_1.34.6.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/c-ares/c-ares_1.34.6.bb b/meta-oe/recipes-support/c-ares/c-ares_1.34.6.bb
new file mode 100644
index 0000000000..c9c54a9fa0
--- /dev/null
+++ b/meta-oe/recipes-support/c-ares/c-ares_1.34.6.bb
@@ -0,0 +1,30 @@
1# Copyright (c) 2012-2014 LG Electronics, Inc.
2SUMMARY = "c-ares is a C library that resolves names asynchronously."
3HOMEPAGE = "https://c-ares.org/"
4SECTION = "libs"
5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://LICENSE.md;md5=d3e72a10e08191f2ca1be3f3228d78f3"
7
8SRC_URI = "https://github.com/c-ares/c-ares/releases/download/v${PV}/${BPN}-${PV}.tar.gz \
9 file://run-ptest"
10SRC_URI[sha256sum] = "912dd7cc3b3e8a79c52fd7fb9c0f4ecf0aaa73e45efda880266a2d6e26b84ef5"
11
12PACKAGECONFIG ?= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}"
13PACKAGECONFIG[manpages] = ""
14PACKAGECONFIG[tests] = "-DCARES_BUILD_TESTS=ON,-DCARES_BUILD_TESTS=OFF,googletest"
15
16inherit cmake manpages pkgconfig ptest github-releases
17
18EXTRA_OECMAKE = "-DCARES_STATIC=${@ 'ON' if d.getVar('DISABLE_STATIC') == '' else 'OFF' }"
19
20do_install_ptest () {
21 install -d ${D}${PTEST_PATH}
22 install -m 0755 ${B}/bin/arestest ${D}${PTEST_PATH}
23 install -m 0755 ${UNPACKDIR}/run-ptest ${D}${PTEST_PATH}
24}
25
26PACKAGE_BEFORE_PN = "${PN}-utils"
27
28FILES:${PN}-utils = "${bindir}"
29
30BBCLASSEXTEND = "native nativesdk"