rpms/gtk2/devel novalidate.patch, NONE, 1.1 .cvsignore, 1.73, 1.74 gtk2.spec, 1.255, 1.256 sources, 1.81, 1.82

Matthias Clasen (mclasen) fedora-extras-commits at redhat.com
Fri Sep 14 05:17:10 UTC 2007


Author: mclasen

Update of /cvs/extras/rpms/gtk2/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv3322

Modified Files:
	.cvsignore gtk2.spec sources 
Added Files:
	novalidate.patch 
Log Message:
2.12.0


novalidate.patch:

--- NEW FILE novalidate.patch ---
diff -up gtk+-2.12.0/gtk/gtkiconcache.c.novalidate gtk+-2.12.0/gtk/gtkiconcache.c
--- gtk+-2.12.0/gtk/gtkiconcache.c.novalidate	2007-09-14 01:13:49.000000000 -0400
+++ gtk+-2.12.0/gtk/gtkiconcache.c	2007-09-14 01:13:59.000000000 -0400
@@ -127,14 +127,19 @@ _gtk_icon_cache_new_for_path (const gcha
   info.n_directories = 0;
   info.flags = CHECK_OFFSETS|CHECK_STRINGS;
 
-  if (!_gtk_icon_cache_validate (&info))
+#ifdef G_ENABLE_DEBUG
+  if (gtk_debug_flags & GTK_DEBUG_ICONTHEME)
     {
-      g_mapped_file_free (map);
-      g_warning ("Icon cache '%s' is invalid\n", cache_filename);
+      if (!_gtk_icon_cache_validate (&info))
+        {
+          g_mapped_file_free (map);
+          g_warning ("Icon cache '%s' is invalid\n", cache_filename);
 
-      goto done;
+          goto done;
+        }
     }
-  
+#endif 
+
   GTK_NOTE (ICONTHEME, g_print ("found cache for %s\n", path));
 
   cache = g_new0 (GtkIconCache, 1);


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/gtk2/devel/.cvsignore,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- .cvsignore	23 Jul 2007 18:35:27 -0000	1.73
+++ .cvsignore	14 Sep 2007 05:16:37 -0000	1.74
@@ -1 +1 @@
-gtk+-2.11.6.tar.bz2
+gtk+-2.12.0.tar.bz2


Index: gtk2.spec
===================================================================
RCS file: /cvs/extras/rpms/gtk2/devel/gtk2.spec,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -r1.255 -r1.256
--- gtk2.spec	7 Sep 2007 20:15:12 -0000	1.255
+++ gtk2.spec	14 Sep 2007 05:16:37 -0000	1.256
@@ -2,7 +2,7 @@
 
 %define glib2_base_version 2.13.7
 %define glib2_version %{glib2_base_version}-1
-%define pango_base_version 1.15.3
+%define pango_base_version 1.17.3
 %define pango_version %{pango_base_version}-1
 %define atk_base_version 1.9.0
 %define atk_version %{atk_base_version}-1
@@ -10,13 +10,13 @@
 %define cairo_version %{cairo_base_version}-1
 %define libpng_version 2:1.2.2-16
 
-%define base_version 2.11.6
+%define base_version 2.12.0
 %define bin_version 2.10.0
 
 Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X
 Name: gtk2
 Version: %{base_version}
-Release: 9%{?dist}
+Release: 1%{?dist}
 License: LGPLv2+
 Group: System Environment/Libraries
 Source: http://download.gnome.org/sources/gtk+/2.11/gtk+-%{version}.tar.bz2
@@ -27,19 +27,11 @@
 Patch0: gtk+-2.4.1-lib64.patch
 # Fedora patch
 Patch1: gtk+-2.11.1-set-invisible-char-to-bullet.patch
-# use fam for recent-files
-#Patch2: gtk+-2.10.3-fam.patch
-# fixed in upstream svn
-Patch3: cups-authstring.patch
-# fixed in upstream svn
-Patch4: silence-icon-cache-validator.patch
-# fixed in upstream svn
-Patch5: systray-tooltips.patch
-# fixed in upstream svn
-Patch6: tooltip-compat.patch
 # a workaround for some brokenness in the flash plugin
 # see http://bugzilla.gnome.org/show_bug.cgi?id=463773
-Patch7: workaround.patch
+Patch2: workaround.patch
+# fixed in upstream svn
+Patch3: novalidate.patch
 
 BuildRequires: atk-devel >= %{atk_version}
 BuildRequires: pango-devel >= %{pango_version}
@@ -125,12 +117,8 @@
 
 %patch0 -p1 -b .lib64
 %patch1 -p1 -b .set-invisible-char-to-bullet
-#%patch2 -p1 -b .fam
-%patch3 -p0 -b .authstring
-%patch4 -p1 -b .silence
-%patch5 -p1 -b .tooltips
-%patch6 -p1 -b .tooltip-compat
-%patch7 -p1 -b .workaround
+%patch2 -p1 -b .workaround
+%patch3 -p1 -b .novalidate
 
 for i in config.guess config.sub ; do
   test -f %{_datadir}/libtool/$i && cp %{_datadir}/libtool/$i .
@@ -139,8 +127,7 @@
 %build
 libtoolize --force
 
-# Patch2 modifies gdk/Makefile.am
-# Patch3 modifies gdk-pixbuf/Makefile.am
+# Patch0 modifies gdk-pixbuf/Makefile.am
 aclocal-1.7
 automake-1.7
 autoconf
@@ -314,6 +301,9 @@
 %{_datadir}/gtk-2.0
 
 %changelog
+* Fri Sep 14 2007 Matthias Clasen <mclasen at redhat.com> - 2.12.0-1
+- Update to 2.12.0
+
 * Fri Sep  7 2007 Matthias Clasen <mclasen at redhat.com> - 2.11.6-9
 - Add a workaround for the flash plugin
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/gtk2/devel/sources,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- sources	23 Jul 2007 18:35:27 -0000	1.81
+++ sources	14 Sep 2007 05:16:37 -0000	1.82
@@ -1 +1 @@
-2b35ce357e138af23c52e4bceb1a63a0  gtk+-2.11.6.tar.bz2
+e9c280afec29b11772af5a7c807abf41  gtk+-2.12.0.tar.bz2




More information about the fedora-extras-commits mailing list