1config 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 17 https://github.com/itkach/mwscrape2slob 18 19comment "python-mwscrape2slob needs a toolchain w/ C++, gcc >= 4.9, host gcc >= 4.9" 20 depends on BR2_PACKAGE_PYTHON3 && !BR2_BINFMT_FLAT 21 depends on !BR2_INSTALL_LIBSTDCPP || \ 22 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \ 23 !BR2_HOST_GCC_AT_LEAST_4_9 24