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
|
|
|
#
|
2013-06-17 14:52:43 +02:00
|
|
|
# Copyright (c) 2013 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
|
2013-11-27 22:29:03 +01:00
|
|
|
Version: 1.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
|
2012-10-08 11:27:07 +02:00
|
|
|
Url: http://code.google.com/p/psutil/
|
2012-03-23 10:45:12 +01:00
|
|
|
Source: 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
|
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
|
|
|
|
sed -i "1d" psutil/{__init__.py,_compat.py,_psbsd.py,_pslinux.py,_psmswindows.py,_psosx.py,_psposix.py,error.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}
|
|
|
|
|
|
|
|
%check
|
2013-07-11 17:03:22 +02:00
|
|
|
# fails with "no module named psutil"
|
|
|
|
# python setup.py test
|
2012-03-23 10:41:39 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2012-10-08 11:27:07 +02:00
|
|
|
%doc CREDITS examples HISTORY LICENSE README
|
2012-05-25 08:56:56 +02:00
|
|
|
%{python_sitearch}/psutil/
|
|
|
|
%{python_sitearch}/_psutil_*.so
|
|
|
|
%{python_sitearch}/psutil-%{version}-py%{py_ver}.egg-info
|
|
|
|
|
2012-03-23 10:41:39 +01:00
|
|
|
%changelog
|