mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
Changelog: https://cryptography.io/en/46.0.7/changelog/ Fixes: https://www.cve.org/CVERecord?id=CVE-2026-34073 https://www.cve.org/CVERecord?id=CVE-2026-39892 Signed-off-by: Michael Nosthoff <buildroot@heine.tech> Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
33 lines
1.3 KiB
Makefile
33 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# python-cryptography
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_CRYPTOGRAPHY_VERSION = 46.0.7
|
|
PYTHON_CRYPTOGRAPHY_SOURCE_PYPI = cryptography-$(PYTHON_CRYPTOGRAPHY_VERSION).tar.gz
|
|
PYTHON_CRYPTOGRAPHY_SITE_PYPI = https://files.pythonhosted.org/packages/47/93/ac8f3d5ff04d54bc814e961a43ae5b0b146154c89c61b47bb07557679b18
|
|
PYTHON_CRYPTOGRAPHY_SITE = $(PYTHON_CRYPTOGRAPHY_SITE_PYPI)/$(PYTHON_CRYPTOGRAPHY_SOURCE_PYPI)?buildroot-path=filename
|
|
PYTHON_CRYPTOGRAPHY_SETUP_TYPE = maturin
|
|
PYTHON_CRYPTOGRAPHY_LICENSE = Apache-2.0 or BSD-3-Clause
|
|
PYTHON_CRYPTOGRAPHY_LICENSE_FILES = LICENSE LICENSE.APACHE LICENSE.BSD
|
|
PYTHON_CRYPTOGRAPHY_CPE_ID_VENDOR = cryptography.io
|
|
PYTHON_CRYPTOGRAPHY_CPE_ID_PRODUCT = cryptography
|
|
PYTHON_CRYPTOGRAPHY_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
host-python-cffi \
|
|
host-python-setuptools \
|
|
openssl
|
|
HOST_PYTHON_CRYPTOGRAPHY_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
host-python-cffi \
|
|
host-python-setuptools \
|
|
host-openssl
|
|
PYTHON_CRYPTOGRAPHY_ENV = OPENSSL_NO_VENDOR=1
|
|
HOST_PYTHON_CRYPTOGRAPHY_ENV = OPENSSL_NO_VENDOR=1
|
|
PYTHON_CRYPTOGRAPHY_BUILD_OPTS = --skip-dependency-check
|
|
HOST_PYTHON_CRYPTOGRAPHY_BUILD_OPTS = --skip-dependency-check
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|