Hello community, here is the log from the commit of package gtksourceview for openSUSE:Factory checked in at 2013-09-11 12:10:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gtksourceview (Old) and /work/SRC/openSUSE:Factory/.gtksourceview.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gtksourceview" Changes: -------- --- /work/SRC/openSUSE:Factory/gtksourceview/gtksourceview.changes 2013-08-30 17:17:35.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.gtksourceview.new/gtksourceview.changes 2013-09-11 12:10:46.000000000 +0200 @@ -1,0 +2,16 @@ +Mon Sep 9 19:11:25 UTC 2013 - [email protected] + +- Add gtksourceview-mm-buildfix.patch: Use the expected typedef for + GtkSourceStyleClass. + +------------------------------------------------------------------- +Tue Sep 3 06:44:45 UTC 2013 - [email protected] + +- Update to version 3.9.91: + + Improvements to the completion. + + API break for the search and replace. + + Deprecate the GtkSourceMarkAttributes:stock-id property. + + Misc bugfixes. + + Updated translations. + +------------------------------------------------------------------- Old: ---- gtksourceview-3.9.90.tar.xz New: ---- gtksourceview-3.9.91.tar.xz gtksourceview-mm-buildfix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gtksourceview.spec ++++++ --- /var/tmp/diff_new_pack.WncFwO/_old 2013-09-11 12:10:47.000000000 +0200 +++ /var/tmp/diff_new_pack.WncFwO/_new 2013-09-11 12:10:47.000000000 +0200 @@ -17,13 +17,15 @@ Name: gtksourceview -Version: 3.9.90 +Version: 3.9.91 Release: 0 Summary: GTK+ Source Editing Widget License: GPL-2.0+ Group: System/GUI/GNOME Url: http://www.gnome.org/ Source: http://download.gnome.org/sources/gtksourceview/3.9/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM gtksourceview-mm-buildfix.patch bgo#679424 bgo#707756 [email protected] -- Use the expected typedef for GtkSourceStyleClass. +Patch0: gtksourceview-mm-buildfix.patch BuildRequires: fdupes BuildRequires: gobject-introspection-devel BuildRequires: intltool @@ -105,6 +107,7 @@ %lang_package %prep %setup -q +%patch0 -p1 translation-update-upstream %build ++++++ gtksourceview-3.9.90.tar.xz -> gtksourceview-3.9.91.tar.xz ++++++ ++++ 30730 lines of diff (skipped) ++++++ gtksourceview-mm-buildfix.patch ++++++ >From 54e49061f6b59772ae71b2360691bdc0742cfcef Mon Sep 17 00:00:00 2001 From: Murray Cumming <[email protected]> Date: Mon, 9 Sep 2013 21:01:38 +0200 Subject: [PATCH] SourceStyle: Use the expected typedef for GtkSourceStyleClass. typedeffing GtkSourceStyleClass to GObjectClass was a shortcut that was acceptable when hidden in the .c file, but putting it in the header conflicts with the expectation that it will be declared like other such *Class structs. This fixes that, so gtksourceviewmm can build again, because gtksourceviewmm has to duplicate the (expected) declaration. --- gtksourceview/gtksourcestyle.c | 5 +++++ gtksourceview/gtksourcestyle.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gtksourceview/gtksourcestyle.c b/gtksourceview/gtksourcestyle.c index cc753d2..0d86b62 100644 --- a/gtksourceview/gtksourcestyle.c +++ b/gtksourceview/gtksourcestyle.c @@ -43,6 +43,11 @@ static void gtk_source_style_get_property (GObject *object, GValue *value, GParamSpec *pspec); +struct _GtkSourceStyleClass +{ + GObjectClass parent_class; +}; + G_DEFINE_TYPE (GtkSourceStyle, gtk_source_style, G_TYPE_OBJECT) enum diff --git a/gtksourceview/gtksourcestyle.h b/gtksourceview/gtksourcestyle.h index ad268fb..58fdd00 100644 --- a/gtksourceview/gtksourcestyle.h +++ b/gtksourceview/gtksourcestyle.h @@ -34,7 +34,7 @@ G_BEGIN_DECLS #define GTK_SOURCE_IS_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_SOURCE_TYPE_STYLE)) #define GTK_SOURCE_STYLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_SOURCE_TYPE_STYLE, GtkSourceStyleClass)) -typedef GObjectClass GtkSourceStyleClass; +typedef struct _GtkSourceStyleClass GtkSourceStyleClass; GType gtk_source_style_get_type (void) G_GNUC_CONST; -- 1.8.1.2 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
