diff options
| author | Jason Schonberg <schonm@gmail.com> | 2025-12-12 22:04:30 -0500 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-12-12 22:27:45 -0800 |
| commit | 996768e0800a008e06d6c8d305f443198d4df847 (patch) | |
| tree | 1dd4d01d49c1b711e5a8508840a6b3406ec1b625 /meta-oe/recipes-support/c-ares/c-ares_1.34.6.bb | |
| parent | 7781c0e662efd49813ecc1a0562217d37c097a11 (diff) | |
| download | meta-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.bb | 30 |
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. | ||
| 2 | SUMMARY = "c-ares is a C library that resolves names asynchronously." | ||
| 3 | HOMEPAGE = "https://c-ares.org/" | ||
| 4 | SECTION = "libs" | ||
| 5 | LICENSE = "MIT" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=d3e72a10e08191f2ca1be3f3228d78f3" | ||
| 7 | |||
| 8 | SRC_URI = "https://github.com/c-ares/c-ares/releases/download/v${PV}/${BPN}-${PV}.tar.gz \ | ||
| 9 | file://run-ptest" | ||
| 10 | SRC_URI[sha256sum] = "912dd7cc3b3e8a79c52fd7fb9c0f4ecf0aaa73e45efda880266a2d6e26b84ef5" | ||
| 11 | |||
| 12 | PACKAGECONFIG ?= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}" | ||
| 13 | PACKAGECONFIG[manpages] = "" | ||
| 14 | PACKAGECONFIG[tests] = "-DCARES_BUILD_TESTS=ON,-DCARES_BUILD_TESTS=OFF,googletest" | ||
| 15 | |||
| 16 | inherit cmake manpages pkgconfig ptest github-releases | ||
| 17 | |||
| 18 | EXTRA_OECMAKE = "-DCARES_STATIC=${@ 'ON' if d.getVar('DISABLE_STATIC') == '' else 'OFF' }" | ||
| 19 | |||
| 20 | do_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 | |||
| 26 | PACKAGE_BEFORE_PN = "${PN}-utils" | ||
| 27 | |||
| 28 | FILES:${PN}-utils = "${bindir}" | ||
| 29 | |||
| 30 | BBCLASSEXTEND = "native nativesdk" | ||
