2012-03-23 10:41:39 +01:00
|
|
|
#
|
2012-03-23 10:45:12 +01:00
|
|
|
# spec file for package python-psutil
|
2012-03-23 10:41:39 +01:00
|
|
|
#
|
2014-09-30 14:02:29 +02:00
|
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2012-03-23 10:41:39 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
2012-03-23 10:45:12 +01:00
|
|
|
|
2012-03-23 10:41:39 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
2012-03-23 10:45:12 +01:00
|
|
|
|
2012-10-08 11:27:07 +02:00
|
|
|
|
2012-03-23 10:45:12 +01:00
|
|
|
Name: python-psutil
|
2015-09-17 14:05:17 +02:00
|
|
|
Version: 3.2.1
|
2012-03-23 10:41:39 +01:00
|
|
|
Release: 0
|
2012-03-23 10:45:12 +01:00
|
|
|
Summary: A process utilities module for Python
|
2012-10-08 11:27:07 +02:00
|
|
|
License: BSD-3-Clause
|
2012-03-23 10:41:39 +01:00
|
|
|
Group: Development/Languages/Python
|
2014-09-30 14:02:29 +02:00
|
|
|
Url: https://pypi.python.org/pypi/psutil/
|
|
|
|
Source: https://pypi.python.org/packages/source/p/psutil/psutil-%{version}.tar.gz
|
2012-03-23 10:41:39 +01:00
|
|
|
BuildRequires: python-devel
|
2013-07-22 08:17:30 +02:00
|
|
|
BuildRequires: python-setuptools
|
2014-09-30 14:02:29 +02:00
|
|
|
BuildRequires: net-tools
|
|
|
|
BuildRequires: procps
|
|
|
|
Requires: net-tools
|
|
|
|
Requires: procps
|
2012-10-08 11:27:07 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2012-03-23 10:45:12 +01:00
|
|
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
2013-01-02 22:57:40 +01:00
|
|
|
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
2012-03-23 10:41:39 +01:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%description
|
|
|
|
A graphical interface that lets you easily analyze and introspect unaltered running Python processes.
|
|
|
|
|
|
|
|
%prep
|
2012-03-23 10:45:12 +01:00
|
|
|
%setup -q -n psutil-%{version}
|
2012-10-08 11:27:07 +02:00
|
|
|
# Remove shebangs
|
2014-09-30 14:18:11 +02:00
|
|
|
sed -i "1d" psutil/{__init__.py,_compat.py,_psbsd.py,_pslinux.py,_psosx.py,_psposix.py,_pssunos.py,_pswindows.py}
|
2012-03-23 10:45:12 +01:00
|
|
|
|
2012-03-23 10:41:39 +01:00
|
|
|
%build
|
2012-03-23 10:45:12 +01:00
|
|
|
python setup.py build
|
2012-03-23 10:41:39 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
|
2014-09-30 14:02:29 +02:00
|
|
|
# not working due to lack of root priveleges
|
2014-09-30 14:18:11 +02:00
|
|
|
# %check
|
2014-09-30 14:02:29 +02:00
|
|
|
# make test
|
|
|
|
# make memtest
|
2012-03-23 10:41:39 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2014-09-30 14:02:29 +02:00
|
|
|
%doc CREDITS examples HISTORY.rst LICENSE README.rst TODO
|
2012-05-25 08:56:56 +02:00
|
|
|
%{python_sitearch}/psutil/
|
2015-06-29 13:19:41 +02:00
|
|
|
%{python_sitearch}/psutil/_psutil_*.so
|
2014-09-30 14:02:29 +02:00
|
|
|
%{python_sitearch}/psutil-%{version}-py*.egg-info
|
2012-05-25 08:56:56 +02:00
|
|
|
|
2012-03-23 10:41:39 +01:00
|
|
|
%changelog
|