ede5e7439c
- Update to version 1.2.1 * #348: [Windows XP] fixed "ImportError: DLL load failed" occurring on module import. * #425: [Solaris] crash on import due to failure at determining BOOT_TIME. * #443: [Linux] can't set CPU affinity with systems with more than 64 cores. - Changes from version 1.2.0 * #439: assume os.getpid() if no argument is passed to psutil.Process constructor. * #440: new psutil.wait_procs() utility function which waits for multiple processes to terminate. * #348: [Windows XP/Vista] fixed "ImportError: DLL load failed" occurring on module import. - Changes from version 1.1.3 * #442: [Linux] psutil won't compile on certain version of Linux because of missing prlimit(2) syscall. - Changes from version 1.1.2 * #442: [Linux] psutil won't compile on Debian 6.0 because of missing prlimit(2) syscall. OBS-URL: https://build.opensuse.org/request/show/208748 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-psutil?expand=0&rev=26
60 lines
1.9 KiB
RPMSpec
60 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package python-psutil
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: python-psutil
|
|
Version: 1.2.1
|
|
Release: 0
|
|
Summary: A process utilities module for Python
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
Url: http://code.google.com/p/psutil/
|
|
Source: psutil-%{version}.tar.gz
|
|
BuildRequires: python-devel
|
|
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)")}
|
|
%endif
|
|
|
|
%description
|
|
A graphical interface that lets you easily analyze and introspect unaltered running Python processes.
|
|
|
|
%prep
|
|
%setup -q -n psutil-%{version}
|
|
# Remove shebangs
|
|
sed -i "1d" psutil/{__init__.py,_compat.py,_psbsd.py,_pslinux.py,_psmswindows.py,_psosx.py,_psposix.py,error.py}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
%check
|
|
# fails with "no module named psutil"
|
|
# python setup.py test
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc CREDITS examples HISTORY LICENSE README
|
|
%{python_sitearch}/psutil/
|
|
%{python_sitearch}/_psutil_*.so
|
|
%{python_sitearch}/psutil-%{version}-py%{py_ver}.egg-info
|
|
|
|
%changelog
|