7a546b87d5
Since commit 1aa59097e61d524bb55ab1fcd4fbe5098b3e0bed[1] is merged, a new build failure occurs when selecting packages which needs python-numpy as dependency. This fix a build issue[2] by adding the correct reverse dependencies to the following packages : - gnuradio (for python support) - opencv3 (for python support) - piglit - python-matplotlib So : - adding to every listed packages `depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)` and add a comment to explain what happend. [1] https://git.buildroot.net/buildroot/commit/?id=1aa59097e61d524bb55ab1fcd4fbe5098b3e0bed [2] http://autobuild.buildroot.org/results/b76/b76b6cf9602bcf5df69a7276762eab54cf74007b Signed-off-by: Alexandre PAYEN <alexandre.payen@smile.fr> Cc: Alexey Brodkin <Alexey.Brodkin@synopsys.com> Cc: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Cc: Damien DUVAL <damien.duval@smile.fr> Cc: Romain Naour <romain.naour@smile.fr> Reviewed-by: Romain Naour <romain.naour@smile.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_PYTHON_MATPLOTLIB
|
|
bool "python-matplotlib"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_PACKAGE_PYTHON3
|
|
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # python-numpy
|
|
select BR2_PACKAGE_FREETYPE # runtime
|
|
select BR2_PACKAGE_LIBPNG # runtime
|
|
select BR2_PACKAGE_PYTHON_CYCLER
|
|
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
|
|
select BR2_PACKAGE_PYTHON_DATEUTIL # runtime
|
|
select BR2_PACKAGE_PYTHON_NUMPY # runtime
|
|
select BR2_PACKAGE_PYTHON_PYPARSING # runtime
|
|
select BR2_PACKAGE_PYTHON3_ZLIB # runtime
|
|
select BR2_PACKAGE_ZLIB # runtime
|
|
help
|
|
Matplotlib strives to produce publication quality 2D
|
|
graphics for interactive graphing, scientific publishing,
|
|
user interface development and web application servers
|
|
targeting multiple user interfaces and hardcopy output
|
|
formats.
|
|
|
|
https://matplotlib.org/
|
|
|
|
comment "python-matplotlib needs a toolchain w/ C++"
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
|
comment "python-matplotlib needs glibc or musl"
|
|
depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)
|