mirror of
https://git.yoctoproject.org/poky
synced 2026-02-04 07:48:43 +01:00
We're seeing warnings like: WARNING: Nothing RPROVIDES 'nativesdk-procps' (but virtual:nativesdk:XXX/python3-psutil_5.9.4.bb RDEPENDS on or otherwise requires it) WARNING: Nothing RPROVIDES 'nativesdk-python3-psutil-dev' (but virtual:nativesdk:XXX/python3-psutil_5.9.4.bb RDEPENDS on or otherwise requires it) WARNING: Nothing RPROVIDES 'nativesdk-python3-psutil' (but virtual:nativesdk:XXX/python3-psutil_5.9.4.bb RDEPENDS on or otherwise requires it) which means this likely has never been working in the first place. Drop it until it is needed and fixed to work. (From OE-Core rev: e1c9cbe8b14c259c30df375d3f8c1bd9b3a818fa) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
42 lines
925 B
BlitzBasic
42 lines
925 B
BlitzBasic
SUMMARY = "A cross-platform process and system utilities module for Python"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e35fd9f271d19d5f742f20a9d1f8bb8b"
|
|
HOMEPAGE = "https://pypi.org/project/psutil/"
|
|
|
|
SRC_URI[sha256sum] = "3d7f9739eb435d4b1338944abe23f49584bde5395f27487d2ee25ad9a8774a62"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
PACKAGES =+ "${PN}-tests"
|
|
|
|
FILES:${PN}-tests += " \
|
|
${PYTHON_SITEPACKAGES_DIR}/psutil/test* \
|
|
${PYTHON_SITEPACKAGES_DIR}/psutil/__pycache__/test* \
|
|
"
|
|
|
|
|
|
RDEPENDS:${PN} += " \
|
|
${PYTHON_PN}-shell \
|
|
${PYTHON_PN}-threading \
|
|
${PYTHON_PN}-xml \
|
|
${PYTHON_PN}-netclient \
|
|
${PYTHON_PN}-ctypes \
|
|
${PYTHON_PN}-resource \
|
|
"
|
|
|
|
RDEPENDS:${PN}-tests += " \
|
|
${PN} \
|
|
${PYTHON_PN} \
|
|
coreutils \
|
|
procps \
|
|
binutils \
|
|
gcc \
|
|
gcc-symlinks \
|
|
libstdc++ \
|
|
libstdc++-dev \
|
|
"
|
|
|
|
INSANE_SKIP:${PN}-tests += "dev-deps"
|
|
|
|
BBCLASSEXTEND = "native"
|