Date: Wednesday, February 24, 2016 @ 19:21:58
  Author: heftig
Revision: 260229

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  gtk3/repos/extra-i686/PKGBUILD
    (from rev 260228, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-i686/gtk-update-icon-cache.install
    (from rev 260228, gtk3/trunk/gtk-update-icon-cache.install)
  gtk3/repos/extra-i686/gtk3.install
    (from rev 260228, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-i686/settings.ini
    (from rev 260228, gtk3/trunk/settings.ini)
  gtk3/repos/extra-x86_64/PKGBUILD
    (from rev 260228, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.install
    (from rev 260228, gtk3/trunk/gtk-update-icon-cache.install)
  gtk3/repos/extra-x86_64/gtk3.install
    (from rev 260228, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-x86_64/settings.ini
    (from rev 260228, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/extra-i686/0001-file-chooser-Avoid-a-crash.patch
  
gtk3/repos/extra-i686/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch
  gtk3/repos/extra-i686/PKGBUILD
  gtk3/repos/extra-i686/gtk-update-icon-cache.install
  gtk3/repos/extra-i686/gtk3.install
  gtk3/repos/extra-i686/settings.ini
  gtk3/repos/extra-x86_64/0001-file-chooser-Avoid-a-crash.patch
  
gtk3/repos/extra-x86_64/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch
  gtk3/repos/extra-x86_64/PKGBUILD
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.install
  gtk3/repos/extra-x86_64/gtk3.install
  gtk3/repos/extra-x86_64/settings.ini

------------------------------------------------------------------------------+
 /PKGBUILD                                                                    | 
 132 ++++++++++
 /gtk-update-icon-cache.install                                               | 
   6 
 /gtk3.install                                                                | 
  36 ++
 /settings.ini                                                                | 
   8 
 extra-i686/0001-file-chooser-Avoid-a-crash.patch                             | 
  46 ---
 extra-i686/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch   | 
  42 ---
 extra-i686/PKGBUILD                                                          | 
  76 -----
 extra-i686/gtk-update-icon-cache.install                                     | 
   3 
 extra-i686/gtk3.install                                                      | 
  18 -
 extra-i686/settings.ini                                                      | 
   4 
 extra-x86_64/0001-file-chooser-Avoid-a-crash.patch                           | 
  46 ---
 extra-x86_64/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch | 
  42 ---
 extra-x86_64/PKGBUILD                                                        | 
  76 -----
 extra-x86_64/gtk-update-icon-cache.install                                   | 
   3 
 extra-x86_64/gtk3.install                                                    | 
  18 -
 extra-x86_64/settings.ini                                                    | 
   4 
 16 files changed, 182 insertions(+), 378 deletions(-)

Deleted: extra-i686/0001-file-chooser-Avoid-a-crash.patch
===================================================================
--- extra-i686/0001-file-chooser-Avoid-a-crash.patch    2016-02-24 18:16:21 UTC 
(rev 260228)
+++ extra-i686/0001-file-chooser-Avoid-a-crash.patch    2016-02-24 18:21:58 UTC 
(rev 260229)
@@ -1,46 +0,0 @@
-From f793da54a992d87da42c1f98e3cd5e9556c670ab Mon Sep 17 00:00:00 2001
-From: Matthias Clasen <mcla...@redhat.com>
-Date: Sat, 30 Jan 2016 23:07:56 -0500
-Subject: [PATCH] file chooser: Avoid a crash
-
-Since 39c2d12330b6d4405ca8a5599c12017c58626fcf,
-priv->operation_mode == OPERATION_MODE_BROWSE no longer
-guarantees that priv->browse_files_model is the current
-model of the list - we are only switching the models after
-loading the new directory. Avoid triggering the assertion
-in show_and_select_files by checking if we have right model
-before calling it.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=761209
----
- gtk/gtkfilechooserwidget.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c
-index 127e18b..d1a2ed8 100644
---- a/gtk/gtkfilechooserwidget.c
-+++ b/gtk/gtkfilechooserwidget.c
-@@ -5630,15 +5630,19 @@ gtk_file_chooser_widget_select_file (GtkFileChooser  
*chooser,
-   GtkFileChooserWidgetPrivate *priv = impl->priv;
-   GFile *parent_file;
-   gboolean same_path;
-+  GtkFileSystemModel *fsmodel;
- 
-   parent_file = g_file_get_parent (file);
- 
-   if (!parent_file)
-     return gtk_file_chooser_set_current_folder_file (chooser, file, error);
- 
-+  fsmodel = GTK_FILE_SYSTEM_MODEL (gtk_tree_view_get_model (GTK_TREE_VIEW 
(priv->browse_files_tree_view)));
-+
-   if (priv->operation_mode == OPERATION_MODE_SEARCH ||
-       priv->operation_mode == OPERATION_MODE_RECENT ||
--      priv->load_state == LOAD_EMPTY)
-+      priv->load_state == LOAD_EMPTY ||
-+      priv->browse_files_model != fsmodel)
-     {
-       same_path = FALSE;
-     }
--- 
-2.7.1
-

Deleted: 
extra-i686/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch
===================================================================
--- extra-i686/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch  
2016-02-24 18:16:21 UTC (rev 260228)
+++ extra-i686/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch  
2016-02-24 18:21:58 UTC (rev 260229)
@@ -1,42 +0,0 @@
-From 811a9b21c1bb226236d2a880f9cbbcbcf6028c2e Mon Sep 17 00:00:00 2001
-From: Matthias Clasen <mcla...@redhat.com>
-Date: Fri, 12 Feb 2016 20:35:26 -0500
-Subject: [PATCH] file chooser: Use the right model when getting the selection
-
-We don't need to make assumptions about which model is currently
-used since gtk_tree_selection_get_selection hands us the model.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=761757
----
- gtk/gtkfilechooserwidget.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c
-index c77a8b7..6ef25b6 100644
---- a/gtk/gtkfilechooserwidget.c
-+++ b/gtk/gtkfilechooserwidget.c
-@@ -6266,10 +6266,11 @@ get_selected_file_info_from_file_list 
(GtkFileChooserWidget *impl,
-   GtkTreeSelection *selection;
-   GtkTreeIter iter;
-   GFileInfo *info;
-+  GtkTreeModel *model;
- 
-   g_assert (!priv->select_multiple);
-   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW 
(priv->browse_files_tree_view));
--  if (!gtk_tree_selection_get_selected (selection, NULL, &iter))
-+  if (!gtk_tree_selection_get_selected (selection, &model, &iter))
-     {
-       *had_selection = FALSE;
-       return NULL;
-@@ -6277,7 +6278,7 @@ get_selected_file_info_from_file_list 
(GtkFileChooserWidget *impl,
- 
-   *had_selection = TRUE;
- 
--  info = _gtk_file_system_model_get_info (priv->browse_files_model, &iter);
-+  info = _gtk_file_system_model_get_info (GTK_FILE_SYSTEM_MODEL (model), 
&iter);
-   return info;
- }
- 
--- 
-2.7.1
-

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2016-02-24 18:16:21 UTC (rev 260228)
+++ extra-i686/PKGBUILD 2016-02-24 18:21:58 UTC (rev 260229)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru <ib...@archlinux.org>
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steff...@gmail.com>
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.18.7
-pkgrel=2
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(i686 x86_64)
-url="http://www.gtk.org/";
-depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
-         libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon
-         adwaita-icon-theme json-glib rest librsvg)
-makedepends=(gobject-introspection libcanberra gtk-doc)
-license=(LGPL)
-source=(https://download.gnome.org/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz
-        0001-file-chooser-Avoid-a-crash.patch
-        0001-file-chooser-Use-the-right-model-when-getting-the-se.patch
-        settings.ini)
-sha256sums=('a76e1cb0ac45ce5c2734f6778f2731a5c6a23d1ff6bd4db357774f014ee68820'
-            '36058e522839bcae775cbafef8d4ad21cba98265b5cf9e90d5b46b874ddbf79f'
-            '22c0272fdbb048ec8fe62d71bcb1ab6765050de3eb04e833ba7303750782d0a7'
-            '01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202')
-
-prepare() {
-    cd gtk+-$pkgver
-    NOCONFIGURE=1 ./autogen.sh
-
-    # https://bugzilla.gnome.org/show_bug.cgi?id=761209
-    patch -Np1 -i ../0001-file-chooser-Avoid-a-crash.patch
-
-    # https://bugzilla.gnome.org/show_bug.cgi?id=761757
-    patch -Np1 -i 
../0001-file-chooser-Use-the-right-model-when-getting-the-se.patch
-}
-
-build() {
-    cd "gtk+-$pkgver"
-
-    CXX=/bin/false ./configure --prefix=/usr \
-        --sysconfdir=/etc \
-        --localstatedir=/var \
-        --disable-schemas-compile \
-        --enable-x11-backend \
-        --enable-broadway-backend \
-        --enable-wayland-backend
-
-    #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-    sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-    make
-}
-
-package_gtk3() {
-    depends+=(gtk-update-icon-cache)
-    optdepends=('libcanberra: gtk3-widget-factory demo')
-    install=gtk3.install
-
-    cd "gtk+-$pkgver"
-    make DESTDIR="$pkgdir" install
-    install -Dm644 ../settings.ini "$pkgdir/usr/share/gtk-3.0/settings.ini"
-
-    # split this out to use with gtk2 too
-    rm "$pkgdir/usr/bin/gtk-update-icon-cache"
-}
-
-package_gtk-update-icon-cache() {
-    pkgdesc="GTK+ icon cache updater"
-    depends=(gdk-pixbuf2 hicolor-icon-theme)
-    install=gtk-update-icon-cache.install
-
-    cd gtk+-$pkgver/gtk
-    install -Dm755 gtk-update-icon-cache 
"$pkgdir/usr/bin/gtk-update-icon-cache"
-}
-
-# vim:set et sw=4:

Copied: gtk3/repos/extra-i686/PKGBUILD (from rev 260228, gtk3/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD                         (rev 0)
+++ extra-i686/PKGBUILD 2016-02-24 18:21:58 UTC (rev 260229)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Ionut Biru <ib...@archlinux.org>
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steff...@gmail.com>
+
+pkgbase=gtk3
+pkgname=(gtk3 gtk-update-icon-cache)
+pkgver=3.18.8
+pkgrel=1
+pkgdesc="GObject-based multi-platform GUI toolkit"
+arch=(i686 x86_64)
+url="http://www.gtk.org/";
+depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
+         libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon
+         adwaita-icon-theme json-glib rest librsvg)
+makedepends=(gobject-introspection libcanberra gtk-doc)
+license=(LGPL)
+source=(https://download.gnome.org/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz
+        settings.ini)
+sha256sums=('1c53ef1bb55364698f7183ecd185b547f92f4a3a7abfafd531400232e2e052f8'
+            '01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202')
+
+prepare() {
+    cd gtk+-$pkgver
+    NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+    cd "gtk+-$pkgver"
+
+    CXX=/bin/false ./configure --prefix=/usr \
+        --sysconfdir=/etc \
+        --localstatedir=/var \
+        --disable-schemas-compile \
+        --enable-x11-backend \
+        --enable-broadway-backend \
+        --enable-wayland-backend
+
+    #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+    sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+    make
+}
+
+package_gtk3() {
+    depends+=(gtk-update-icon-cache)
+    optdepends=('libcanberra: gtk3-widget-factory demo')
+    install=gtk3.install
+
+    cd "gtk+-$pkgver"
+    make DESTDIR="$pkgdir" install
+    install -Dm644 ../settings.ini "$pkgdir/usr/share/gtk-3.0/settings.ini"
+
+    # split this out to use with gtk2 too
+    rm "$pkgdir/usr/bin/gtk-update-icon-cache"
+}
+
+package_gtk-update-icon-cache() {
+    pkgdesc="GTK+ icon cache updater"
+    depends=(gdk-pixbuf2 hicolor-icon-theme)
+    install=gtk-update-icon-cache.install
+
+    cd gtk+-$pkgver/gtk
+    install -Dm755 gtk-update-icon-cache 
"$pkgdir/usr/bin/gtk-update-icon-cache"
+}
+
+# vim:set et sw=4:

Deleted: extra-i686/gtk-update-icon-cache.install
===================================================================
--- extra-i686/gtk-update-icon-cache.install    2016-02-24 18:16:21 UTC (rev 
260228)
+++ extra-i686/gtk-update-icon-cache.install    2016-02-24 18:21:58 UTC (rev 
260229)
@@ -1,3 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}

Copied: gtk3/repos/extra-i686/gtk-update-icon-cache.install (from rev 260228, 
gtk3/trunk/gtk-update-icon-cache.install)
===================================================================
--- extra-i686/gtk-update-icon-cache.install                            (rev 0)
+++ extra-i686/gtk-update-icon-cache.install    2016-02-24 18:21:58 UTC (rev 
260229)
@@ -0,0 +1,3 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}

Deleted: extra-i686/gtk3.install
===================================================================
--- extra-i686/gtk3.install     2016-02-24 18:16:21 UTC (rev 260228)
+++ extra-i686/gtk3.install     2016-02-24 18:21:58 UTC (rev 260229)
@@ -1,18 +0,0 @@
-post_install() {
-    /usr/bin/gtk-query-immodules-3.0 --update-cache
-    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
-    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-    post_install
-}
-
-pre_remove() {
-    rm -f /usr/lib/gtk-3.0/3.0.0/immodules.cache
-}
-
-post_remove() {
-    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
-    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}

Copied: gtk3/repos/extra-i686/gtk3.install (from rev 260228, 
gtk3/trunk/gtk3.install)
===================================================================
--- extra-i686/gtk3.install                             (rev 0)
+++ extra-i686/gtk3.install     2016-02-24 18:21:58 UTC (rev 260229)
@@ -0,0 +1,18 @@
+post_install() {
+    /usr/bin/gtk-query-immodules-3.0 --update-cache
+    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
+    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+    post_install
+}
+
+pre_remove() {
+    rm -f /usr/lib/gtk-3.0/3.0.0/immodules.cache
+}
+
+post_remove() {
+    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
+    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}

Deleted: extra-i686/settings.ini
===================================================================
--- extra-i686/settings.ini     2016-02-24 18:16:21 UTC (rev 260228)
+++ extra-i686/settings.ini     2016-02-24 18:21:58 UTC (rev 260229)
@@ -1,4 +0,0 @@
-[Settings]
-gtk-icon-theme-name = Adwaita
-gtk-theme-name = Adwaita
-gtk-font-name = Cantarell 11

Copied: gtk3/repos/extra-i686/settings.ini (from rev 260228, 
gtk3/trunk/settings.ini)
===================================================================
--- extra-i686/settings.ini                             (rev 0)
+++ extra-i686/settings.ini     2016-02-24 18:21:58 UTC (rev 260229)
@@ -0,0 +1,4 @@
+[Settings]
+gtk-icon-theme-name = Adwaita
+gtk-theme-name = Adwaita
+gtk-font-name = Cantarell 11

Deleted: extra-x86_64/0001-file-chooser-Avoid-a-crash.patch
===================================================================
--- extra-x86_64/0001-file-chooser-Avoid-a-crash.patch  2016-02-24 18:16:21 UTC 
(rev 260228)
+++ extra-x86_64/0001-file-chooser-Avoid-a-crash.patch  2016-02-24 18:21:58 UTC 
(rev 260229)
@@ -1,46 +0,0 @@
-From f793da54a992d87da42c1f98e3cd5e9556c670ab Mon Sep 17 00:00:00 2001
-From: Matthias Clasen <mcla...@redhat.com>
-Date: Sat, 30 Jan 2016 23:07:56 -0500
-Subject: [PATCH] file chooser: Avoid a crash
-
-Since 39c2d12330b6d4405ca8a5599c12017c58626fcf,
-priv->operation_mode == OPERATION_MODE_BROWSE no longer
-guarantees that priv->browse_files_model is the current
-model of the list - we are only switching the models after
-loading the new directory. Avoid triggering the assertion
-in show_and_select_files by checking if we have right model
-before calling it.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=761209
----
- gtk/gtkfilechooserwidget.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c
-index 127e18b..d1a2ed8 100644
---- a/gtk/gtkfilechooserwidget.c
-+++ b/gtk/gtkfilechooserwidget.c
-@@ -5630,15 +5630,19 @@ gtk_file_chooser_widget_select_file (GtkFileChooser  
*chooser,
-   GtkFileChooserWidgetPrivate *priv = impl->priv;
-   GFile *parent_file;
-   gboolean same_path;
-+  GtkFileSystemModel *fsmodel;
- 
-   parent_file = g_file_get_parent (file);
- 
-   if (!parent_file)
-     return gtk_file_chooser_set_current_folder_file (chooser, file, error);
- 
-+  fsmodel = GTK_FILE_SYSTEM_MODEL (gtk_tree_view_get_model (GTK_TREE_VIEW 
(priv->browse_files_tree_view)));
-+
-   if (priv->operation_mode == OPERATION_MODE_SEARCH ||
-       priv->operation_mode == OPERATION_MODE_RECENT ||
--      priv->load_state == LOAD_EMPTY)
-+      priv->load_state == LOAD_EMPTY ||
-+      priv->browse_files_model != fsmodel)
-     {
-       same_path = FALSE;
-     }
--- 
-2.7.1
-

Deleted: 
extra-x86_64/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch
===================================================================
--- 
extra-x86_64/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch    
    2016-02-24 18:16:21 UTC (rev 260228)
+++ 
extra-x86_64/0001-file-chooser-Use-the-right-model-when-getting-the-se.patch    
    2016-02-24 18:21:58 UTC (rev 260229)
@@ -1,42 +0,0 @@
-From 811a9b21c1bb226236d2a880f9cbbcbcf6028c2e Mon Sep 17 00:00:00 2001
-From: Matthias Clasen <mcla...@redhat.com>
-Date: Fri, 12 Feb 2016 20:35:26 -0500
-Subject: [PATCH] file chooser: Use the right model when getting the selection
-
-We don't need to make assumptions about which model is currently
-used since gtk_tree_selection_get_selection hands us the model.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=761757
----
- gtk/gtkfilechooserwidget.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c
-index c77a8b7..6ef25b6 100644
---- a/gtk/gtkfilechooserwidget.c
-+++ b/gtk/gtkfilechooserwidget.c
-@@ -6266,10 +6266,11 @@ get_selected_file_info_from_file_list 
(GtkFileChooserWidget *impl,
-   GtkTreeSelection *selection;
-   GtkTreeIter iter;
-   GFileInfo *info;
-+  GtkTreeModel *model;
- 
-   g_assert (!priv->select_multiple);
-   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW 
(priv->browse_files_tree_view));
--  if (!gtk_tree_selection_get_selected (selection, NULL, &iter))
-+  if (!gtk_tree_selection_get_selected (selection, &model, &iter))
-     {
-       *had_selection = FALSE;
-       return NULL;
-@@ -6277,7 +6278,7 @@ get_selected_file_info_from_file_list 
(GtkFileChooserWidget *impl,
- 
-   *had_selection = TRUE;
- 
--  info = _gtk_file_system_model_get_info (priv->browse_files_model, &iter);
-+  info = _gtk_file_system_model_get_info (GTK_FILE_SYSTEM_MODEL (model), 
&iter);
-   return info;
- }
- 
--- 
-2.7.1
-

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD       2016-02-24 18:16:21 UTC (rev 260228)
+++ extra-x86_64/PKGBUILD       2016-02-24 18:21:58 UTC (rev 260229)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru <ib...@archlinux.org>
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steff...@gmail.com>
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.18.7
-pkgrel=2
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(i686 x86_64)
-url="http://www.gtk.org/";
-depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
-         libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon
-         adwaita-icon-theme json-glib rest librsvg)
-makedepends=(gobject-introspection libcanberra gtk-doc)
-license=(LGPL)
-source=(https://download.gnome.org/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz
-        0001-file-chooser-Avoid-a-crash.patch
-        0001-file-chooser-Use-the-right-model-when-getting-the-se.patch
-        settings.ini)
-sha256sums=('a76e1cb0ac45ce5c2734f6778f2731a5c6a23d1ff6bd4db357774f014ee68820'
-            '36058e522839bcae775cbafef8d4ad21cba98265b5cf9e90d5b46b874ddbf79f'
-            '22c0272fdbb048ec8fe62d71bcb1ab6765050de3eb04e833ba7303750782d0a7'
-            '01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202')
-
-prepare() {
-    cd gtk+-$pkgver
-    NOCONFIGURE=1 ./autogen.sh
-
-    # https://bugzilla.gnome.org/show_bug.cgi?id=761209
-    patch -Np1 -i ../0001-file-chooser-Avoid-a-crash.patch
-
-    # https://bugzilla.gnome.org/show_bug.cgi?id=761757
-    patch -Np1 -i 
../0001-file-chooser-Use-the-right-model-when-getting-the-se.patch
-}
-
-build() {
-    cd "gtk+-$pkgver"
-
-    CXX=/bin/false ./configure --prefix=/usr \
-        --sysconfdir=/etc \
-        --localstatedir=/var \
-        --disable-schemas-compile \
-        --enable-x11-backend \
-        --enable-broadway-backend \
-        --enable-wayland-backend
-
-    #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-    sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-    make
-}
-
-package_gtk3() {
-    depends+=(gtk-update-icon-cache)
-    optdepends=('libcanberra: gtk3-widget-factory demo')
-    install=gtk3.install
-
-    cd "gtk+-$pkgver"
-    make DESTDIR="$pkgdir" install
-    install -Dm644 ../settings.ini "$pkgdir/usr/share/gtk-3.0/settings.ini"
-
-    # split this out to use with gtk2 too
-    rm "$pkgdir/usr/bin/gtk-update-icon-cache"
-}
-
-package_gtk-update-icon-cache() {
-    pkgdesc="GTK+ icon cache updater"
-    depends=(gdk-pixbuf2 hicolor-icon-theme)
-    install=gtk-update-icon-cache.install
-
-    cd gtk+-$pkgver/gtk
-    install -Dm755 gtk-update-icon-cache 
"$pkgdir/usr/bin/gtk-update-icon-cache"
-}
-
-# vim:set et sw=4:

Copied: gtk3/repos/extra-x86_64/PKGBUILD (from rev 260228, gtk3/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD                               (rev 0)
+++ extra-x86_64/PKGBUILD       2016-02-24 18:21:58 UTC (rev 260229)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Ionut Biru <ib...@archlinux.org>
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steff...@gmail.com>
+
+pkgbase=gtk3
+pkgname=(gtk3 gtk-update-icon-cache)
+pkgver=3.18.8
+pkgrel=1
+pkgdesc="GObject-based multi-platform GUI toolkit"
+arch=(i686 x86_64)
+url="http://www.gtk.org/";
+depends=(atk cairo libcups libxcursor libxinerama libxrandr libxi libepoxy 
gdk-pixbuf2
+         libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon
+         adwaita-icon-theme json-glib rest librsvg)
+makedepends=(gobject-introspection libcanberra gtk-doc)
+license=(LGPL)
+source=(https://download.gnome.org/sources/gtk+/${pkgver:0:4}/gtk+-$pkgver.tar.xz
+        settings.ini)
+sha256sums=('1c53ef1bb55364698f7183ecd185b547f92f4a3a7abfafd531400232e2e052f8'
+            '01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202')
+
+prepare() {
+    cd gtk+-$pkgver
+    NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+    cd "gtk+-$pkgver"
+
+    CXX=/bin/false ./configure --prefix=/usr \
+        --sysconfdir=/etc \
+        --localstatedir=/var \
+        --disable-schemas-compile \
+        --enable-x11-backend \
+        --enable-broadway-backend \
+        --enable-wayland-backend
+
+    #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+    sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+    make
+}
+
+package_gtk3() {
+    depends+=(gtk-update-icon-cache)
+    optdepends=('libcanberra: gtk3-widget-factory demo')
+    install=gtk3.install
+
+    cd "gtk+-$pkgver"
+    make DESTDIR="$pkgdir" install
+    install -Dm644 ../settings.ini "$pkgdir/usr/share/gtk-3.0/settings.ini"
+
+    # split this out to use with gtk2 too
+    rm "$pkgdir/usr/bin/gtk-update-icon-cache"
+}
+
+package_gtk-update-icon-cache() {
+    pkgdesc="GTK+ icon cache updater"
+    depends=(gdk-pixbuf2 hicolor-icon-theme)
+    install=gtk-update-icon-cache.install
+
+    cd gtk+-$pkgver/gtk
+    install -Dm755 gtk-update-icon-cache 
"$pkgdir/usr/bin/gtk-update-icon-cache"
+}
+
+# vim:set et sw=4:

Deleted: extra-x86_64/gtk-update-icon-cache.install
===================================================================
--- extra-x86_64/gtk-update-icon-cache.install  2016-02-24 18:16:21 UTC (rev 
260228)
+++ extra-x86_64/gtk-update-icon-cache.install  2016-02-24 18:21:58 UTC (rev 
260229)
@@ -1,3 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}

Copied: gtk3/repos/extra-x86_64/gtk-update-icon-cache.install (from rev 260228, 
gtk3/trunk/gtk-update-icon-cache.install)
===================================================================
--- extra-x86_64/gtk-update-icon-cache.install                          (rev 0)
+++ extra-x86_64/gtk-update-icon-cache.install  2016-02-24 18:21:58 UTC (rev 
260229)
@@ -0,0 +1,3 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}

Deleted: extra-x86_64/gtk3.install
===================================================================
--- extra-x86_64/gtk3.install   2016-02-24 18:16:21 UTC (rev 260228)
+++ extra-x86_64/gtk3.install   2016-02-24 18:21:58 UTC (rev 260229)
@@ -1,18 +0,0 @@
-post_install() {
-    /usr/bin/gtk-query-immodules-3.0 --update-cache
-    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
-    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-    post_install
-}
-
-pre_remove() {
-    rm -f /usr/lib/gtk-3.0/3.0.0/immodules.cache
-}
-
-post_remove() {
-    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
-    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}

Copied: gtk3/repos/extra-x86_64/gtk3.install (from rev 260228, 
gtk3/trunk/gtk3.install)
===================================================================
--- extra-x86_64/gtk3.install                           (rev 0)
+++ extra-x86_64/gtk3.install   2016-02-24 18:21:58 UTC (rev 260229)
@@ -0,0 +1,18 @@
+post_install() {
+    /usr/bin/gtk-query-immodules-3.0 --update-cache
+    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
+    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+    post_install
+}
+
+pre_remove() {
+    rm -f /usr/lib/gtk-3.0/3.0.0/immodules.cache
+}
+
+post_remove() {
+    /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
+    /usr/bin/gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}

Deleted: extra-x86_64/settings.ini
===================================================================
--- extra-x86_64/settings.ini   2016-02-24 18:16:21 UTC (rev 260228)
+++ extra-x86_64/settings.ini   2016-02-24 18:21:58 UTC (rev 260229)
@@ -1,4 +0,0 @@
-[Settings]
-gtk-icon-theme-name = Adwaita
-gtk-theme-name = Adwaita
-gtk-font-name = Cantarell 11

Copied: gtk3/repos/extra-x86_64/settings.ini (from rev 260228, 
gtk3/trunk/settings.ini)
===================================================================
--- extra-x86_64/settings.ini                           (rev 0)
+++ extra-x86_64/settings.ini   2016-02-24 18:21:58 UTC (rev 260229)
@@ -0,0 +1,4 @@
+[Settings]
+gtk-icon-theme-name = Adwaita
+gtk-theme-name = Adwaita
+gtk-font-name = Cantarell 11

Reply via email to