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 depends on BR2_PACKAGE_PYTHON3 8 select BR2_PACKAGE_PYTHON_PYICU # runtime 9 # although optional, it is used as default compression 10 select BR2_PACKAGE_PYTHON3_XZ # runtime 11 help 12 slob.py is a reference implementation of slob format reader 13 and writer. 14 15 https://github.com/itkach/slob 16 17comment "python-slob needs a toolchain w/ C++, gcc >= 4.9, host gcc >= 4.9" 18 depends on BR2_PACKAGE_PYTHON3 && !BR2_BINFMT_FLAT 19 depends on !BR2_INSTALL_LIBSTDCPP || \ 20 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \ 21 !BR2_HOST_GCC_AT_LEAST_4_9 22