Marcus Meissner
1191221beb
- Update to version 0.11+git.20161005: * Drop removed ControlGroup stanza * systemd: update sd-daemon.[ch] * build-sys: since clock_gettime() moved to libc use mq_open to check for librt * Pass uid of caller to polkit * systemd: update sd-daemon.[ch] * git: update gitignore * git: update .gitignore * build-sys: modernize build system * systemd: secure rtkit service a bit * systemd: update unit file a bit - Drop rtkit-no-cpu-controlgroup.patch - Add -Wno-format-nonliteral -Wno-format-security to optflags in order to prepare for -Werror of these warnings in openSUSE:Factory. OBS-URL: https://build.opensuse.org/request/show/713257 OBS-URL: https://build.opensuse.org/package/show/Base:System/rtkit?expand=0&rev=36
101 lines
3.4 KiB
RPMSpec
101 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package rtkit
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: rtkit
|
|
Version: 0.11+git.20161005
|
|
Release: 0
|
|
Summary: Realtime Policy and Watchdog Daemon
|
|
# The daemon itself is GPL v3 or later, the reference implementation for
|
|
# the client BSD-3-Clause
|
|
License: GPL-3.0-or-later AND BSD-3-Clause
|
|
Group: System/Base
|
|
Url: http://git.0pointer.de/?p=rtkit.git
|
|
Source: %{name}-%{version}.tar.xz
|
|
BuildRequires: automake
|
|
BuildRequires: libcap-devel
|
|
BuildRequires: pkg-config
|
|
BuildRequires: systemd-rpm-macros
|
|
BuildRequires: xz
|
|
BuildRequires: pkgconfig(dbus-1) >= 1.2
|
|
BuildRequires: pkgconfig(polkit-agent-1)
|
|
BuildRequires: pkgconfig(polkit-gobject-1)
|
|
Requires: polkit
|
|
Requires(pre): dbus-1
|
|
Provides: %{name} = 0.11_git201205151338
|
|
Obsoletes: %{name} = 0.11_git201205151338
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%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
|
|
autoreconf -fiv
|
|
export CFLAGS="%{optflags} -fPIE -Wno-format-nonliteral -Wno-format-security"
|
|
export LDFLAGS="-Wl,-z,relro,-z,now -pie"
|
|
%configure \
|
|
--disable-silent-rules \
|
|
--with-systemdsystemunitdir=%{_unitdir} \
|
|
--libexecdir=%{_libexecdir}/rtkit
|
|
|
|
make %{?_smp_mflags}
|
|
./rtkit-daemon --introspect > org.freedesktop.RealtimeKit1.xml
|
|
|
|
%install
|
|
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
|
ln -sv %{_sbindir}/service %{buildroot}%{_sbindir}/rcrtkit-daemon
|
|
install -D -m 0644 org.freedesktop.RealtimeKit1.xml %{buildroot}/%{_datadir}/dbus-1/interfaces/org.freedesktop.RealtimeKit1.xml
|
|
|
|
%preun
|
|
%service_del_preun rtkit-daemon.service
|
|
|
|
%pre
|
|
groupadd -r rtkit >/dev/null 2>&1 || :
|
|
%{_bindir}/id rtkit >/dev/null 2>&1 || \
|
|
useradd -r -g rtkit -c 'RealtimeKit' -s /bin/false -d /proc rtkit
|
|
|
|
%service_add_pre rtkit-daemon.service
|
|
|
|
%post
|
|
dbus-send --system --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig >/dev/null 2>&1 || :
|
|
%service_add_post rtkit-daemon.service
|
|
|
|
%postun
|
|
%service_del_postun rtkit-daemon.service
|
|
|
|
%files
|
|
%defattr(0644,root,root,0755)
|
|
%doc README GPL LICENSE rtkit.c rtkit.h
|
|
%attr(0755,root,root) %{_sbindir}/rtkitctl
|
|
%dir %{_libexecdir}/rtkit
|
|
%attr(0755,root,root) %{_libexecdir}/rtkit/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
|
|
%{_mandir}/man8/rtkitctl.8%{ext_man}
|
|
%{_sbindir}/rcrtkit-daemon
|
|
%{_unitdir}/rtkit-daemon.service
|
|
|
|
%changelog
|