Hello community,

here is the log from the commit of package gobby for openSUSE:Factory checked 
in at 2013-04-19 15:34:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gobby (Old)
 and      /work/SRC/openSUSE:Factory/.gobby.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gobby", Maintainer is "gnome-maintain...@suse.de"

Changes:
--------
--- /work/SRC/openSUSE:Factory/gobby/gobby.changes      2013-04-19 
09:58:19.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.gobby.new/gobby.changes 2013-04-19 
15:34:23.000000000 +0200
@@ -1,0 +2,6 @@
+Fri Apr 19 08:28:51 UTC 2013 - dims...@opensuse.org
+
+- Add gobby-gtksourceview38.patch: Fix build with gtksourceview 3.8
+  that changed to single header includes.
+
+-------------------------------------------------------------------

New:
----
  gobby-gtksourceview38.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gobby.spec ++++++
--- /var/tmp/diff_new_pack.J0ZFgw/_old  2013-04-19 15:35:42.000000000 +0200
+++ /var/tmp/diff_new_pack.J0ZFgw/_new  2013-04-19 15:35:42.000000000 +0200
@@ -45,6 +45,8 @@
 Source:         %{name}-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM gobby-glibmm-2_31.patch 
http://gobby.0x539.de/trac/attachment/ticket/585/ dims...@opensuse.org -- Fix 
build with glibmm 2.31.
 Patch0:         gobby-glibmm-2_31.patch
+# PATCH-FIX-UPSTREAM gobby-gtksourceview38.patch dims...@opensuse.org -- Fix 
build with gtksourceview 3.8
+Patch1:         gobby-gtksourceview38.patch
 Url:            http://gobby.0x539.de/
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Requires(post): update-alternatives
@@ -69,6 +71,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %configure \

++++++ gobby-gtksourceview38.patch ++++++
Index: gobby-0.4.94/code/core/folder.hpp
===================================================================
--- gobby-0.4.94.orig/code/core/folder.hpp
+++ gobby-0.4.94/code/core/folder.hpp
@@ -28,7 +28,7 @@
 #include <gtkmm.h>
 #include <sigc++/signal.h>
 
-#include <gtksourceview/gtksourcelanguagemanager.h>
+#include <gtksourceview/gtksource.h>
 
 namespace Gobby
 {
Index: gobby-0.4.94/code/core/header.hpp
===================================================================
--- gobby-0.4.94.orig/code/core/header.hpp
+++ gobby-0.4.94/code/core/header.hpp
@@ -28,7 +28,7 @@
 #include <gtkmm/menubar.h>
 #include <gtkmm/toolbar.h>
 
-#include <gtksourceview/gtksourcelanguagemanager.h>
+#include <gtksourceview/gtksource.h>
 
 #include "preferences.hpp"
 
Index: gobby-0.4.94/code/core/noteplugin.cpp
===================================================================
--- gobby-0.4.94.orig/code/core/noteplugin.cpp
+++ gobby-0.4.94/code/core/noteplugin.cpp
@@ -25,7 +25,7 @@
 #include <libinfinity/common/inf-session.h>
 #include <libinfinity/common/inf-io.h>
 
-#include <gtksourceview/gtksourcebuffer.h>
+#include <gtksourceview/gtksource.h>
 
 namespace
 {
Index: gobby-0.4.94/code/core/preferences.hpp
===================================================================
--- gobby-0.4.94.orig/code/core/preferences.hpp
+++ gobby-0.4.94/code/core/preferences.hpp
@@ -23,8 +23,7 @@
 
 #include "features.hpp"
 
-#include <gtksourceview/gtksourceview.h>
-#include <gtksourceview/gtksourcestyleschememanager.h>
+#include <gtksourceview/gtksource.h>
 
 #include <gtkmm.h>
 
Index: gobby-0.4.94/code/core/textsessionview.hpp
===================================================================
--- gobby-0.4.94.orig/code/core/textsessionview.hpp
+++ gobby-0.4.94/code/core/textsessionview.hpp
@@ -25,9 +25,7 @@
 
 #include <gtkmm/tooltip.h>
 
-#include <gtksourceview/gtksourceview.h>
-#include <gtksourceview/gtksourcelanguagemanager.h>
-#include <gtksourceview/gtksourcelanguage.h>
+#include <gtksourceview/gtksource.h>
 
 #include <libinftextgtk/inf-text-gtk-view.h>
 #include <libinftextgtk/inf-text-gtk-viewport.h>
Index: gobby-0.4.94/code/dialogs/preferences-dialog.cpp
===================================================================
--- gobby-0.4.94.orig/code/dialogs/preferences-dialog.cpp
+++ gobby-0.4.94/code/dialogs/preferences-dialog.cpp
@@ -26,7 +26,7 @@
 #include <gtkmm/stock.h>
 #include <stdexcept>
 
-#include <gtksourceview/gtksourcestyleschememanager.h>
+#include <gtksourceview/gtksource.h>
 
 namespace
 {
Index: gobby-0.4.94/code/operations/operation-open.cpp
===================================================================
--- gobby-0.4.94.orig/code/operations/operation-open.cpp
+++ gobby-0.4.94/code/operations/operation-open.cpp
@@ -22,7 +22,7 @@
 #include "util/i18n.hpp"
 
 #include <libinftextgtk/inf-text-gtk-buffer.h>
-#include <gtksourceview/gtksourcebuffer.h>
+#include <gtksourceview/gtksource.h>
 
 #include <cerrno>
 #include <cstring> // memmove. Is there some C++ replacement for this?
Index: gobby-0.4.94/code/util/gtk-compat.hpp
===================================================================
--- gobby-0.4.94.orig/code/util/gtk-compat.hpp
+++ gobby-0.4.94/code/util/gtk-compat.hpp
@@ -30,7 +30,7 @@
 #include <gtkmm/notebook.h>
 #ifndef USE_GTKMM3
 #include <gtkmm/comboboxentry.h>
-#include <gtksourceview/gtksourceiter.h>
+#include <gtksourceview/gtksource.h>
 #endif
 
 #include <gdk/gdkkeysyms.h>
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to