From 971fed272404eea36c2306740b7ae1bc0f418328 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Fri, 12 Apr 2019 11:29:06 +0200 Subject: [PATCH] python-numpy: redefine the target-specific RDEPENDS items For some reason, even though the general RDEPENDS for this package is correct, all items are overwritten by the empty class-native version of RDEPENDS, even when building for the target. Because of this, whenever this python module is installed and used, it won't work. Redefine the dependencies needed by the target until the issue is fixed upstream. https://jira.digi.com/browse/DEL-6553 Signed-off-by: Gabriel Valcazar --- .../python-numpy/python-numpy_%.bbappend | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 meta-digi-dey/recipes-devtools/python-numpy/python-numpy_%.bbappend diff --git a/meta-digi-dey/recipes-devtools/python-numpy/python-numpy_%.bbappend b/meta-digi-dey/recipes-devtools/python-numpy/python-numpy_%.bbappend new file mode 100644 index 000000000..a7a260a70 --- /dev/null +++ b/meta-digi-dey/recipes-devtools/python-numpy/python-numpy_%.bbappend @@ -0,0 +1,25 @@ +# Copyright (C) 2019 Digi International Inc. + +# Re-add the base RDEPENDS to class-target since they are being overwritten in the +# original recipe +RDEPENDS_${PN}_class-target_append = " \ + ${PYTHON_PN}-unittest \ + ${PYTHON_PN}-difflib \ + ${PYTHON_PN}-pprint \ + ${PYTHON_PN}-pickle \ + ${PYTHON_PN}-shell \ + ${PYTHON_PN}-nose \ + ${PYTHON_PN}-doctest \ + ${PYTHON_PN}-datetime \ + ${PYTHON_PN}-distutils \ + ${PYTHON_PN}-misc \ + ${PYTHON_PN}-mmap \ + ${PYTHON_PN}-netclient \ + ${PYTHON_PN}-numbers \ + ${PYTHON_PN}-pydoc \ + ${PYTHON_PN}-pkgutil \ + ${PYTHON_PN}-email \ + ${PYTHON_PN}-compression \ + ${PYTHON_PN}-ctypes \ + ${PYTHON_PN}-threading \ +"