b5ac4b329f
python-crossbar selects python-msgpack which selects msgpack, which depends on C++ and 4-byte __sync intrinsics. But python-crossbar does not have the dependencies propagated. Fixes: http://autobuild.buildroot.org/results/80f58b7264139dd82c690cb8aae97349aa412539/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
config BR2_PACKAGE_PYTHON_CROSSBAR
|
|
bool "python-crossbar"
|
|
# All the following dependencies are runtime dependencies
|
|
select BR2_PACKAGE_PYTHON_AUTOBAHN
|
|
select BR2_PACKAGE_PYTHON_CBOR
|
|
select BR2_PACKAGE_PYTHON_CLICK
|
|
select BR2_PACKAGE_PYTHON_PYCPARSER
|
|
select BR2_PACKAGE_PYTHON_CRYPTOGRAPHY
|
|
select BR2_PACKAGE_PYTHON_JINJA2
|
|
select BR2_PACKAGE_PYTHON_LMDB
|
|
select BR2_PACKAGE_PYTHON_MISTUNE
|
|
select BR2_PACKAGE_PYTHON_MSGPACK
|
|
select BR2_PACKAGE_PYTHON_NETADDR
|
|
select BR2_PACKAGE_PYTHON_PSUTIL
|
|
select BR2_PACKAGE_PYTHON_PYASN
|
|
select BR2_PACKAGE_PYTHON_PYASN_MODULES
|
|
select BR2_PACKAGE_PYTHON_PYGMENTS
|
|
select BR2_PACKAGE_PYTHON_PYINOTIFY
|
|
select BR2_PACKAGE_PYTHON_PYNACL
|
|
select BR2_PACKAGE_PYTHON_PYOPENSSL
|
|
select BR2_PACKAGE_PYTHON_PYTRIE
|
|
select BR2_PACKAGE_PYTHON_PYYAML
|
|
select BR2_PACKAGE_PYTHON_SETUPTOOLS
|
|
select BR2_PACKAGE_PYTHON_SERVICE_IDENTITY
|
|
select BR2_PACKAGE_PYTHON_SETPROCTITLE
|
|
select BR2_PACKAGE_PYTHON_SETUPTOOLS
|
|
select BR2_PACKAGE_PYTHON_SHUTILWHICH if BR2_PACKAGE_PYTHON
|
|
select BR2_PACKAGE_PYTHON_TREQ
|
|
select BR2_PACKAGE_PYTHON_TWISTED
|
|
select BR2_PACKAGE_PYTHON_UJSON
|
|
select BR2_PACKAGE_PYTHON_WSACCEL
|
|
depends on BR2_INSTALL_LIBSTDCPP # python-msgpack -> msgpack
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # python-msgpack -> msgpack
|
|
help
|
|
Crossbar.io is an open-source WAMP application router that
|
|
allows to build advanced applications from loosely-coupled
|
|
components that can talk in real-time with each other.
|
|
|
|
https://pypi.python.org/pypi/crossbar
|
|
|
|
comment "python-crossbar needs a toolchain w/ C++"
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|