rpms/gtk2/devel .cvsignore, 1.117, 1.118 fresh-tooltips.patch, 1.1, 1.2 gtk2.spec, 1.410, 1.411 sources, 1.127, 1.128

Matthias Clasen mclasen at fedoraproject.org
Tue Dec 1 01:13:45 UTC 2009


Author: mclasen

Update of /cvs/pkgs/rpms/gtk2/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv24144

Modified Files:
	.cvsignore fresh-tooltips.patch gtk2.spec sources 
Log Message:
2.19.1



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/gtk2/devel/.cvsignore,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -p -r1.117 -r1.118
--- .cvsignore	23 Sep 2009 05:33:38 -0000	1.117
+++ .cvsignore	1 Dec 2009 01:13:45 -0000	1.118
@@ -1 +1 @@
-gtk+-2.18.0.tar.bz2
+gtk+-2.19.1.tar.bz2

fresh-tooltips.patch:
 gtktooltip.c |  264 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 gtkwidget.c  |    8 +
 2 files changed, 260 insertions(+), 12 deletions(-)

Index: fresh-tooltips.patch
===================================================================
RCS file: /cvs/pkgs/rpms/gtk2/devel/fresh-tooltips.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- fresh-tooltips.patch	2 Nov 2009 04:22:13 -0000	1.1
+++ fresh-tooltips.patch	1 Dec 2009 01:13:45 -0000	1.2
@@ -1,6 +1,6 @@
-diff -up gtk+-2.18.3/gtk/gtktooltip.c.fresh-tooltips gtk+-2.18.3/gtk/gtktooltip.c
---- gtk+-2.18.3/gtk/gtktooltip.c.fresh-tooltips	2009-10-16 10:35:45.000000000 -0400
-+++ gtk+-2.18.3/gtk/gtktooltip.c	2009-10-31 14:53:37.120183113 -0400
+diff -up gtk+-2.19.1/gtk/gtktooltip.c.fresh-tooltips gtk+-2.19.1/gtk/gtktooltip.c
+--- gtk+-2.19.1/gtk/gtktooltip.c.fresh-tooltips	2009-11-26 23:54:55.000000000 -0500
++++ gtk+-2.19.1/gtk/gtktooltip.c	2009-11-30 20:06:37.539580221 -0500
 @@ -29,6 +29,10 @@
  #include "gtkhbox.h"
  #include "gtkalignment.h"
@@ -100,33 +100,7 @@ diff -up gtk+-2.18.3/gtk/gtktooltip.c.fr
    tooltip->custom_widget = NULL;
  }
  
-@@ -318,9 +369,9 @@ gtk_tooltip_set_icon_from_stock (GtkTool
-  * Since: 2.14
-  */
- void
--gtk_tooltip_set_icon_from_icon_name(GtkTooltip  *tooltip,
--				    const gchar *icon_name,
--				    GtkIconSize  size)
-+gtk_tooltip_set_icon_from_icon_name (GtkTooltip  *tooltip,
-+				     const gchar *icon_name,
-+				     GtkIconSize  size)
- {
-   g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
- 
-@@ -471,27 +522,217 @@ static void
- gtk_tooltip_window_style_set (GtkTooltip *tooltip)
- {
-   gtk_alignment_set_padding (GTK_ALIGNMENT (tooltip->alignment),
--			     tooltip->window->style->ythickness,
--			     tooltip->window->style->ythickness,
--			     tooltip->window->style->xthickness,
-+	                     tooltip->window->style->ythickness,
-+	                     tooltip->window->style->ythickness,
-+		             tooltip->window->style->xthickness,
- 			     tooltip->window->style->xthickness);
--
-+  gtk_box_set_spacing (GTK_BOX (tooltip->box),
-+                       tooltip->window->style->xthickness);
+@@ -508,19 +559,208 @@ gtk_tooltip_window_style_set (GtkTooltip
    gtk_widget_queue_draw (tooltip->window);
  }
  
@@ -259,7 +233,7 @@ diff -up gtk+-2.18.3/gtk/gtktooltip.c.fr
 +          wm = gdk_x11_screen_get_window_manager_name (screen);
 +          if (g_strcmp0 (wm, "Metacity") == 0)
 +            gtk_window_set_type_hint (GTK_WINDOW (tooltip->window),
-+			              GDK_WINDOW_TYPE_HINT_DND);
++                                     GDK_WINDOW_TYPE_HINT_DND);
 +        }
 +#endif
 +      return;
@@ -345,7 +319,7 @@ diff -up gtk+-2.18.3/gtk/gtktooltip.c.fr
  
    return FALSE;
  }
-@@ -631,7 +872,7 @@ find_widget_under_pointer (GdkWindow *wi
+@@ -660,7 +900,7 @@ find_widget_under_pointer (GdkWindow *wi
  
  #ifdef DEBUG_TOOLTIP
    g_print ("event window %p (belonging to %p (%s))  (%d, %d)\n",
@@ -354,10 +328,10 @@ diff -up gtk+-2.18.3/gtk/gtktooltip.c.fr
  	   *x, *y);
  #endif
  
-diff -up gtk+-2.18.3/gtk/gtkwidget.c.fresh-tooltips gtk+-2.18.3/gtk/gtkwidget.c
---- gtk+-2.18.3/gtk/gtkwidget.c.fresh-tooltips	2009-10-09 01:00:44.000000000 -0400
-+++ gtk+-2.18.3/gtk/gtkwidget.c	2009-10-31 14:27:50.333957199 -0400
-@@ -2386,6 +2386,14 @@ gtk_widget_class_init (GtkWidgetClass *k
+diff -up gtk+-2.19.1/gtk/gtkwidget.c.fresh-tooltips gtk+-2.19.1/gtk/gtkwidget.c
+--- gtk+-2.19.1/gtk/gtkwidget.c.fresh-tooltips	2009-11-27 20:59:42.000000000 -0500
++++ gtk+-2.19.1/gtk/gtkwidget.c	2009-11-30 20:00:23.425825787 -0500
+@@ -2557,6 +2557,14 @@ gtk_widget_class_init (GtkWidgetClass *k
                                                               P_("The length of vertical scroll arrows"),
                                                               1, G_MAXINT, 16,
                                                               GTK_PARAM_READABLE));


Index: gtk2.spec
===================================================================
RCS file: /cvs/pkgs/rpms/gtk2/devel/gtk2.spec,v
retrieving revision 1.410
retrieving revision 1.411
diff -u -p -r1.410 -r1.411
--- gtk2.spec	25 Nov 2009 06:16:45 -0000	1.410
+++ gtk2.spec	1 Dec 2009 01:13:45 -0000	1.411
@@ -11,13 +11,13 @@
 %define libpng_version 2:1.2.2-16
 %define xrandr_version 1.2.99.4-2
 
-%define base_version 2.18.3
+%define base_version 2.19.1
 %define bin_version 2.10.0
 
 Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X
 Name: gtk2
 Version: %{base_version}
-Release: 22%{?dist}
+Release: 1%{?dist}
 License: LGPLv2+
 Group: System Environment/Libraries
 Source: http://download.gnome.org/sources/gtk+/2.18/gtk+-%{version}.tar.bz2
@@ -30,32 +30,16 @@ Patch0: gtk+-2.13.5-lib64.patch
 Patch1: system-python.patch
 # https://bugzilla.gnome.org/show_bug.cgi?id=583273
 Patch2: icon-padding.patch
-# from upstream
-Patch3: image-size-alloc.patch
 # https://bugzilla.gnome.org/show_bug.cgi?id=599617
 Patch4: fresh-tooltips.patch
-# from upstream
-Patch5: allow-set-hint.patch
-# from upstream
-Patch6: compose-sequences.patch
-# from upstream
-Patch7: symbolic-color-parsing.patch
 # https://bugzilla.gnome.org/show_bug.cgi?id=599618
 Patch8: tooltip-positioning.patch
-# https://bugzilla.gnome.org/show_bug.cgi?id=581150
-Patch9: iconview-hang.patch
-# https://bugzilla.gnome.org/show_bug.cgi?id=599446
-Patch10: toolbutton-assert.patch
 # http://bugzilla.redhat.com/show_bug.cgi?id=529364
 Patch11: gtk2-remove-connecting-reason.patch
 # https://bugzilla.gnome.org/show_bug.cgi?id=592582
-Patch12: gtk2-preview.patch
-Patch13: gtk2-rotate-layout.patch
 Patch14: gtk2-landscape-pdf-print.patch
 # https://bugzilla.gnome.org/show_bug.cgi?id=600992
 Patch15: filesystemref.patch
-# fixed upstream
-Patch16: 0001-Make-level3-keys-work-again.patch
 
 BuildRequires: atk-devel >= %{atk_version}
 BuildRequires: pango-devel >= %{pango_version}
@@ -169,20 +153,11 @@ This package contains developer document
 %patch0 -p1 -b .lib64
 %patch1 -p1 -b .system-python
 %patch2 -p1 -b .icon-padding
-%patch3 -p1 -b .image-size-alloc
 %patch4 -p1 -b .fresh-tooltips
-%patch5 -p1 -b .allow-set-hint
-%patch6 -p1 -b .compose-sequences
-%patch7 -p1 -b .symbolic-color-parsing
 %patch8 -p1 -b .tooltip-positioning
-%patch9 -p1 -b .iconview-hang
-%patch10 -p1 -b .toolbutton-assert
 %patch11 -p1 -b .remove-connecting-reason
-%patch12 -p1 -b .preview
-%patch13 -p1 -b .rotate-layout
 %patch14 -p1 -b .landscape-pdf-print
 %patch15 -p1 -b .filesystemref
-%patch16 -p1 -b .level3
 
 %build
 libtoolize --force --copy


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/gtk2/devel/sources,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -p -r1.127 -r1.128
--- sources	11 Nov 2009 02:51:27 -0000	1.127
+++ sources	1 Dec 2009 01:13:45 -0000	1.128
@@ -1 +1 @@
-369e173600efc272131b53b1902679e8  gtk+-2.18.3.tar.bz2
+d11e2044aedc49e155832c54dc9ac548  gtk+-2.19.1.tar.bz2




More information about the fedora-extras-commits mailing list