Accepting request 314354 from home:TheBlackCat:branches:devel:languages:python
update to version 3.0.1 OBS-URL: https://build.opensuse.org/request/show/314354 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-psutil?expand=0&rev=39
This commit is contained in:
parent
b79decc406
commit
ea5b3f47a4
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a0e9b96f1946975064724e242ac159f3260db24ffa591c3da0a355361a3a337f
|
|
||||||
size 223688
|
|
3
psutil-3.0.1.tar.gz
Normal file
3
psutil-3.0.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3f213b9ceed3c3068a973e04d7a8b2a29d1076abcb5ef45382517bfc6b808801
|
||||||
|
size 241539
|
@ -1,3 +1,58 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 29 11:08:33 UTC 2015 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
- update to version 3.0.1:
|
||||||
|
* #632: [Linux] better error message if cannot parse process UNIX
|
||||||
|
connections.
|
||||||
|
* #634: [Linux] Proces.cmdline() does not include empty string
|
||||||
|
arguments.
|
||||||
|
* #635: [UNIX] crash on module import if 'enum' package is installed
|
||||||
|
on python < 3.4.
|
||||||
|
- update to version 3.0.0:
|
||||||
|
* Enhancements
|
||||||
|
+ #250: new psutil.net_if_stats() returning NIC statistics (isup,
|
||||||
|
duplex, speed, MTU).
|
||||||
|
+ #376: new psutil.net_if_addrs() returning all NIC addresses a-la
|
||||||
|
ifconfig.
|
||||||
|
+ #469: on Python >= 3.4 IOPRIO_CLASS_* and *_PRIORITY_CLASS
|
||||||
|
constants returned by psutil.Process' ionice() and nice()
|
||||||
|
methods are enums instead of plain integers.
|
||||||
|
+ #581: add .gitignore. (patch by Gabi Davar)
|
||||||
|
+ #582: connection constants returned by psutil.net_connections()
|
||||||
|
and psutil.Process.connections() were turned from int to enums
|
||||||
|
on Python > 3.4.
|
||||||
|
+ #587: Move native extension into the package.
|
||||||
|
+ #589: Process.cpu_affinity() accepts any kind of iterable (set,
|
||||||
|
tuple, ...), not only lists.
|
||||||
|
+ #594: all deprecated APIs were removed.
|
||||||
|
+ #599: [Windows] process name() can now be determined for all
|
||||||
|
processes even when running as a limited user.
|
||||||
|
+ #602: pre-commit GIT hook.
|
||||||
|
+ #629: enhanced support for py.test and nose test discovery and
|
||||||
|
tests run.
|
||||||
|
+ #616: [Windows] Add inet_ntop function for Windows XP.
|
||||||
|
* Bug fixes
|
||||||
|
+ #428: [all UNIXes except Linux] correct handling of zombie
|
||||||
|
processes; introduced new ZombieProcess exception class.
|
||||||
|
+ #512: [BSD] fix segfault in net_connections().
|
||||||
|
+ #555: [Linux] psutil.users() correctly handles ":0" as an alias
|
||||||
|
for "localhost"
|
||||||
|
+ #579: [Windows] Fixed open_files() for PID>64K.
|
||||||
|
+ #579: [Windows] fixed many compiler warnings.
|
||||||
|
+ #585: [FreeBSD] net_connections() may raise KeyError.
|
||||||
|
+ #586: [FreeBSD] cpu_affinity() segfaults on set in case an
|
||||||
|
invalid CPU number is provided.
|
||||||
|
+ #593: [FreeBSD] Process().memory_maps() segfaults.
|
||||||
|
+ #606: Process.parent() may swallow NoSuchProcess exceptions.
|
||||||
|
+ #611: [SunOS] net_io_counters has send and received swapped
|
||||||
|
+ #614: [Linux]: cpu_count(logical=False) return the number of
|
||||||
|
physical CPUs instead of physical cores.
|
||||||
|
+ #618: [SunOS] swap tests fail on Solaris when run as normal user
|
||||||
|
+ #628: [Linux] Process.name() truncates process name in case it
|
||||||
|
contains spaces or parentheses.
|
||||||
|
- specfile:
|
||||||
|
* location of .so files changes to subdir psutil
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 2 22:16:07 UTC 2015 - michael@stroeder.com
|
Mon Feb 2 22:16:07 UTC 2015 - michael@stroeder.com
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python-psutil
|
Name: python-psutil
|
||||||
Version: 2.2.1
|
Version: 3.0.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A process utilities module for Python
|
Summary: A process utilities module for Python
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -58,7 +58,7 @@ python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc CREDITS examples HISTORY.rst LICENSE README.rst TODO
|
%doc CREDITS examples HISTORY.rst LICENSE README.rst TODO
|
||||||
%{python_sitearch}/psutil/
|
%{python_sitearch}/psutil/
|
||||||
%{python_sitearch}/_psutil_*.so
|
%{python_sitearch}/psutil/_psutil_*.so
|
||||||
%{python_sitearch}/psutil-%{version}-py*.egg-info
|
%{python_sitearch}/psutil-%{version}-py*.egg-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user