Hello community, here is the log from the commit of package drwright for openSUSE:Factory checked in at 2013-04-20 17:41:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/drwright (Old) and /work/SRC/openSUSE:Factory/.drwright.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "drwright", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/drwright/drwright.changes 2012-10-18 15:54:53.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.drwright.new/drwright.changes 2013-04-20 17:41:28.000000000 +0200 @@ -1,0 +2,7 @@ +Fri Apr 19 22:29:42 UTC 2013 - [email protected] + +- Add drwright-gsd38.patch: Fix build with gnome-settings-daemon. +- Add pkgconfig(xscrnsaver): dependency bringing in the required + headers. + +------------------------------------------------------------------- New: ---- drwright-gsd38.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ drwright.spec ++++++ --- /var/tmp/diff_new_pack.T5zjb5/_old 2013-04-20 17:41:30.000000000 +0200 +++ /var/tmp/diff_new_pack.T5zjb5/_new 2013-04-20 17:41:30.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package drwright # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 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 @@ -26,6 +26,8 @@ Source: http://download.gnome.org/sources/drwright/3.5/%{name}-%{version}.tar.xz # PATCH-FIX-UPSTREAM drwright-gnome36.patch [email protected] -- Fix build with gnome-settings-daemon >= 3.5.91. Patch0: drwright-gnome36.patch +# PATCH-FIX-UPSTREAM drwright-gsd38.patch bgo#698413 [email protected] -- Fix build with gnome-settings-daemon >= 3.7.3 +Patch1: drwright-gsd38.patch # For directory ownership BuildRequires: gnome-control-center BuildRequires: intltool @@ -37,11 +39,12 @@ BuildRequires: pkgconfig(gdk-x11-3.0) BuildRequires: pkgconfig(gio-2.0) >= 2.31.13 BuildRequires: pkgconfig(glib-2.0) >= 2.31.13 -BuildRequires: pkgconfig(gnome-settings-daemon) >= 3.5.91 +BuildRequires: pkgconfig(gnome-settings-daemon) >= 3.7.3 BuildRequires: pkgconfig(gtk+-3.0) >= 3.0.0 BuildRequires: pkgconfig(libcanberra-gtk3) >= 0 BuildRequires: pkgconfig(libnotify) >= 0.7 BuildRequires: pkgconfig(x11) +BuildRequires: pkgconfig(xscrnsaver) # For the g-c-c panel Requires: gnome-control-center # For the g-s-d plugin @@ -58,6 +61,7 @@ %prep %setup -q %patch0 -p1 +%patch1 -p1 %build %configure --disable-static @@ -84,6 +88,8 @@ %doc AUTHORS ChangeLog COPYING NEWS %dir %{_libexecdir}/drwright %{_libexecdir}/drwright/gnome-typing-monitor +%dir %{_libdir}/control-center-1 +%dir %{_libdir}/control-center-1/panels %{_libdir}/control-center-1/panels/libdrwrightccp.so %{_libdir}/gnome-settings-daemon-3.0/libtyping-break.so %{_libdir}/gnome-settings-daemon-3.0/typing-break.gnome-settings-plugin ++++++ drwright-gsd38.patch ++++++ >From 75d3053882dafbf1eb8ccc1df2085d32e453ac37 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger <[email protected]> Date: Sat, 20 Apr 2013 00:02:11 +0200 Subject: [PATCH] Adapt to and require gnome-settings-daemon 3.7.3 https://bugzilla.gnome.org/show_bug.cgi?id=698413 --- configure.in | 2 +- src/Makefile.am | 1 - src/gsd-typing-break-plugin.c | 77 ++----------------------------------------- src/gsd-typing-break-plugin.h | 59 --------------------------------- 4 files changed, 3 insertions(+), 136 deletions(-) delete mode 100644 src/gsd-typing-break-plugin.h diff --git a/configure.in b/configure.in index 16f7cc4..6b6c5a7 100644 --- a/configure.in +++ b/configure.in @@ -48,7 +48,7 @@ GDK_PIXBUF_REQUIRED=2.25.3 GTK_REQUIRED=3.0.0 LIBCANBERRA_REQUIRED=0 LIBNOTIFY_REQUIRED=0.7 -GSD_REQUIRED=3.5.91 +GSD_REQUIRED=3.7.3 # ************ # Typing Break diff --git a/src/Makefile.am b/src/Makefile.am index 49ca76a..f8e09f2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -73,7 +73,6 @@ gsd_plugin_LTLIBRARIES = \ $(NULL) libtyping_break_la_SOURCES = \ - gsd-typing-break-plugin.h \ gsd-typing-break-plugin.c \ gsd-typing-break-manager.h \ gsd-typing-break-manager.c \ diff --git a/src/gsd-typing-break-plugin.c b/src/gsd-typing-break-plugin.c index 8150331..2cee4f3 100644 --- a/src/gsd-typing-break-plugin.c +++ b/src/gsd-typing-break-plugin.c @@ -23,81 +23,8 @@ #include <glib/gi18n-lib.h> #include <gmodule.h> -#include "gsd-typing-break-plugin.h" +#include <gnome-settings-daemon/gnome-settings-plugin.h> #include "gsd-typing-break-manager.h" -struct GsdTypingBreakPluginPrivate { - GsdTypingBreakManager *manager; -}; +GNOME_SETTINGS_PLUGIN_REGISTER (GsdTypingBreak, gsd_typing_break) -#define GSD_TYPING_BREAK_PLUGIN_GET_PRIVATE(object) (G_TYPE_INSTANCE_GET_PRIVATE ((object), GSD_TYPE_TYPING_BREAK_PLUGIN, GsdTypingBreakPluginPrivate)) - -GNOME_SETTINGS_PLUGIN_REGISTER (GsdTypingBreakPlugin, gsd_typing_break_plugin) - -static void -gsd_typing_break_plugin_init (GsdTypingBreakPlugin *plugin) -{ - plugin->priv = GSD_TYPING_BREAK_PLUGIN_GET_PRIVATE (plugin); - - g_debug ("GsdTypingBreakPlugin initializing"); - - plugin->priv->manager = gsd_typing_break_manager_new (); -} - -static void -gsd_typing_break_plugin_finalize (GObject *object) -{ - GsdTypingBreakPlugin *plugin; - - g_return_if_fail (object != NULL); - g_return_if_fail (GSD_IS_TYPING_BREAK_PLUGIN (object)); - - g_debug ("GsdTypingBreakPlugin finalizing"); - - plugin = GSD_TYPING_BREAK_PLUGIN (object); - - g_return_if_fail (plugin->priv != NULL); - - if (plugin->priv->manager != NULL) { - g_object_unref (plugin->priv->manager); - } - - G_OBJECT_CLASS (gsd_typing_break_plugin_parent_class)->finalize (object); -} - -static void -impl_activate (GnomeSettingsPlugin *plugin) -{ - gboolean res; - GError *error; - - g_debug ("Activating typing_break plugin"); - - error = NULL; - res = gsd_typing_break_manager_start (GSD_TYPING_BREAK_PLUGIN (plugin)->priv->manager, &error); - if (! res) { - g_warning ("Unable to start typing_break manager: %s", error->message); - g_error_free (error); - } -} - -static void -impl_deactivate (GnomeSettingsPlugin *plugin) -{ - g_debug ("Deactivating typing_break plugin"); - gsd_typing_break_manager_stop (GSD_TYPING_BREAK_PLUGIN (plugin)->priv->manager); -} - -static void -gsd_typing_break_plugin_class_init (GsdTypingBreakPluginClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - GnomeSettingsPluginClass *plugin_class = GNOME_SETTINGS_PLUGIN_CLASS (klass); - - object_class->finalize = gsd_typing_break_plugin_finalize; - - plugin_class->activate = impl_activate; - plugin_class->deactivate = impl_deactivate; - - g_type_class_add_private (klass, sizeof (GsdTypingBreakPluginPrivate)); -} diff --git a/src/gsd-typing-break-plugin.h b/src/gsd-typing-break-plugin.h deleted file mode 100644 index 50bee59..0000000 --- a/src/gsd-typing-break-plugin.h +++ /dev/null @@ -1,59 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- - * - * Copyright (C) 2007 William Jon McCann <[email protected]> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * - */ - -#ifndef __GSD_TYPING_BREAK_PLUGIN_H__ -#define __GSD_TYPING_BREAK_PLUGIN_H__ - -#include <glib.h> -#include <glib-object.h> -#include <gmodule.h> - -#include <gnome-settings-daemon/gnome-settings-plugin.h> - -G_BEGIN_DECLS - -#define GSD_TYPE_TYPING_BREAK_PLUGIN (gsd_typing_break_plugin_get_type ()) -#define GSD_TYPING_BREAK_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSD_TYPE_TYPING_BREAK_PLUGIN, GsdTypingBreakPlugin)) -#define GSD_TYPING_BREAK_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GSD_TYPE_TYPING_BREAK_PLUGIN, GsdTypingBreakPluginClass)) -#define GSD_IS_TYPING_BREAK_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSD_TYPE_TYPING_BREAK_PLUGIN)) -#define GSD_IS_TYPING_BREAK_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GSD_TYPE_TYPING_BREAK_PLUGIN)) -#define GSD_TYPING_BREAK_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GSD_TYPE_TYPING_BREAK_PLUGIN, GsdTypingBreakPluginClass)) - -typedef struct GsdTypingBreakPluginPrivate GsdTypingBreakPluginPrivate; - -typedef struct -{ - GnomeSettingsPlugin parent; - GsdTypingBreakPluginPrivate *priv; -} GsdTypingBreakPlugin; - -typedef struct -{ - GnomeSettingsPluginClass parent_class; -} GsdTypingBreakPluginClass; - -GType gsd_typing_break_plugin_get_type (void) G_GNUC_CONST; - -/* All the plugins must implement this function */ -G_MODULE_EXPORT GType register_gnome_settings_plugin (GTypeModule *module); - -G_END_DECLS - -#endif /* __GSD_TYPING_BREAK_PLUGIN_H__ */ -- 1.8.2.1 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
