mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
https://cryptography.io/en/47.0.0/changelog/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
33 lines
1.3 KiB
Makefile
33 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# python-cryptography
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_CRYPTOGRAPHY_VERSION = 47.0.0
|
|
PYTHON_CRYPTOGRAPHY_SOURCE_PYPI = cryptography-$(PYTHON_CRYPTOGRAPHY_VERSION).tar.gz
|
|
PYTHON_CRYPTOGRAPHY_SITE_PYPI = https://files.pythonhosted.org/packages/ef/b2/7ffa7fe8207a8c42147ffe70c3e360b228160c1d85dc3faff16aaa3244c0
|
|
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))
|