diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2022-01-07 19:47:26 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-01-10 10:34:34 -0800 |
commit | c9033d87f34cbd02cebdc2e800c3399e5587e080 (patch) | |
tree | bdc96c5a0e2a377348b58d25f0f0242a1c8c2954 /meta-python/recipes-devtools/python/python3-psutil_5.9.0.bb | |
parent | 280195a1098f7b18c0d3eea1ff8da987f6ff523a (diff) | |
download | meta-openembedded-c9033d87f34cbd02cebdc2e800c3399e5587e080.tar.gz |
python3-psutil: Upgrade 5.8.0 -> 5.9.0
Upgrade to release 5.9.0:
- [Linux]: cpu_freq() is slow on systems with many CPUs. Read
current frequency values for all CPUs from /proc/cpuinfo instead
of opening many files in /sys fs. (patch by marxin)
- NoSuchProcess message now specifies if the PID has been reused.
- error classes (NoSuchProcess, AccessDenied, etc.) now have a
better formatted and separated __repr__ and __str__
implementations.
- [BSD]: add support for MidnightBSD.
- [Linux]: disk_partitions(): convert /dev/root device (an alias
used on some Linux distros) to real root device path.
- PSUTIL_DEBUG mode now prints file name and line number of the
debug messages coming from C extension modules.
- rewrite HISTORY.rst to use hyperlinks pointing to psutil API doc.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-psutil_5.9.0.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-psutil_5.9.0.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-psutil_5.9.0.bb b/meta-python/recipes-devtools/python/python3-psutil_5.9.0.bb new file mode 100644 index 0000000000..cf3e0b39c8 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-psutil_5.9.0.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SUMMARY = "A cross-platform process and system utilities module for Python" | ||
2 | LICENSE = "BSD-3-Clause" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e35fd9f271d19d5f742f20a9d1f8bb8b" | ||
4 | |||
5 | SRC_URI[sha256sum] = "869842dbd66bb80c3217158e629d6fceaecc3a3166d3d1faee515b05dd26ca25" | ||
6 | |||
7 | inherit pypi setuptools3 | ||
8 | |||
9 | PACKAGES =+ "${PN}-tests" | ||
10 | |||
11 | FILES:${PN}-tests += " \ | ||
12 | ${PYTHON_SITEPACKAGES_DIR}/psutil/test* \ | ||
13 | ${PYTHON_SITEPACKAGES_DIR}/psutil/__pycache__/test* \ | ||
14 | " | ||
15 | |||
16 | |||
17 | RDEPENDS:${PN} += " \ | ||
18 | ${PYTHON_PN}-shell \ | ||
19 | ${PYTHON_PN}-threading \ | ||
20 | ${PYTHON_PN}-xml \ | ||
21 | ${PYTHON_PN}-netclient \ | ||
22 | ${PYTHON_PN}-ctypes \ | ||
23 | ${PYTHON_PN}-resource \ | ||
24 | " | ||
25 | |||
26 | BBCLASSEXTEND = "native nativesdk" | ||