mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
Drop PYTHON_CRYPTOGRAPHY_CARGO_MANIFEST_PATH as package now provides manifest in default path. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
33 lines
1.3 KiB
Makefile
33 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# python-cryptography
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_CRYPTOGRAPHY_VERSION = 46.0.3
|
|
PYTHON_CRYPTOGRAPHY_SOURCE_PYPI = cryptography-$(PYTHON_CRYPTOGRAPHY_VERSION).tar.gz
|
|
PYTHON_CRYPTOGRAPHY_SITE_PYPI = https://files.pythonhosted.org/packages/9f/33/c00162f49c0e2fe8064a62cb92b93e50c74a72bc370ab92f86112b33ff62
|
|
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))
|