2009-02-18 21:28:40 +00:00
|
|
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
%{!?python_ver: %define python_ver %(%{__python} -c "import sys ; print sys.version[:3]")}
|
|
|
|
|
|
|
|
Name: python-linux-procfs
|
|
|
|
Version: 0.4.4
|
2009-07-26 20:34:32 +00:00
|
|
|
Release: 3%{?dist}
|
2009-02-18 21:28:40 +00:00
|
|
|
License: GPLv2
|
|
|
|
Summary: Linux /proc abstraction classes
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
Source: http://userweb.kernel.org/~acme/python-linux-procfs/%{name}-%{version}.tar.bz2
|
|
|
|
URL: http://userweb.kernel.org/~acme/python-linux-procfs
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python-devel
|
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
|
|
|
|
|
%description
|
|
|
|
Abstractions to extract information from the Linux kernel /proc files.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{__python} setup.py build
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
%{__python} setup.py install --skip-build --root %{buildroot}
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(0755,root,root,0755)
|
|
|
|
%{python_sitelib}/procfs/
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%if "%{python_ver}" >= "2.5"
|
|
|
|
%{python_sitelib}/*.egg-info
|
|
|
|
%endif
|
|
|
|
%doc COPYING
|
|
|
|
|
|
|
|
%changelog
|
2009-07-26 20:34:32 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-26 22:07:03 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-18 21:28:40 +00:00
|
|
|
* Mon Feb 10 2009 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.4.4-1
|
|
|
|
- Even more fixes due to the fedora review process
|
|
|
|
|
|
|
|
* Mon Feb 9 2009 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.4.3-1
|
|
|
|
- Fixups due to the fedora review process
|
|
|
|
|
|
|
|
* Tue Aug 12 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.4.2-1
|
|
|
|
- interrupts: Add find_by_user_regex
|
|
|
|
- process: Always set the "cmdline" array, even if empty
|
|
|
|
- pidstats: Remove dead processes in find_by_name()
|
|
|
|
- pidstats: Add process class to catch dict references for late parsing
|
|
|
|
- pidstats: Move the /proc/PID/{stat,status} parsing to classes
|
|
|
|
- pidstats: Introduce process_flags method
|
|
|
|
|
|
|
|
* Tue Aug 12 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.4-1
|
|
|
|
- Per process flags needed by tuna
|
|
|
|
|
|
|
|
* Fri Jun 13 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.3-1
|
|
|
|
- Support CPU hotplug
|
|
|
|
|
|
|
|
* Mon Feb 25 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.1-1
|
|
|
|
- package created
|