Accepting request 630325 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/630325 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-psutil?expand=0&rev=44
This commit is contained in:
commit
409ab0d14e
@ -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
3
psutil-5.4.7.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5b6322b167a5ba0c5463b4d30dfd379cd4ce245a1162ebf8fc7ab5c5ffae4f3b
|
||||
size 420300
|
@ -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
|
||||
|
||||
@ -75,6 +104,11 @@ Wed Jan 3 22:40:21 UTC 2018 - arun@gmx.de
|
||||
* Bug fixes
|
||||
+ 1193: pids() may return False on OSX.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 21 14:40:27 UTC 2017 - mihai.dinca@suse.com
|
||||
|
||||
- build python3 subpackage (FATE#324435, bsc#1073879)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 7 16:47:30 UTC 2017 - arun@gmx.de
|
||||
|
||||
@ -865,6 +899,11 @@ Tue Sep 30 10:32:34 UTC 2014 - toddrme2178@gmail.com
|
||||
* Process instances' "retcode" attribute returned by psutil.wait_procs() has
|
||||
been renamed to "returncode" for consistency with subprocess.Popen.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 3 01:41:38 CEST 2014 - ro@suse.de
|
||||
|
||||
- sanitize release line in specfile
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 27 21:26:26 UTC 2013 - p.drouand@gmail.com
|
||||
|
||||
|
@ -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
|
||||
# SECTION test requirements
|
||||
BuildRequires: python-ipaddress
|
||||
BuildRequires: python-mock
|
||||
BuildRequires: net-tools
|
||||
BuildRequires: procps
|
||||
# /SECTION
|
||||
Requires: net-tools
|
||||
Requires: procps
|
||||
# SECTION test requirements
|
||||
BuildRequires: net-tools
|
||||
BuildRequires: procps
|
||||
BuildRequires: python-ipaddress
|
||||
BuildRequires: python-mock
|
||||
# /SECTION
|
||||
%ifpython2
|
||||
Requires: python-ipaddress
|
||||
%endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user