mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-07 08:03:57 -09:00
Dependency was made optional in 4.6.0 release here:
6058ab9dfe
python-can has a lot of optional dependencies, most of which are not
represented in buildroot. As msgpack is used for the virtual multicast
udp can interface[1], which does seem like a bit of a niche usecase,
just drop the mandatory dependency without introducing a user-visible
config option to enable it.
[1] https://python-can.readthedocs.io/en/4.0.0/interfaces/udp_multicast.html
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
603 B
Plaintext
23 lines
603 B
Plaintext
config BR2_PACKAGE_PYTHON_CAN
|
|
bool "python-can"
|
|
select BR2_PACKAGE_PYTHON3_SQLITE # runtime
|
|
select BR2_PACKAGE_PYTHON3_ZLIB # runtime
|
|
select BR2_PACKAGE_PYTHON_PACKAGING # runtime
|
|
select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
|
|
select BR2_PACKAGE_PYTHON_WRAPT # runtime
|
|
help
|
|
This module provides controller area network support for
|
|
Python.
|
|
|
|
https://github.com/hardbyte/python-can
|
|
|
|
if BR2_PACKAGE_PYTHON_CAN
|
|
|
|
config BR2_PACKAGE_PYTHON_CAN_VIEWER
|
|
bool "python-can-viewer"
|
|
select BR2_PACKAGE_PYTHON3_CURSES # runtime
|
|
help
|
|
Also install the viewer tool (requires ncurses).
|
|
|
|
endif
|