mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
package/python-numpy: add reverse dependency on packages using python-numpy
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>
This commit is contained in:
parent
0c5acbbcb6
commit
7a546b87d5
@ -66,11 +66,15 @@ config BR2_PACKAGE_GNURADIO_PYTHON
|
|||||||
bool "python support"
|
bool "python support"
|
||||||
depends on BR2_PACKAGE_PYTHON
|
depends on BR2_PACKAGE_PYTHON
|
||||||
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
||||||
|
depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # python-numpy
|
||||||
select BR2_PACKAGE_BOOST_PYTHON
|
select BR2_PACKAGE_BOOST_PYTHON
|
||||||
select BR2_PACKAGE_PYTHON_NUMPY # runtime
|
select BR2_PACKAGE_PYTHON_NUMPY # runtime
|
||||||
help
|
help
|
||||||
Enable python component
|
Enable python component
|
||||||
|
|
||||||
|
comment "python support needs glibc or musl"
|
||||||
|
depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)
|
||||||
|
|
||||||
config BR2_PACKAGE_GNURADIO_UTILS
|
config BR2_PACKAGE_GNURADIO_UTILS
|
||||||
bool "gr-utils support"
|
bool "gr-utils support"
|
||||||
depends on BR2_PACKAGE_GNURADIO_PYTHON
|
depends on BR2_PACKAGE_GNURADIO_PYTHON
|
||||||
|
@ -158,11 +158,15 @@ config BR2_PACKAGE_OPENCV3_LIB_PYTHON
|
|||||||
bool "python"
|
bool "python"
|
||||||
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
|
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
|
||||||
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
||||||
|
depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # python-numpy
|
||||||
select BR2_PACKAGE_PYTHON_NUMPY
|
select BR2_PACKAGE_PYTHON_NUMPY
|
||||||
help
|
help
|
||||||
Include opencv_python module into the OpenCV build. No
|
Include opencv_python module into the OpenCV build. No
|
||||||
python example is installed.
|
python example is installed.
|
||||||
|
|
||||||
|
comment "python support needs glibc or musl"
|
||||||
|
depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)
|
||||||
|
|
||||||
config BR2_PACKAGE_OPENCV3_LIB_SHAPE
|
config BR2_PACKAGE_OPENCV3_LIB_SHAPE
|
||||||
bool "shape"
|
bool "shape"
|
||||||
# opencv_core dependency is already enabled
|
# opencv_core dependency is already enabled
|
||||||
|
@ -6,6 +6,7 @@ config BR2_PACKAGE_PIGLIT
|
|||||||
BR2_PACKAGE_WAFFLE_SUPPORTS_WAYLAND || \
|
BR2_PACKAGE_WAFFLE_SUPPORTS_WAYLAND || \
|
||||||
BR2_PACKAGE_WAFFLE_SUPPORTS_X11_EGL || \
|
BR2_PACKAGE_WAFFLE_SUPPORTS_X11_EGL || \
|
||||||
BR2_PACKAGE_WAFFLE_SUPPORTS_GBM
|
BR2_PACKAGE_WAFFLE_SUPPORTS_GBM
|
||||||
|
depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # python-numpy
|
||||||
select BR2_PACKAGE_LIBDRM if BR2_PACKAGE_HAS_LIBGL
|
select BR2_PACKAGE_LIBDRM if BR2_PACKAGE_HAS_LIBGL
|
||||||
select BR2_PACKAGE_LIBPNG
|
select BR2_PACKAGE_LIBPNG
|
||||||
select BR2_PACKAGE_LIBXKBCOMMON if BR2_PACKAGE_WAYLAND
|
select BR2_PACKAGE_LIBXKBCOMMON if BR2_PACKAGE_WAYLAND
|
||||||
@ -29,3 +30,6 @@ config BR2_PACKAGE_PIGLIT
|
|||||||
implementations.
|
implementations.
|
||||||
|
|
||||||
https://piglit.freedesktop.org
|
https://piglit.freedesktop.org
|
||||||
|
|
||||||
|
comment "piglit needs glibc or musl"
|
||||||
|
depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)
|
||||||
|
@ -3,6 +3,7 @@ config BR2_PACKAGE_PYTHON_MATPLOTLIB
|
|||||||
depends on BR2_INSTALL_LIBSTDCPP
|
depends on BR2_INSTALL_LIBSTDCPP
|
||||||
depends on BR2_PACKAGE_PYTHON3
|
depends on BR2_PACKAGE_PYTHON3
|
||||||
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
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_FREETYPE # runtime
|
||||||
select BR2_PACKAGE_LIBPNG # runtime
|
select BR2_PACKAGE_LIBPNG # runtime
|
||||||
select BR2_PACKAGE_PYTHON_CYCLER
|
select BR2_PACKAGE_PYTHON_CYCLER
|
||||||
@ -23,3 +24,6 @@ config BR2_PACKAGE_PYTHON_MATPLOTLIB
|
|||||||
|
|
||||||
comment "python-matplotlib needs a toolchain w/ C++"
|
comment "python-matplotlib needs a toolchain w/ C++"
|
||||||
depends on !BR2_INSTALL_LIBSTDCPP
|
depends on !BR2_INSTALL_LIBSTDCPP
|
||||||
|
|
||||||
|
comment "python-matplotlib needs glibc or musl"
|
||||||
|
depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user