[oe-commits] [openembedded-core] 05/16: python-numpy: Avoid installing copy of f2py script

git at git.openembedded.org git at git.openembedded.org
Tue May 21 10:39:23 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit f18bca3274f345c8701ec8c878d27b7e43ea233a
Author: Alejandro Enedino Hernandez Samaniego <alejandro.enedino.hernandez-samaniego at xilinx.com>
AuthorDate: Fri May 17 16:49:12 2019 -0700

    python-numpy: Avoid installing copy of f2py script
    
    Both python-numpy and python3-numpy try to install the file:
    
    ${D}/${bindir}/f2py
    
    which causes an error during do_rootfs since the package manager complains about that.
    
    The numpy packages create basically copies of f2py script with the following names:
    f2py (on both)
    f2py2 (on python 2)
    f2py2.7 (on python 2)
    f2py3 (on python 3)
    f2py3.7 (on python 3)
    
    Remove the copy of f2py from python-numpy in favor of using the one from python3
    to avoid installation issues at do_rootfs().
    
    Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr at xilinx.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb b/meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb
index 5013789..a1133da 100644
--- a/meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb
+++ b/meta/recipes-devtools/python-numpy/python-numpy_1.16.3.bb
@@ -4,3 +4,7 @@ require python-numpy.inc
 RDEPENDS_${PN}_class-target_append = " \
     ${PYTHON_PN}-subprocess \
 "
+
+do_install_append(){
+        rm ${D}/${bindir}/f2py
+}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list