mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Python CFFI bindings for the libyang YANG library, providing the 'libyang' Python module for YANG data modeling operations. This package is used by higher-level tooling such as python-sysrepo. https://github.com/CESNET/libyang-python Signed-off-by: Vincent Jardin <vjardin@free.fr> Signed-off-by: Vincent Cruz <mooz@blockos.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
645 B
Plaintext
19 lines
645 B
Plaintext
config BR2_PACKAGE_PYTHON_LIBYANG
|
|
bool "python-libyang"
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libyang
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libyang
|
|
depends on !BR2_STATIC_LIBS # libyang
|
|
select BR2_PACKAGE_LIBYANG
|
|
select BR2_PACKAGE_PYTHON_CFFI # runtime
|
|
help
|
|
Python CFFI bindings for the libyang YANG library.
|
|
|
|
This package provides the 'libyang' Python module, used by
|
|
higher-level tooling such as python-sysrepo.
|
|
|
|
https://github.com/CESNET/libyang-python
|
|
|
|
comment "python-libyang needs a toolchain w/ threads, dynamic library"
|
|
depends on !BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|