diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-03-27 22:29:55 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-03-28 11:19:40 +0000 |
| commit | 1c3020f173702d3415c157774711c69ffcf880e7 (patch) | |
| tree | 3b373044837eb9807962c2bf50c7e3f8074345f9 /meta/recipes-core/expat/expat_2.7.1.bb | |
| parent | b3c21a23ad3a3b8e888bca02c68d8368762e55b3 (diff) | |
| download | poky-1c3020f173702d3415c157774711c69ffcf880e7.tar.gz | |
expat: Upgrade 2.7.0 -> 2.7.1
Includes a fix for a regression from the fix for CVE-2024-8176.
License-Update: Copyright years change only
(From OE-Core rev: 10b8ac71d5f3cfe4a36a5ad260ac4ec77459268f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/expat/expat_2.7.1.bb')
| -rw-r--r-- | meta/recipes-core/expat/expat_2.7.1.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-core/expat/expat_2.7.1.bb b/meta/recipes-core/expat/expat_2.7.1.bb new file mode 100644 index 0000000000..2da1532922 --- /dev/null +++ b/meta/recipes-core/expat/expat_2.7.1.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | SUMMARY = "A stream-oriented XML parser library" | ||
| 2 | DESCRIPTION = "Expat is an XML parser library written in C. It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document (like start tags)" | ||
| 3 | HOMEPAGE = "https://github.com/libexpat/libexpat" | ||
| 4 | SECTION = "libs" | ||
| 5 | LICENSE = "MIT" | ||
| 6 | |||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=f4fedd6116da0e171f7cb4d2923d7ac2" | ||
| 8 | |||
| 9 | VERSION_TAG = "${@d.getVar('PV').replace('.', '_')}" | ||
| 10 | |||
| 11 | SRC_URI = "${GITHUB_BASE_URI}/download/R_${VERSION_TAG}/expat-${PV}.tar.bz2 \ | ||
| 12 | file://run-ptest \ | ||
| 13 | " | ||
| 14 | |||
| 15 | GITHUB_BASE_URI = "https://github.com/libexpat/libexpat/releases/" | ||
| 16 | UPSTREAM_CHECK_REGEX = "releases/tag/R_(?P<pver>.+)" | ||
| 17 | |||
| 18 | SRC_URI[sha256sum] = "45c98ae1e9b5127325d25186cf8c511fa814078e9efeae7987a574b482b79b3d" | ||
| 19 | |||
| 20 | EXTRA_OECMAKE:class-native += "-DEXPAT_BUILD_DOCS=OFF" | ||
| 21 | |||
| 22 | RDEPENDS:${PN}-ptest += "bash" | ||
| 23 | |||
| 24 | inherit cmake lib_package ptest github-releases | ||
| 25 | |||
| 26 | do_install_ptest:class-target() { | ||
| 27 | install -m 755 ${B}/tests/runtests* ${D}${PTEST_PATH} | ||
| 28 | install -m 755 ${B}/tests/benchmark/benchmark ${D}${PTEST_PATH} | ||
| 29 | } | ||
| 30 | |||
| 31 | BBCLASSEXTEND += "native nativesdk" | ||
| 32 | |||
| 33 | CVE_PRODUCT = "expat libexpat" | ||
