diff options
Diffstat (limited to 'gnome-unstable')
-rw-r--r-- | gnome-unstable/epiphany/PKGBUILD | 13 | ||||
-rw-r--r-- | gnome-unstable/epiphany/fix-infinite-loop | 38 | ||||
-rw-r--r-- | gnome-unstable/folks/PKGBUILD | 14 | ||||
-rw-r--r-- | gnome-unstable/gjs/PKGBUILD | 6 | ||||
-rw-r--r-- | gnome-unstable/gnome-online-accounts/PKGBUILD | 8 | ||||
-rw-r--r-- | gnome-unstable/gobject-introspection/PKGBUILD | 6 | ||||
-rw-r--r-- | gnome-unstable/nautilus-sendto/PKGBUILD | 31 | ||||
-rw-r--r-- | gnome-unstable/nautilus-sendto/nautilus-sendto.install | 11 |
8 files changed, 107 insertions, 20 deletions
diff --git a/gnome-unstable/epiphany/PKGBUILD b/gnome-unstable/epiphany/PKGBUILD index c3fbe165f..9602efe07 100644 --- a/gnome-unstable/epiphany/PKGBUILD +++ b/gnome-unstable/epiphany/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 152891 2012-03-10 15:41:59Z ibiru $ +# $Id: PKGBUILD 154024 2012-03-21 17:59:29Z ibiru $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=epiphany -pkgver=3.3.91 -pkgrel=1 +pkgver=3.3.92 +pkgrel=2 install=epiphany.install pkgdesc="A GNOME web browser based on the WebKit rendering engine." arch=('i686' 'x86_64') @@ -14,11 +14,14 @@ makedepends=('intltool' 'gnome-doc-utils' 'startup-notification') options=('!libtool' '!emptydirs') groups=('gnome') url="http://www.gnome.org/projects/epiphany/" -source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('44e7d14dea70b13dece9ea86393e722f8600aea7c5ca882c3fff5e04575a4953') +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz + fix-infinite-loop) +sha256sums=('2f557fafdd40e28e4ceb1b05b7d3117f5c9b9b362983ec435b8b49429141d144' + '5b9a6f69afb39e3d270d2446bc57ed9e190804b67eb4e1f0a16cd013d3dc7851') build() { cd "$pkgname-$pkgver" + patch -Np1 -i $srcdir/fix-infinite-loop ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var \ --disable-scrollkeeper \ diff --git a/gnome-unstable/epiphany/fix-infinite-loop b/gnome-unstable/epiphany/fix-infinite-loop new file mode 100644 index 000000000..7322a0a4c --- /dev/null +++ b/gnome-unstable/epiphany/fix-infinite-loop @@ -0,0 +1,38 @@ +From 087cb32d81fd8ef1cf3f493fce9e80e7217dbf04 Mon Sep 17 00:00:00 2001 +From: Xan Lopez <xan@igalia.com> +Date: Wed, 21 Mar 2012 14:41:36 +0100 +Subject: [PATCH] profile-migrator: do not freak out if the history is empty + +If the old history file exists but has no actual visits we'll enter +into an infinite loop. + +https://bugzilla.gnome.org/show_bug.cgi?id=672547 +--- + lib/ephy-profile-migrator.c | 10 ++++++---- + 1 files changed, 6 insertions(+), 4 deletions(-) + +diff --git a/lib/ephy-profile-migrator.c b/lib/ephy-profile-migrator.c +index f7a3406..a37638c 100644 +--- a/lib/ephy-profile-migrator.c ++++ b/lib/ephy-profile-migrator.c +@@ -594,11 +594,13 @@ migrate_history () + g_input_stream_close (G_INPUT_STREAM (input), NULL, NULL); + g_object_unref (input); + +- ephy_history_service_add_visits (history_service, parse_data.visits, NULL, (EphyHistoryJobCallback)visit_cb, NULL); +- ephy_history_page_visit_list_free (parse_data.visits); ++ if (parse_data.visits) { ++ ephy_history_service_add_visits (history_service, parse_data.visits, NULL, (EphyHistoryJobCallback)visit_cb, NULL); ++ ephy_history_page_visit_list_free (parse_data.visits); + +- while (!all_done) +- g_main_context_iteration (NULL, FALSE); ++ while (!all_done) ++ g_main_context_iteration (NULL, FALSE); ++ } + + g_object_unref (history_service); + } +-- +1.7.7.6 + diff --git a/gnome-unstable/folks/PKGBUILD b/gnome-unstable/folks/PKGBUILD index 8e88a2573..80a8eb15a 100644 --- a/gnome-unstable/folks/PKGBUILD +++ b/gnome-unstable/folks/PKGBUILD @@ -1,22 +1,26 @@ -# $Id: PKGBUILD 152720 2012-03-09 10:52:43Z ibiru $ +# $Id: PKGBUILD 154047 2012-03-21 21:14:11Z ibiru $ # Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=folks pkgver=0.6.7 -pkgrel=1 +pkgrel=2 pkgdesc="Library to aggregates people into metacontacts" arch=(i686 x86_64) url="http://telepathy.freedesktop.org/wiki/Folks" license=('LGPL2.1') depends=('telepathy-glib' 'libgee' 'libxml2' 'evolution-data-server' 'libsocialweb') -makedepends=('gobject-introspection' 'intltool') +makedepends=('gobject-introspection' 'intltool' 'vala') options=('!libtool' '!emptydirs') -source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.6/$pkgname-$pkgver.tar.xz) -sha256sums=('d9ce3fd1f0ea3e0cb3780521cfda161062cf7ed1a016261e8d244fe41cbae8f3') +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.6/$pkgname-$pkgver.tar.xz + stop_spam::http://git.gnome.org/browse/folks/patch/?id=31e803448d206b75c820b5147364adac453dce50) +sha256sums=('d9ce3fd1f0ea3e0cb3780521cfda161062cf7ed1a016261e8d244fe41cbae8f3' + '68b947ebe72c2c73e705db26f6bfb50856fa4c6d4644710e97205ff005a0b9fb') build() { cd "$pkgname-$pkgver" + patch -Np1 -i $srcdir/stop_spam + find . -name '*.stamp' -delete ./configure --prefix=/usr make } diff --git a/gnome-unstable/gjs/PKGBUILD b/gnome-unstable/gjs/PKGBUILD index 471c9a68f..6eedda9f6 100644 --- a/gnome-unstable/gjs/PKGBUILD +++ b/gnome-unstable/gjs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 152779 2012-03-09 16:16:24Z ibiru $ +# $Id: PKGBUILD 154028 2012-03-21 18:20:57Z ibiru $ # Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=gjs -pkgver=1.31.20 +pkgver=1.31.22 pkgrel=1 pkgdesc="Javascript Bindings for GNOME" arch=('i686' 'x86_64') @@ -11,7 +11,7 @@ license=('GPL') depends=('cairo' 'dbus-glib' 'gobject-introspection' 'js') options=('!libtool') source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('4601f1423dbc0326529cba95cd0475a32ca62ee3215812665cf58e32080a9d11') +sha256sums=('bf40fd4e5fc9bcb0c67b180b1fbe5305f849f498793cd83009c6068927c3ec82') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/gnome-unstable/gnome-online-accounts/PKGBUILD b/gnome-unstable/gnome-online-accounts/PKGBUILD index 7f43c4004..c169b7127 100644 --- a/gnome-unstable/gnome-online-accounts/PKGBUILD +++ b/gnome-unstable/gnome-online-accounts/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 153828 2012-03-19 19:41:02Z ibiru $ +# $Id: PKGBUILD 154030 2012-03-21 18:29:31Z ibiru $ # Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=gnome-online-accounts -pkgver=3.3.92 +pkgver=3.3.92.1 pkgrel=1 pkgdesc="GNOME service to access online accounts" arch=(i686 x86_64) @@ -12,8 +12,8 @@ depends=('libwebkit3' 'json-glib' 'libnotify' 'rest' 'hicolor-icon-theme') makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl') options=(!libtool) install=$pkgname.install -source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('407e2e4b1a41a404e30cdceaa444c363cb3efefd4bcf613811c8d4071cf4ad23') +source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('e8de3e9baf64b4814de3496e3a06d7db878536476ba2f1670618bb2b31614099') build() { cd "$pkgname-$pkgver" diff --git a/gnome-unstable/gobject-introspection/PKGBUILD b/gnome-unstable/gobject-introspection/PKGBUILD index ab0960b13..bc56c184f 100644 --- a/gnome-unstable/gobject-introspection/PKGBUILD +++ b/gnome-unstable/gobject-introspection/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 152245 2012-03-05 19:44:03Z ibiru $ +# $Id: PKGBUILD 154026 2012-03-21 18:06:51Z ibiru $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=gobject-introspection -pkgver=1.31.20 +pkgver=1.31.22 pkgrel=1 pkgdesc="Introspection system for GObject-based libraries" url="http://live.gnome.org/GObjectInstrospection" @@ -12,7 +12,7 @@ depends=('glib2' 'python2') makedepends=('cairo') options=('!libtool') source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('e1552884b642e7e5a56a175ae85bfdebfd16c29a7bbe4f6ca9cdf591e333f070') +sha256sums=('0d48d60c02a9fbdedb7cebc6e3e43c6976ca638bcf12baa03c27dc84baf92af8') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/gnome-unstable/nautilus-sendto/PKGBUILD b/gnome-unstable/nautilus-sendto/PKGBUILD new file mode 100644 index 000000000..163f518c8 --- /dev/null +++ b/gnome-unstable/nautilus-sendto/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 154032 2012-03-21 18:44:49Z ibiru $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: Eduardo Romero <eduardo@archlinux.org> +# Contributor: Tor Krill <tor@krill.nu> + +pkgname=nautilus-sendto +pkgver=3.0.2 +pkgrel=1 +pkgdesc="Nautilus context menu for sending files." +arch=('i686' 'x86_64') +url="http://download.gnome.org/sources/nautilus-sendto/" +license=('GPL') +groups=('gnome-extra') +depends=('evolution-data-server' 'nautilus' 'dconf') +makedepends=('pidgin' 'gajim' 'gettext' 'intltool') +options=('!libtool' '!emptydirs') +install=nautilus-sendto.install +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('03265d7063212717773bd6a1f85c25ec24066ca8424b658c5fa30ec0fb074b44') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-schemas-compile + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} diff --git a/gnome-unstable/nautilus-sendto/nautilus-sendto.install b/gnome-unstable/nautilus-sendto/nautilus-sendto.install new file mode 100644 index 000000000..d33a1b261 --- /dev/null +++ b/gnome-unstable/nautilus-sendto/nautilus-sendto.install @@ -0,0 +1,11 @@ +post_install() { + glib-compile-schemas /usr/share/glib-2.0/schemas +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} |