[arch-commits] Commit in gconf-editor/repos (10 files)

Jan de Groot jgc at archlinux.org
Thu Aug 4 10:06:58 UTC 2016


    Date: Thursday, August 4, 2016 @ 10:06:57
  Author: jgc
Revision: 273017

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

Added:
  gconf-editor/repos/extra-i686/PKGBUILD
    (from rev 273016, gconf-editor/trunk/PKGBUILD)
  gconf-editor/repos/extra-i686/fix-assertion-failed-crash.patch
    (from rev 273016, gconf-editor/trunk/fix-assertion-failed-crash.patch)
  gconf-editor/repos/extra-x86_64/PKGBUILD
    (from rev 273016, gconf-editor/trunk/PKGBUILD)
  gconf-editor/repos/extra-x86_64/fix-assertion-failed-crash.patch
    (from rev 273016, gconf-editor/trunk/fix-assertion-failed-crash.patch)
Deleted:
  gconf-editor/repos/extra-i686/PKGBUILD
  gconf-editor/repos/extra-i686/fix-assertion-failed-crash.patch
  gconf-editor/repos/extra-i686/gconf-editor.install
  gconf-editor/repos/extra-x86_64/PKGBUILD
  gconf-editor/repos/extra-x86_64/fix-assertion-failed-crash.patch
  gconf-editor/repos/extra-x86_64/gconf-editor.install

-----------------------------------------------+
 /PKGBUILD                                     |   74 ++++++++++++++++++++++++
 /fix-assertion-failed-crash.patch             |   68 ++++++++++++++++++++++
 extra-i686/PKGBUILD                           |   35 -----------
 extra-i686/fix-assertion-failed-crash.patch   |   34 -----------
 extra-i686/gconf-editor.install               |   22 -------
 extra-x86_64/PKGBUILD                         |   35 -----------
 extra-x86_64/fix-assertion-failed-crash.patch |   34 -----------
 extra-x86_64/gconf-editor.install             |   22 -------
 8 files changed, 142 insertions(+), 182 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2016-08-04 10:06:53 UTC (rev 273016)
+++ extra-i686/PKGBUILD	2016-08-04 10:06:57 UTC (rev 273017)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-
-pkgname=gconf-editor
-pkgver=3.0.1
-pkgrel=3
-pkgdesc="Graphical gconf registry editor"
-arch=(i686 x86_64)
-license=('GPL')
-depends=('gconf' 'hicolor-icon-theme' 'gtk3')
-makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils')
-url="http://www.gnome.org"
-options=(!emptydirs)
-install=gconf-editor.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
-        fix-assertion-failed-crash.patch)
-sha256sums=('9afc4fc0d0afe019998736f06c04cbfa0393c813e2aa755133d95e83835f8869'
-            '6550714ee06d09632244d0f4f41402224599f5230ef71376ea34291ce0d651bc')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 -i "${srcdir}/fix-assertion-failed-crash.patch"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-     --localstatedir=/var --disable-scrollkeeper
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
-
-  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
-  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" --domain gconf-editor "$pkgdir"/etc/gconf/schemas/*.schemas
-  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
-}

Copied: gconf-editor/repos/extra-i686/PKGBUILD (from rev 273016, gconf-editor/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2016-08-04 10:06:57 UTC (rev 273017)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=gconf-editor
+pkgver=3.0.1
+pkgrel=4
+pkgdesc="Graphical gconf registry editor"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gconf' 'gtk3')
+makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils')
+url="http://www.gnome.org"
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+        fix-assertion-failed-crash.patch)
+sha256sums=('9afc4fc0d0afe019998736f06c04cbfa0393c813e2aa755133d95e83835f8869'
+            '6550714ee06d09632244d0f4f41402224599f5230ef71376ea34291ce0d651bc')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../fix-assertion-failed-crash.patch
+}
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+     --localstatedir=/var --disable-scrollkeeper
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" --domain gconf-editor "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Deleted: extra-i686/fix-assertion-failed-crash.patch
===================================================================
--- extra-i686/fix-assertion-failed-crash.patch	2016-08-04 10:06:53 UTC (rev 273016)
+++ extra-i686/fix-assertion-failed-crash.patch	2016-08-04 10:06:57 UTC (rev 273017)
@@ -1,34 +0,0 @@
-From 25d823099337f7ede4782f46fea46f251646dc3e Mon Sep 17 00:00:00 2001
-From: Edward Sheldrake <ejsheldrake at gmail.com>
-Date: Wed, 11 Apr 2012 07:27:16 +0000
-Subject: Fix assertion failed crash
-
-Fix "assertion failed: (last_slash != NULL)" crash while navigating the
-left tree view, fixed by having the model for the right list view emit
-all the row deleted signals before deleting any of its data.
-
-Fixes https://bugzilla.gnome.org/show_bug.cgi?id=670586
----
-diff --git a/src/gconf-list-model.c b/src/gconf-list-model.c
-index 27e1af6..4fc60f8 100644
---- a/src/gconf-list-model.c
-+++ b/src/gconf-list-model.c
-@@ -133,11 +133,14 @@ gconf_list_model_set_root_path (GConfListModel *model, const gchar *root_path)
- 
- 	if (model->root_path != NULL) {
- 		for (list = model->values; list; list = list->next) {
-+			model->stamp++;
-+			gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), path);
-+		}
-+
-+		for (list = model->values; list; list = list->next) {
- 			GConfEntry *entry = list->data;
- 
- 			g_hash_table_remove (model->key_hash, gconf_entry_get_key (entry));
--			model->stamp++;
--			gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), path);
- 
- 			gconf_entry_unref (entry);
- 		}
---
-cgit v0.9.0.2

Copied: gconf-editor/repos/extra-i686/fix-assertion-failed-crash.patch (from rev 273016, gconf-editor/trunk/fix-assertion-failed-crash.patch)
===================================================================
--- extra-i686/fix-assertion-failed-crash.patch	                        (rev 0)
+++ extra-i686/fix-assertion-failed-crash.patch	2016-08-04 10:06:57 UTC (rev 273017)
@@ -0,0 +1,34 @@
+From 25d823099337f7ede4782f46fea46f251646dc3e Mon Sep 17 00:00:00 2001
+From: Edward Sheldrake <ejsheldrake at gmail.com>
+Date: Wed, 11 Apr 2012 07:27:16 +0000
+Subject: Fix assertion failed crash
+
+Fix "assertion failed: (last_slash != NULL)" crash while navigating the
+left tree view, fixed by having the model for the right list view emit
+all the row deleted signals before deleting any of its data.
+
+Fixes https://bugzilla.gnome.org/show_bug.cgi?id=670586
+---
+diff --git a/src/gconf-list-model.c b/src/gconf-list-model.c
+index 27e1af6..4fc60f8 100644
+--- a/src/gconf-list-model.c
++++ b/src/gconf-list-model.c
+@@ -133,11 +133,14 @@ gconf_list_model_set_root_path (GConfListModel *model, const gchar *root_path)
+ 
+ 	if (model->root_path != NULL) {
+ 		for (list = model->values; list; list = list->next) {
++			model->stamp++;
++			gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), path);
++		}
++
++		for (list = model->values; list; list = list->next) {
+ 			GConfEntry *entry = list->data;
+ 
+ 			g_hash_table_remove (model->key_hash, gconf_entry_get_key (entry));
+-			model->stamp++;
+-			gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), path);
+ 
+ 			gconf_entry_unref (entry);
+ 		}
+--
+cgit v0.9.0.2

Deleted: extra-i686/gconf-editor.install
===================================================================
--- extra-i686/gconf-editor.install	2016-08-04 10:06:53 UTC (rev 273016)
+++ extra-i686/gconf-editor.install	2016-08-04 10:06:57 UTC (rev 273017)
@@ -1,22 +0,0 @@
-pkgname=gconf-editor
-
-post_install() {
-  usr/sbin/gconfpkg --install ${pkgname}
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  pre_remove $1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2016-08-04 10:06:53 UTC (rev 273016)
+++ extra-x86_64/PKGBUILD	2016-08-04 10:06:57 UTC (rev 273017)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-
-pkgname=gconf-editor
-pkgver=3.0.1
-pkgrel=3
-pkgdesc="Graphical gconf registry editor"
-arch=(i686 x86_64)
-license=('GPL')
-depends=('gconf' 'hicolor-icon-theme' 'gtk3')
-makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils')
-url="http://www.gnome.org"
-options=(!emptydirs)
-install=gconf-editor.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
-        fix-assertion-failed-crash.patch)
-sha256sums=('9afc4fc0d0afe019998736f06c04cbfa0393c813e2aa755133d95e83835f8869'
-            '6550714ee06d09632244d0f4f41402224599f5230ef71376ea34291ce0d651bc')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 -i "${srcdir}/fix-assertion-failed-crash.patch"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-     --localstatedir=/var --disable-scrollkeeper
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
-
-  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
-  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" --domain gconf-editor "$pkgdir"/etc/gconf/schemas/*.schemas
-  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
-}

Copied: gconf-editor/repos/extra-x86_64/PKGBUILD (from rev 273016, gconf-editor/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2016-08-04 10:06:57 UTC (rev 273017)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+
+pkgname=gconf-editor
+pkgver=3.0.1
+pkgrel=4
+pkgdesc="Graphical gconf registry editor"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gconf' 'gtk3')
+makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils')
+url="http://www.gnome.org"
+options=(!emptydirs)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+        fix-assertion-failed-crash.patch)
+sha256sums=('9afc4fc0d0afe019998736f06c04cbfa0393c813e2aa755133d95e83835f8869'
+            '6550714ee06d09632244d0f4f41402224599f5230ef71376ea34291ce0d651bc')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../fix-assertion-failed-crash.patch
+}
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+     --localstatedir=/var --disable-scrollkeeper
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" --domain gconf-editor "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Deleted: extra-x86_64/fix-assertion-failed-crash.patch
===================================================================
--- extra-x86_64/fix-assertion-failed-crash.patch	2016-08-04 10:06:53 UTC (rev 273016)
+++ extra-x86_64/fix-assertion-failed-crash.patch	2016-08-04 10:06:57 UTC (rev 273017)
@@ -1,34 +0,0 @@
-From 25d823099337f7ede4782f46fea46f251646dc3e Mon Sep 17 00:00:00 2001
-From: Edward Sheldrake <ejsheldrake at gmail.com>
-Date: Wed, 11 Apr 2012 07:27:16 +0000
-Subject: Fix assertion failed crash
-
-Fix "assertion failed: (last_slash != NULL)" crash while navigating the
-left tree view, fixed by having the model for the right list view emit
-all the row deleted signals before deleting any of its data.
-
-Fixes https://bugzilla.gnome.org/show_bug.cgi?id=670586
----
-diff --git a/src/gconf-list-model.c b/src/gconf-list-model.c
-index 27e1af6..4fc60f8 100644
---- a/src/gconf-list-model.c
-+++ b/src/gconf-list-model.c
-@@ -133,11 +133,14 @@ gconf_list_model_set_root_path (GConfListModel *model, const gchar *root_path)
- 
- 	if (model->root_path != NULL) {
- 		for (list = model->values; list; list = list->next) {
-+			model->stamp++;
-+			gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), path);
-+		}
-+
-+		for (list = model->values; list; list = list->next) {
- 			GConfEntry *entry = list->data;
- 
- 			g_hash_table_remove (model->key_hash, gconf_entry_get_key (entry));
--			model->stamp++;
--			gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), path);
- 
- 			gconf_entry_unref (entry);
- 		}
---
-cgit v0.9.0.2

Copied: gconf-editor/repos/extra-x86_64/fix-assertion-failed-crash.patch (from rev 273016, gconf-editor/trunk/fix-assertion-failed-crash.patch)
===================================================================
--- extra-x86_64/fix-assertion-failed-crash.patch	                        (rev 0)
+++ extra-x86_64/fix-assertion-failed-crash.patch	2016-08-04 10:06:57 UTC (rev 273017)
@@ -0,0 +1,34 @@
+From 25d823099337f7ede4782f46fea46f251646dc3e Mon Sep 17 00:00:00 2001
+From: Edward Sheldrake <ejsheldrake at gmail.com>
+Date: Wed, 11 Apr 2012 07:27:16 +0000
+Subject: Fix assertion failed crash
+
+Fix "assertion failed: (last_slash != NULL)" crash while navigating the
+left tree view, fixed by having the model for the right list view emit
+all the row deleted signals before deleting any of its data.
+
+Fixes https://bugzilla.gnome.org/show_bug.cgi?id=670586
+---
+diff --git a/src/gconf-list-model.c b/src/gconf-list-model.c
+index 27e1af6..4fc60f8 100644
+--- a/src/gconf-list-model.c
++++ b/src/gconf-list-model.c
+@@ -133,11 +133,14 @@ gconf_list_model_set_root_path (GConfListModel *model, const gchar *root_path)
+ 
+ 	if (model->root_path != NULL) {
+ 		for (list = model->values; list; list = list->next) {
++			model->stamp++;
++			gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), path);
++		}
++
++		for (list = model->values; list; list = list->next) {
+ 			GConfEntry *entry = list->data;
+ 
+ 			g_hash_table_remove (model->key_hash, gconf_entry_get_key (entry));
+-			model->stamp++;
+-			gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), path);
+ 
+ 			gconf_entry_unref (entry);
+ 		}
+--
+cgit v0.9.0.2

Deleted: extra-x86_64/gconf-editor.install
===================================================================
--- extra-x86_64/gconf-editor.install	2016-08-04 10:06:53 UTC (rev 273016)
+++ extra-x86_64/gconf-editor.install	2016-08-04 10:06:57 UTC (rev 273017)
@@ -1,22 +0,0 @@
-pkgname=gconf-editor
-
-post_install() {
-  usr/sbin/gconfpkg --install ${pkgname}
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  pre_remove $1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}



More information about the arch-commits mailing list