diff options
author | Malik Talha <talhamalik727x@gmail.com> | 2023-09-28 15:50:31 +0500 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-10-05 13:25:58 +0000 |
commit | 35e7b9d2774e8d104d0693e0a0758363c2afb16d (patch) | |
tree | 926eb79fc153cf68ed6b7a54cf68f6894ef50f07 /meta-offline-voice-agent/recipes-python/python3-scipy/python3-scipy-native_1.8.1.bb | |
parent | 39319e3a3bdfcc6c6da47035bf04b4255aec09e5 (diff) |
Add dependencies for intent engine snips
This adds the libraries for the snips intent engine.
Bug-AGL: SPEC-4856
Change-Id: I0acec6fdd1d0809ee2a0a52ee2c95cd86671d760
Signed-off-by: Malik Talha <talhamalik727x@gmail.com>
Diffstat (limited to 'meta-offline-voice-agent/recipes-python/python3-scipy/python3-scipy-native_1.8.1.bb')
-rw-r--r-- | meta-offline-voice-agent/recipes-python/python3-scipy/python3-scipy-native_1.8.1.bb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta-offline-voice-agent/recipes-python/python3-scipy/python3-scipy-native_1.8.1.bb b/meta-offline-voice-agent/recipes-python/python3-scipy/python3-scipy-native_1.8.1.bb new file mode 100644 index 00000000..ca46f9db --- /dev/null +++ b/meta-offline-voice-agent/recipes-python/python3-scipy/python3-scipy-native_1.8.1.bb @@ -0,0 +1,44 @@ +SUMMARY = "SciPy: Scientific Library for Python" +HOMEPAGE = "https://www.scipy.org" +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=27ca2e35416b6316570bf126e08b7062" + +SRC_URI = "https://pypi.python.org/packages/source/s/scipy/scipy-${PV}.tar.gz \ + file://0001-Allow-passing-flags-via-FARCH-for-mach.patch \ + " + +SRC_URI[md5sum] = "df5ce79288fc457238aeef18e8f70dfc" +SRC_URI[sha256sum] = "9e3fb1b0e896f14a85aa9a28d5f755daaeeb54c897b746df7a55ccb02b340f33" + +S = "${WORKDIR}/scipy-${PV}" + +DEPENDS += " \ + ${PYTHON_PN}-numpy-native \ + ${PYTHON_PN}-pybind11-native \ + ${PYTHON_PN}-pythran-native \ + ${PYTHON_PN}-gast-native \ + ${PYTHON_PN}-beniget-native \ + ${PYTHON_PN}-ply-native \ + lapack-native \ +" + +CLEANBROKEN = "1" + +inherit setuptools3 native + +export LAPACK = "${STAGING_LIBDIR}" +export BLAS = "${STAGING_LIBDIR}" + +export F90 = "${FC}" + +# Numpy expects the LDSHARED env variable to point to a single +# executable, but OE sets it to include some flags as well. So we split +# the existing LDSHARED variable into the base executable and flags, and +# prepend the flags into LDFLAGS +LDFLAGS:prepend := "${@" ".join(d.getVar('LDSHARED', True).split()[1:])} " +export LDSHARED := "${@d.getVar('LDSHARED', True).split()[0]}" + +# Tell Numpy to look in target sysroot site-packages directory for libraries +LDFLAGS:append = " -L${STAGING_LIBDIR}/${PYTHON_DIR}/site-packages/numpy/core/lib" + +INSANE_SKIP:${PN} = "already-stripped" |