Hello community, here is the log from the commit of package rtkit for openSUSE:Factory checked in at 2012-09-25 14:03:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rtkit (Old) and /work/SRC/openSUSE:Factory/.rtkit.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rtkit", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/rtkit/rtkit.changes 2011-12-21 14:59:03.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.rtkit.new/rtkit.changes 2012-09-25 14:18:14.000000000 +0200 @@ -1,0 +2,11 @@ +Sun Sep 23 13:48:55 UTC 2012 - [email protected] + +- rtkit-use-system-sd-daemon.patch Use system sddaemon libs. + +------------------------------------------------------------------- +Sun Sep 23 03:47:35 UTC 2012 - [email protected] + +- Update to version 0.11.x, not much has changed other + than systemd related updates/improvements. + +------------------------------------------------------------------- Old: ---- rtkit-0.10_git201107141740.tar.bz2 New: ---- rtkit-0.11_git201205151338.tar.xz rtkit-use-system-sd-daemon.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rtkit.spec ++++++ --- /var/tmp/diff_new_pack.PGebHZ/_old 2012-09-25 14:18:15.000000000 +0200 +++ /var/tmp/diff_new_pack.PGebHZ/_new 2012-09-25 14:18:15.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package rtkit # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 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 @@ -15,27 +15,31 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + Name: rtkit Summary: Realtime Policy and Watchdog Daemon License: GPL-3.0+ and BSD-3-Clause Group: System/Base -Version: 0.10_git201107141740 +Version: 0.11_git201205151338 Release: 0 # The daemon itself is GPL v3 or later, the reference implementation for the client BSD-3-Clause -Source: %{name}-%{version}.tar.bz2 +Source: %{name}-%{version}.tar.xz Url: http://git.0pointer.de/?p=rtkit.git BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: automake BuildRequires: dbus-1-devel >= 1.2 BuildRequires: libcap-devel BuildRequires: polkit-devel +BuildRequires: xz Requires: polkit PreReq: dbus-1 %if 0%{?suse_version} > 1140 BuildRequires: systemd +BuildRequires: pkgconfig(libsystemd-daemon) %{?systemd_requires} %define has_systemd 1 %endif +Patch0: rtkit-use-system-sd-daemon.patch %description RealtimeKit is a D-Bus system service that changes the @@ -46,11 +50,11 @@ %prep %setup -q +%patch0 -p1 %build -./bootstrap.sh -# %configure --libexecdir=$prefix/lib/rtkit -%configure \ +autoreconf -fiv +%configure --disable-silent-rules \ %if 0%{?has_systemd} --with-systemdsystemunitdir=%{_unitdir} \ %endif ++++++ rtkit-use-system-sd-daemon.patch ++++++ diff --git a/Makefile.am b/Makefile.am index febc355..611cf14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -56,13 +56,16 @@ systemdsystemunit_DATA = \ endif rtkit_daemon_SOURCES = \ - rtkit-daemon.c rtkit.h \ - sd-daemon.c sd-daemon.h + rtkit-daemon.c rtkit.h + rtkit_daemon_LDADD = \ - $(DBUS_LIBS) + $(DBUS_LIBS) \ + $(SD_DAEMON_LIBS) + rtkit_daemon_CFLAGS = \ $(AM_CFLAGS) \ - $(DBUS_CFLAGS) + $(DBUS_CFLAGS) \ + $(SD_DAEMON_CFLAGS) rtkitctl_SOURCES = \ rtkitctl.c rtkit.h diff --git a/configure.ac b/configure.ac index 5a77363..2806def 100644 --- a/configure.ac +++ b/configure.ac @@ -115,6 +115,7 @@ AC_SEARCH_LIBS([clock_gettime], [rt]) AC_SEARCH_LIBS([cap_init], [cap]) PKG_CHECK_MODULES(DBUS, dbus-1) +PKG_CHECK_MODULES([SD_DAEMON], libsystemd-daemon) AC_ARG_WITH([systemdsystemunitdir], AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]), -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
