mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-13 01:34:00 -09:00
The "cpe:2.3:a:agronholm:cbor2:*:*:*:*:*:python:*:*" is a valid CPE
[1][2] for this package.
[1] https://nvd.nist.gov/products/cpe/detail/C9CB66BA-6D92-430D-B3A8-D20C43E0655C
[2] https://nvd.nist.gov/vuln/detail/CVE-2026-26209
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 140d618567)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# python-cbor2
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_CBOR2_VERSION = 5.6.5
|
|
PYTHON_CBOR2_SOURCE = cbor2-$(PYTHON_CBOR2_VERSION).tar.gz
|
|
PYTHON_CBOR2_SITE = https://files.pythonhosted.org/packages/e4/aa/ba55b47d51d27911981a18743b4d3cebfabccbb0598c09801b734cec4184
|
|
PYTHON_CBOR2_SETUP_TYPE = setuptools
|
|
PYTHON_CBOR2_LICENSE = MIT
|
|
PYTHON_CBOR2_LICENSE_FILES = LICENSE.txt
|
|
PYTHON_CBOR2_CPE_ID_VENDOR = agronholm
|
|
PYTHON_CBOR2_CPE_ID_PRODUCT = cbor2
|
|
PYTHON_CBOR2_DEPENDENCIES = host-python-setuptools-scm
|
|
PYTHON_CBOR2_ENV = CBOR2_BUILD_C_EXTENSION=1
|
|
HOST_PYTHON_CBOR2_DEPENDENCIES = host-python-setuptools-scm
|
|
HOST_PYTHON_CBOR2_ENV = CBOR2_BUILD_C_EXTENSION=0
|
|
|
|
# 0001-CVE-2025-64076.patch
|
|
PYTHON_CBOR2_IGNORE_CVES += CVE-2025-64076
|
|
|
|
# 0002-CVE-2025-68131.patch
|
|
PYTHON_CBOR2_IGNORE_CVES += CVE-2025-68131
|
|
|
|
# 0003-CVE-2026-26209.patch 0004-CVE-2026-26209.patch
|
|
PYTHON_CBOR2_IGNORE_CVES += CVE-2026-26209
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|