Accepting request 630322 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/630322
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-psutil?expand=0&rev=95
This commit is contained in:
Michael Ströder 2018-08-18 20:54:08 +00:00 committed by Git OBS Bridge
parent d94d3e792b
commit a34080ca9b
4 changed files with 35 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:686e5a35fe4c0acc25f3466c32e716f2d498aaae7b7edc03e2305b682226bcf6
size 418059

3
psutil-5.4.7.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5b6322b167a5ba0c5463b4d30dfd379cd4ce245a1162ebf8fc7ab5c5ffae4f3b
size 420300

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Sat Aug 18 17:02:59 UTC 2018 - arun@gmx.de
- update to version 5.4.7:
* Enhancements
+ 1286: [macOS] psutil.OSX constant is now deprecated in favor of
new psutil.MACOS.
+ 1309: [Linux] added psutil.STATUS_PARKED constant for
Process.status().
+ 1321: [Linux] add disk_io_counters() dual implementation relying
on /sys/block filesystem in case /proc/diskstats is not
available. (patch by Lawrence Ye)
* Bug fixes
+ 1209: [macOS] Process.memory_maps() may fail with EINVAL due to
poor task_for_pid() syscall. AccessDenied is now raised instead.
+ 1278: [macOS] Process.threads() incorrectly return microseconds
instead of seconds. (patch by Nikhil Marathe)
+ 1279: [Linux, macOS, BSD] net_if_stats() may return ENODEV.
+ 1294: [Windows] psutil.Process().connections() may sometime fail
with MemoryError. (patch by sylvainduchesne)
+ 1305: [Linux] disk_io_stats() may report inflated r/w bytes
values.
+ 1309: [Linux] Process.status() is unable to recognize "idle" and
"parked" statuses (returns '?').
+ 1313: [Linux] disk_io_counters() can report inflated IO counters
due to erroneously counting base disk device and its
partition(s) twice.
+ 1323: [Linux] sensors_temperatures() may fail with ValueError.
-------------------------------------------------------------------
Wed Jun 13 18:12:32 UTC 2018 - toddrme2178@gmail.com

View File

@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-psutil
Version: 5.4.6
Version: 5.4.7
Release: 0
Summary: A process utilities module for Python
License: BSD-3-Clause
@ -29,14 +29,14 @@ BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: net-tools
Requires: procps
# SECTION test requirements
BuildRequires: net-tools
BuildRequires: procps
BuildRequires: python-ipaddress
BuildRequires: python-mock
# /SECTION
Requires: net-tools
Requires: procps
%ifpython2
Requires: python-ipaddress
%endif