Config.in 998 B

1234567891011121314151617181920212223
  1. config BR2_PACKAGE_PYTHON_MWSCRAPE2SLOB
  2. bool "python-mwscrape2slob"
  3. depends on !BR2_BINFMT_FLAT # python-slob -> python-pyicu -> icu
  4. depends on BR2_HOST_GCC_AT_LEAST_4_9 # python-slob -> python-pyicu -> icu
  5. depends on BR2_INSTALL_LIBSTDCPP # python-slob -> python-pyicu -> icu
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # python-slob -> python-pyicu -> icu
  7. depends on BR2_PACKAGE_PYTHON3
  8. select BR2_PACKAGE_PYTHON_COUCHDB # runtime
  9. select BR2_PACKAGE_PYTHON_CSSSELECT # runtime
  10. select BR2_PACKAGE_PYTHON_CSSUTILS # runtime
  11. select BR2_PACKAGE_PYTHON_LXML # runtime
  12. select BR2_PACKAGE_PYTHON_SLOB # runtime
  13. help
  14. A tool to create slob with content from a MediaWiki CouchDB
  15. created by mwscrape.
  16. https://github.com/itkach/mwscrape2slob
  17. comment "python-mwscrape2slob 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