summaryrefslogtreecommitdiff
path: root/gtk3.spec
diff options
context:
space:
mode:
authorKalev Lember <kalevlember@gmail.com>2014-05-30 22:38:44 +0200
committerKalev Lember <kalevlember@gmail.com>2014-05-30 22:38:44 +0200
commitd743173952f55f2d61a63d6428b6c4df80d04a5c (patch)
treeff054f3bda0a5ad528385a8c9f5aa98b320d5fd2 /gtk3.spec
parentBackport two fixes from git master (diff)
downloadgtk3-classic-build-gtk3-d743173952f55f2d61a63d6428b6c4df80d04a5c.tar.gz
gtk3-classic-build-gtk3-d743173952f55f2d61a63d6428b6c4df80d04a5c.tar.bz2
gtk3-classic-build-gtk3-d743173952f55f2d61a63d6428b6c4df80d04a5c.zip
Backport a GtkBuilder fix to ensure types get fully initialized
Diffstat (limited to 'gtk3.spec')
-rw-r--r--gtk3.spec7
1 files changed, 6 insertions, 1 deletions
diff --git a/gtk3.spec b/gtk3.spec
index 2c72c1c..e445b9a 100644
--- a/gtk3.spec
+++ b/gtk3.spec
@@ -17,7 +17,7 @@
Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X
Name: gtk3
Version: 3.13.2
-Release: 2%{?dist}
+Release: 3%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://www.gtk.org
@@ -27,6 +27,7 @@ Source: http://download.gnome.org/sources/gtk+/3.13/gtk+-%{version}.tar.xz
# Backports from git master
Patch1: 0001-eventcontroller-Ensure-controllers-stay-alive-during.patch
Patch2: 0002-Revert-GtkMisc-Keep-gtk_misc_set_alignment-working.patch
+Patch3: 0003-GtkBuilder-Ensure-types-are-fully-initialized.patch
BuildRequires: gnome-common autoconf automake intltool gettext
BuildRequires: atk-devel >= %{atk_version}
@@ -144,6 +145,7 @@ the functionality of the installed %{name} package.
%setup -q -n gtk+-%{version}
%patch1 -p1
%patch2 -p1
+%patch3 -p1
%build
@@ -309,6 +311,9 @@ gtk-query-immodules-3.0-%{__isa_bits} --update-cache
%{_datadir}/installed-tests
%changelog
+* Fri May 30 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.2-3
+- Backport a GtkBuilder fix to ensure types get fully initialized
+
* Fri May 30 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.2-2
- Backport two fixes from git master
bgstack15