mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Buildroot commit dcee99507c bumped icu
from version 73-2 to 77-1.
Upstream raised the minimum C++ requirement to C++17 in version 75-1:
https://github.com/unicode-org/icu/releases/tag/release-75-1
https://icu.unicode.org/download/75
"C++ code now requires C++17 [...]"
Consequently, this commit switches the minimum gcc version needed by
package/icu to 7, and propagates this to icu's reverse dependencies.
No autobuilder errors were recorded since we don't test toolchains as
old as gcc 6.x
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
902 B
Plaintext
22 lines
902 B
Plaintext
config BR2_PACKAGE_PYTHON_MWSCRAPE2SLOB
|
|
bool "python-mwscrape2slob"
|
|
depends on !BR2_BINFMT_FLAT # python-slob -> python-pyicu -> icu
|
|
depends on BR2_HOST_GCC_AT_LEAST_7 # python-slob -> python-pyicu -> icu
|
|
depends on BR2_INSTALL_LIBSTDCPP # python-slob -> python-pyicu -> icu
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # python-slob -> python-pyicu -> icu
|
|
select BR2_PACKAGE_PYTHON_COUCHDB # runtime
|
|
select BR2_PACKAGE_PYTHON_CSSSELECT # runtime
|
|
select BR2_PACKAGE_PYTHON_CSSUTILS # runtime
|
|
select BR2_PACKAGE_PYTHON_LXML # runtime
|
|
select BR2_PACKAGE_PYTHON_SLOB # runtime
|
|
help
|
|
A tool to create slob with content from a MediaWiki CouchDB
|
|
created by mwscrape.
|
|
|
|
https://github.com/itkach/mwscrape2slob
|
|
|
|
comment "python-mwscrape2slob needs a toolchain w/ C++, gcc >= 7, host gcc >= 7"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
|
|
!BR2_HOST_GCC_AT_LEAST_7
|