Update to 0.6.1
This commit is contained in:
parent
3e985c344f
commit
e25785f763
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,3 +5,4 @@ psutil-0.1.3.tar.gz
|
|||||||
/psutil-0.4.0.tar.gz
|
/psutil-0.4.0.tar.gz
|
||||||
/psutil-0.4.1.tar.gz
|
/psutil-0.4.1.tar.gz
|
||||||
/psutil-0.5.1.tar.gz
|
/psutil-0.5.1.tar.gz
|
||||||
|
/psutil-0.6.1.tar.gz
|
||||||
|
@ -8,9 +8,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
Name: python-psutil
|
Name: python-psutil
|
||||||
Version: 0.5.1
|
Version: 0.6.1
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A process utilities module for Python
|
Summary: A process and system utilities module for Python
|
||||||
|
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
License: BSD
|
License: BSD
|
||||||
@ -23,22 +23,24 @@ BuildRequires: python3-devel
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
psutil is a module providing an interface for retrieving information on running
|
psutil is a module providing an interface for retrieving information on all
|
||||||
processes and system utilization (CPU, memory) in a portable way by using
|
running processes and system utilization (CPU, memory, disks, network, users) in
|
||||||
Python, implementing many functionalities offered by tools like ps, top and
|
a portable way by using Python, implementing many functionalities offered by
|
||||||
Windows task manager.
|
command line tools such as: ps, top, df, kill, free, lsof, free, netstat,
|
||||||
|
ifconfig, nice, ionice, iostat, iotop, uptime, pidof, tty, who, taskset, pmap.
|
||||||
|
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
%package -n python3-psutil
|
%package -n python3-psutil
|
||||||
Summary: A process utilities module for Python 3
|
Summary: A process and system utilities module for Python 3
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
|
|
||||||
%description -n python3-psutil
|
%description -n python3-psutil
|
||||||
psutil is a module providing an interface for retrieving information on running
|
psutil is a module providing an interface for retrieving information on all
|
||||||
processes and system utilization (CPU, memory) in a portable way by using Python
|
running processes and system utilization (CPU, memory, disks, network, users) in
|
||||||
3, implementing many functionalities offered by tools like ps, top and Windows
|
a portable way by using Python 3, implementing many functionalities offered by
|
||||||
task manager.
|
command line tools such as: ps, top, df, kill, free, lsof, free, netstat,
|
||||||
|
ifconfig, nice, ionice, iostat, iotop, uptime, pidof, tty, who, taskset, pmap.
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
@ -73,12 +75,18 @@ popd
|
|||||||
--skip-build \
|
--skip-build \
|
||||||
--root $RPM_BUILD_ROOT
|
--root $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
# Fix permissions
|
||||||
|
chmod 0755 $RPM_BUILD_ROOT%{python_sitearch}/*.so
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
pushd %{py3dir}
|
pushd %{py3dir}
|
||||||
%{__python3} setup.py install \
|
%{__python3} setup.py install \
|
||||||
--skip-build \
|
--skip-build \
|
||||||
--root $RPM_BUILD_ROOT
|
--root $RPM_BUILD_ROOT
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
# Fix permissions
|
||||||
|
chmod 0755 $RPM_BUILD_ROOT%{python3_sitearch}/*.so
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
@ -99,6 +107,9 @@ popd
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Aug 19 2012 Mohamed El Morabity <melmorabity@fedorapeople.org> - 0.6.1-1
|
||||||
|
- Update to 0.6.1
|
||||||
|
|
||||||
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 0.5.1-3
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 0.5.1-3
|
||||||
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user