diff options
| author | Tim Orling <ticotimo@gmail.com> | 2022-11-01 20:18:22 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-03 07:46:46 +0000 |
| commit | a329369174d78348ef8c0f6ff853b52399683bc8 (patch) | |
| tree | 48dedb49d3aacd9417c00fe9f8fe0e1de7e55731 /meta/recipes-devtools/python/python3-psutil_5.9.3.bb | |
| parent | 716981822b0239389b805ea85c91d1ae2614831a (diff) | |
| download | poky-a329369174d78348ef8c0f6ff853b52399683bc8.tar.gz | |
python3-psutil: upgrade 5.9.2 -> 5.9.3
https://github.com/giampaolo/psutil/blob/master/HISTORY.rst#593
2022-10-18
Enhancements
* 2040, [macOS]: provide wheels for arm64 architecture. (patch by
Matthieu Darbois)
Bug fixes
* 2116, [macOS], [critical]: `psutil.net_connections`_ fails with
RuntimeError.
* 2135, [macOS]: Process.environ() may contain garbage data. Fix
out-of-bounds read around sysctl_procargs. (patch by Bernhard
Urban-Forster)
* 2138, [Linux], [critical]: can't compile psutil on Android due to
undefined ethtool_cmd_speed symbol.
* 2142, [POSIX]: net_if_stats() 's flags on Python 2 returned unicode
instead of str. (patch by Matthieu Darbois)
* 2147, [macOS] Fix disk usage report on macOS 12+. (patch by Matthieu
Darbois)
* 2150, [Linux] Process.threads() may raise NoSuchProcess. Fix race
condition. (patch by Daniel Li)
* 2153, [macOS] Fix race condition in
test_posix.TestProcess.test_cmdline. (patch by Matthieu Darbois)
(From OE-Core rev: 893fc6a99f1ad3417fec43eb9b7fdb641e7d1e6d)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-psutil_5.9.3.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-psutil_5.9.3.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-psutil_5.9.3.bb b/meta/recipes-devtools/python/python3-psutil_5.9.3.bb new file mode 100644 index 0000000000..f099803150 --- /dev/null +++ b/meta/recipes-devtools/python/python3-psutil_5.9.3.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 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 | HOMEPAGE = "https://pypi.org/project/psutil/" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "7ccfcdfea4fc4b0a02ca2c31de7fcd186beb9cff8207800e14ab66f79c773af6" | ||
| 7 | |||
| 8 | inherit pypi setuptools3 | ||
| 9 | |||
| 10 | PACKAGES =+ "${PN}-tests" | ||
| 11 | |||
| 12 | FILES:${PN}-tests += " \ | ||
| 13 | ${PYTHON_SITEPACKAGES_DIR}/psutil/test* \ | ||
| 14 | ${PYTHON_SITEPACKAGES_DIR}/psutil/__pycache__/test* \ | ||
| 15 | " | ||
| 16 | |||
| 17 | |||
| 18 | RDEPENDS:${PN} += " \ | ||
| 19 | ${PYTHON_PN}-shell \ | ||
| 20 | ${PYTHON_PN}-threading \ | ||
| 21 | ${PYTHON_PN}-xml \ | ||
| 22 | ${PYTHON_PN}-netclient \ | ||
| 23 | ${PYTHON_PN}-ctypes \ | ||
| 24 | ${PYTHON_PN}-resource \ | ||
| 25 | " | ||
| 26 | |||
| 27 | BBCLASSEXTEND = "native nativesdk" | ||
