mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-03 14:13:54 -09:00
Migrate from setuptools to hatch build backend.
License hash changed due to formatting changes:
83d985db64
Drop no longer supported AUTOBAHN_STRIP_XBR env variable.
Add host-python-setuptools build dependency.
Add new python-base58 encryption dependency.
Add new python-ecdsa encryption dependency.
Serialization dependencies moved to mandatory dependencies.
Propagate new C++ reverse dependency.
Add new python-brotli compression dependency.
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
55 lines
2.0 KiB
Plaintext
55 lines
2.0 KiB
Plaintext
config BR2_PACKAGE_PYTHON_AUTOBAHN
|
|
bool "python-autobahn"
|
|
depends on BR2_INSTALL_LIBSTDCPP # python-ujson
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-cryptography
|
|
select BR2_PACKAGE_PYTHON_CBOR2 # runtime
|
|
select BR2_PACKAGE_PYTHON_CFFI # runtime
|
|
select BR2_PACKAGE_PYTHON_CRYPTOGRAPHY # runtime
|
|
select BR2_PACKAGE_PYTHON_HYPERLINK # runtime
|
|
select BR2_PACKAGE_PYTHON_MSGPACK # runtime
|
|
select BR2_PACKAGE_PYTHON_TXAIO # runtime
|
|
select BR2_PACKAGE_PYTHON_UBJSON # runtime
|
|
select BR2_PACKAGE_PYTHON_UJSON # runtime
|
|
help
|
|
WebSocket client and server library, WAMP real-time
|
|
framework.
|
|
|
|
https://pypi.python.org/pypi/autobahn
|
|
|
|
if BR2_PACKAGE_PYTHON_AUTOBAHN
|
|
|
|
config BR2_PACKAGE_PYTHON_AUTOBAHN_COMPRESS
|
|
bool "Non-standard WebSocket compression support"
|
|
depends on BR2_INSTALL_LIBSTDCPP # python-snappy -> snappy
|
|
select BR2_PACKAGE_PYTHON_BROTLI # runtime
|
|
select BR2_PACKAGE_PYTHON_SNAPPY # runtime
|
|
|
|
config BR2_PACKAGE_PYTHON_AUTOBAHN_ENCRYPTION
|
|
bool "TLS and WAMP-cryptosign encryption/authentication support"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-pyopenssl -> python-cryptography
|
|
select BR2_PACKAGE_PYTHON_BASE58 # runtime
|
|
select BR2_PACKAGE_PYTHON_ECDSA # runtime
|
|
select BR2_PACKAGE_PYTHON_PYNACL # runtime
|
|
select BR2_PACKAGE_PYTHON_PYOPENSSL # runtime
|
|
select BR2_PACKAGE_PYTHON_PYTRIE # runtime
|
|
select BR2_PACKAGE_PYTHON_QRCODE # runtime
|
|
select BR2_PACKAGE_PYTHON_QRCODE_SVG # runtime
|
|
select BR2_PACKAGE_PYTHON_SERVICE_IDENTITY # runtime
|
|
|
|
config BR2_PACKAGE_PYTHON_AUTOBAHN_SCRAM
|
|
bool "WAMP-SCRAM authentication support"
|
|
select BR2_PACKAGE_PYTHON_ARGON2_CFFI # runtime
|
|
select BR2_PACKAGE_PYTHON_PASSLIB # runtime
|
|
|
|
config BR2_PACKAGE_PYTHON_AUTOBAHN_TWISTED
|
|
bool "Twisted support"
|
|
select BR2_PACKAGE_PYTHON_ATTRS # runtime
|
|
select BR2_PACKAGE_PYTHON_TWISTED # runtime
|
|
select BR2_PACKAGE_PYTHON_ZOPE_INTERFACE # runtime
|
|
|
|
endif
|
|
|
|
comment "python-autobahn needs a toolchain w/ C++"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|