mirror of
https://git.yoctoproject.org/poky
synced 2026-09-20 21:49:33 +02:00
NVD tracks certifi as certifi:certifi, so the default python:certifi vendor prefix never matches and its CVEs are not evaluated at all. Use the exact vendor:product pair. For scarthgap, python3-certifi is 2024.2.2. CVE-2024-39689 affects certifi versions before 2024.7.4, but this recipe already carries CVE-2024-39689.patch. With this mapping, cve-check can evaluate that existing backport against the correct NVD product instead of missing the CVE mapping. Note: Original commit was for python3-certifi_2026.2.25.bb. This is adjusted for scarthgap where recipe version is python3-certifi_2024.2.2.bb. (From OE-Core rev: e6773f4c819544eae93f3efa7d2101b448db4ebb) Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 26c49743ec431a3cc39803664eec8851be75756e) Signed-off-by: Himanshu Jadon <hjadon@cisco.com> Signed-off-by: Fabien Thomas <fabien.thomas@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev>
22 lines
752 B
BlitzBasic
22 lines
752 B
BlitzBasic
SUMMARY = "Python package for providing Mozilla's CA Bundle."
|
|
DESCRIPTION = "This installable Python package contains a CA Bundle that you can reference in your \
|
|
Python code. This is useful for verifying HTTP requests, for example. This is the same CA Bundle \
|
|
which ships with the Requests codebase, and is derived from Mozilla Firefox's canonical set."
|
|
HOMEPAGE = " http://certifi.io/"
|
|
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=11618cb6a975948679286b1211bd573c"
|
|
|
|
SRC_URI += "file://CVE-2024-39689.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"
|
|
|
|
CVE_PRODUCT = "certifi:certifi"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
RDEPENDS:${PN} += "python3-io"
|