Hello community, here is the log from the commit of package python-psutil for openSUSE:Factory checked in at 2013-07-22 13:52:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-psutil (Old) and /work/SRC/openSUSE:Factory/.python-psutil.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-psutil" Changes: -------- --- /work/SRC/openSUSE:Factory/python-psutil/python-psutil.changes 2013-07-11 20:13:20.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.python-psutil.new/python-psutil.changes 2013-07-22 13:52:51.000000000 +0200 @@ -1,0 +2,6 @@ +Fri Jul 19 10:52:59 UTC 2013 - [email protected] + +- update to 1.0.1: + * network_io_counters(pernic=True) no longer works as intended in 1.0.0. + +------------------------------------------------------------------- Old: ---- psutil-1.0.0.tar.gz New: ---- psutil-1.0.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-psutil.spec ++++++ --- /var/tmp/diff_new_pack.6j78RD/_old 2013-07-22 13:52:51.000000000 +0200 +++ /var/tmp/diff_new_pack.6j78RD/_new 2013-07-22 13:52:51.000000000 +0200 @@ -17,7 +17,7 @@ Name: python-psutil -Version: 1.0.0 +Version: 1.0.1 Release: 0 Summary: A process utilities module for Python License: BSD-3-Clause @@ -25,7 +25,7 @@ Url: http://code.google.com/p/psutil/ Source: psutil-%{version}.tar.gz BuildRequires: python-devel -BuildRequires: python-distribute +BuildRequires: python-setuptools BuildRoot: %{_tmppath}/%{name}-%{version}-build %if 0%{?suse_version} && 0%{?suse_version} <= 1110 %{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} ++++++ psutil-1.0.0.tar.gz -> psutil-1.0.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/psutil-1.0.0/HISTORY new/psutil-1.0.1/HISTORY --- old/psutil-1.0.0/HISTORY 2013-07-10 16:05:11.000000000 +0200 +++ new/psutil-1.0.1/HISTORY 2013-07-12 17:52:45.000000000 +0200 @@ -1,5 +1,14 @@ Bug tracker at http://code.google.com/p/psutil/issues + +1.0.1 - 2013-07-12 +------------------ + +BUG FIXES + + * #405: network_io_counters(pernic=True) no longer works as intended in 1.0.0. + + 1.0.0 - 2013-07-10 ------------------ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/psutil-1.0.0/PKG-INFO new/psutil-1.0.1/PKG-INFO --- old/psutil-1.0.0/PKG-INFO 2013-07-10 17:13:36.000000000 +0200 +++ new/psutil-1.0.1/PKG-INFO 2013-07-12 17:55:49.000000000 +0200 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: psutil -Version: 1.0.0 +Version: 1.0.1 Summary: A process and system utilities module for Python Home-page: http://code.google.com/p/psutil/ Author: Giampaolo Rodola Author-email: g.rodola <at> gmail <dot> com License: License :: OSI Approved :: BSD License -Download-URL: http://psutil.googlecode.com/files/psutil-1.0.0.tar.gz +Download-URL: http://psutil.googlecode.com/files/psutil-1.0.1.tar.gz Description: =========== Quick links =========== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/psutil-1.0.0/psutil/__init__.py new/psutil-1.0.1/psutil/__init__.py --- old/psutil-1.0.0/psutil/__init__.py 2013-07-08 19:09:01.000000000 +0200 +++ new/psutil-1.0.1/psutil/__init__.py 2013-07-12 17:34:08.000000000 +0200 @@ -12,7 +12,7 @@ from __future__ import division -__version__ = "1.0.0" +__version__ = "1.0.1" version_info = tuple([int(num) for num in __version__.split('.')]) __all__ = [ @@ -1335,7 +1335,7 @@ @_deprecated("psutil.net_io_counters()") def network_io_counters(pernic=False): - return net_io_counters() + return net_io_counters(pernic) def test(): """List info of all currently running processes emulating ps aux -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
