Adopting package
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
6aabbea36f
commit
464a349f17
@ -0,0 +1 @@
|
|||||||
|
python-schedutils-0.2.tar.bz2
|
1
import.log
Normal file
1
import.log
Normal file
@ -0,0 +1 @@
|
|||||||
|
python-schedutils-0_2-2_fc10:HEAD:python-schedutils-0.2-2.fc10.src.rpm:1221058322
|
64
python-schedutils.spec
Normal file
64
python-schedutils.spec
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||||
|
%{!?python_ver: %define python_ver %(%{__python} -c "import sys ; print sys.version[:3]")}
|
||||||
|
|
||||||
|
Summary: Linux scheduler python bindings
|
||||||
|
Name: python-schedutils
|
||||||
|
Version: 0.2
|
||||||
|
Release: 2%{?dist}
|
||||||
|
License: GPLv2
|
||||||
|
URL: http://git.kernel.org/?p=linux/kernel/git/acme/python-schedutils.git
|
||||||
|
Source: http://userweb.kernel.org/~acme/python-schedutils/%{name}-%{version}.tar.bz2
|
||||||
|
Group: System Environment/Libraries
|
||||||
|
BuildRequires: python-devel
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
%description
|
||||||
|
Python interface for the Linux scheduler sched_{get,set}{affinity,scheduler}
|
||||||
|
functions and friends.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
%{__python} setup.py build
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
%{__python} setup.py install --skip-build --root %{buildroot}
|
||||||
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
|
cp -p pchrt.py %{buildroot}%{_bindir}/pchrt
|
||||||
|
cp -p ptaskset.py %{buildroot}%{_bindir}/ptaskset
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc COPYING
|
||||||
|
%{_bindir}/pchrt
|
||||||
|
%{_bindir}/ptaskset
|
||||||
|
%{python_sitearch}/schedutils.so
|
||||||
|
%if "%{python_ver}" >= "2.5"
|
||||||
|
%{python_sitearch}/*.egg-info
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Aug 28 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.2-2
|
||||||
|
- Fix build and install sections as suggested by the fedora rewiewer
|
||||||
|
(BZ #460387)
|
||||||
|
|
||||||
|
* Wed Aug 27 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.2-1
|
||||||
|
- Add get_priority_{min,max} methods
|
||||||
|
- Add constants for SCHED_{BATCH,FIFO,OTHER,RR}
|
||||||
|
- Implement get_priority method
|
||||||
|
- Add pchrt utility for testing the bindings, chrt clone
|
||||||
|
- Add ptaskset utility for testing the bindings, taskset clone
|
||||||
|
|
||||||
|
* Tue Jun 10 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.1-3
|
||||||
|
- add dist to the release tag
|
||||||
|
|
||||||
|
* Tue Dec 19 2007 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.1-2
|
||||||
|
- First build into rhel5-rt
|
||||||
|
|
||||||
|
* Tue Dec 19 2007 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.1-1
|
||||||
|
- Initial package
|
Loading…
Reference in New Issue
Block a user