mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Some of them were introduced by mass-removal of S = WORKDIR/git assignments;
rather than try to fix up (or redo) just these, I've run this sed command over
the whole tree:
sed -i -z -E 's/([ \t\f\v\r]*\n){3,}/\n\n/g' `find . -name *.bb -o -name *.inc`
The rationale is that more than one empty line is wasting vertical screen space, and
does nothing for readability.
(From OE-Core rev: cedc4ff7c9bcfb22a20e43e47f9759f4007a4f1a)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
969 B
BlitzBasic
44 lines
969 B
BlitzBasic
SUMMARY = "A cross-platform process and system utilities module for Python"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=a9c72113a843d0d732a0ac1c200d81b1"
|
|
HOMEPAGE = "https://pypi.org/project/psutil/"
|
|
|
|
SRC_URI[sha256sum] = "7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
PACKAGES =+ "${PN}-tests"
|
|
|
|
FILES:${PN}-tests += " \
|
|
${PYTHON_SITEPACKAGES_DIR}/psutil/test* \
|
|
${PYTHON_SITEPACKAGES_DIR}/psutil/__pycache__/test* \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-shell \
|
|
python3-threading \
|
|
python3-xml \
|
|
python3-netclient \
|
|
python3-ctypes \
|
|
python3-resource \
|
|
"
|
|
|
|
RDEPENDS:${PN}-tests += " \
|
|
${PN} \
|
|
python3 \
|
|
coreutils \
|
|
procps \
|
|
binutils \
|
|
gcc \
|
|
gcc-symlinks \
|
|
libstdc++ \
|
|
libstdc++-dev \
|
|
"
|
|
RDEPENDS:${PN}-tests:class-native = ""
|
|
|
|
INSANE_SKIP:${PN}-tests += "dev-deps"
|
|
|
|
CVE_PRODUCT = "psutil"
|
|
|
|
BBCLASSEXTEND = "native"
|