1config BR2_PACKAGE_PYTHON_SLOB 2 bool "python-slob" 3 depends on !BR2_BINFMT_FLAT # python-pyicu -> icu 4 depends on BR2_HOST_GCC_AT_LEAST_4_9 # python-pyicu -> icu 5 depends on BR2_INSTALL_LIBSTDCPP # python-pyicu -> icu 6 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # python-pyicu -> icu 7 select BR2_PACKAGE_PYTHON_PYICU # runtime 8 # although optional, it is used as default compression 9 select BR2_PACKAGE_PYTHON3_XZ # runtime 10 help 11 slob.py is a reference implementation of slob format reader 12 and writer. 13 14 https://github.com/itkach/slob 15 16comment "python-slob needs a toolchain w/ C++, gcc >= 4.9, host gcc >= 4.9" 17 depends on !BR2_INSTALL_LIBSTDCPP || \ 18 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \ 19 !BR2_HOST_GCC_AT_LEAST_4_9 20