Config.in 700 B

12345678910111213141516171819
  1. config BR2_PACKAGE_PYTHON_SLOB
  2. bool "python-slob"
  3. depends on !BR2_BINFMT_FLAT # python-pyicu -> icu
  4. depends on BR2_INSTALL_LIBSTDCPP # python-pyicu -> icu
  5. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # python-pyicu -> icu
  6. depends on BR2_PACKAGE_PYTHON3
  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. https://github.com/itkach/slob
  14. comment "python-slob needs a toolchain w/ C++, gcc >= 4.8"
  15. depends on BR2_PACKAGE_PYTHON3 && !BR2_BINFMT_FLAT
  16. depends on !BR2_INSTALL_LIBSTDCPP || \
  17. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8