2009-06-19 15:31:35 +00:00
|
|
|
Name: rtkit
|
2009-08-05 01:48:49 +00:00
|
|
|
Version: 0.4
|
|
|
|
Release: 1%{?dist}
|
2009-06-19 15:31:35 +00:00
|
|
|
Summary: Realtime Policy and Watchdog Daemon
|
|
|
|
Group: System Environment/Base
|
|
|
|
# The daemon itself is GPLv3+, the reference implementation for the client BSD
|
|
|
|
License: GPLv3+ and BSD
|
|
|
|
URL: http://git.0pointer.de/?p=rtkit.git
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
Requires: dbus
|
|
|
|
Requires: polkit
|
|
|
|
BuildRequires: dbus-devel >= 1.2
|
|
|
|
BuildRequires: libcap-devel
|
|
|
|
BuildRequires: polkit-devel
|
|
|
|
Source0: http://0pointer.de/public/%{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
%description
|
|
|
|
RealtimeKit is a D-Bus system service that changes the
|
|
|
|
scheduling policy of user processes/threads to SCHED_RR (i.e. realtime
|
|
|
|
scheduling mode) on request. It is intended to be used as a secure
|
|
|
|
mechanism to allow real-time scheduling to be used by normal user
|
|
|
|
processes.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
./rtkit-daemon --introspect > org.freedesktop.RealtimeKit1.xml
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
install -D org.freedesktop.RealtimeKit1.xml $RPM_BUILD_ROOT/%{_datadir}/dbus-1/interfaces/org.freedesktop.RealtimeKit1.xml
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%pre
|
|
|
|
/usr/sbin/groupadd -f -r rtkit
|
|
|
|
/usr/bin/id rtkit >/dev/null 2>&1 || \
|
|
|
|
/usr/sbin/useradd -r -g rtkit -c 'RealtimeKit' -s /sbin/nologin -d /proc rtkit
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
%post
|
|
|
|
dbus-send --system --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig >/dev/null 2>&1 || :
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%doc README GPL LICENSE rtkit.c rtkit.h
|
|
|
|
%attr(0755,root,root) %{_sbindir}/rtkitctl
|
|
|
|
%attr(0755,root,root) %{_libexecdir}/rtkit-daemon
|
|
|
|
%{_datadir}/dbus-1/system-services/org.freedesktop.RealtimeKit1.service
|
|
|
|
%{_datadir}/dbus-1/interfaces/org.freedesktop.RealtimeKit1.xml
|
|
|
|
%{_datadir}/polkit-1/actions/org.freedesktop.RealtimeKit1.policy
|
|
|
|
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.RealtimeKit1.conf
|
|
|
|
|
|
|
|
%changelog
|
2009-08-05 01:48:49 +00:00
|
|
|
* Wed Aug 5 2009 Lennart Poettering <lpoetter@redhat.com> - 0.4-1
|
|
|
|
- New release
|
|
|
|
|
2009-07-27 03:18:39 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-02 00:51:14 +00:00
|
|
|
* Thu Jul 2 2009 Lennart Poettering <lpoetter@redhat.com> - 0.3-1
|
|
|
|
- New release
|
|
|
|
|
2009-06-19 15:31:35 +00:00
|
|
|
* Thu Jun 17 2009 Lennart Poettering <lpoetter@redhat.com> - 0.2-1
|
|
|
|
- Initial packaging
|