From b618c3d0693aec564c6746238fd05d94e31d3b76 Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 3 Apr 2012 14:54:55 +0000 Subject: Tue Apr 3 14:54:45 UTC 2012 --- gnome-unstable/epiphany/PKGBUILD | 32 -------------------------- gnome-unstable/epiphany/epiphany.install | 13 ----------- gnome-unstable/epiphany/fix-infinite-loop | 38 ------------------------------- 3 files changed, 83 deletions(-) delete mode 100644 gnome-unstable/epiphany/PKGBUILD delete mode 100644 gnome-unstable/epiphany/epiphany.install delete mode 100644 gnome-unstable/epiphany/fix-infinite-loop (limited to 'gnome-unstable/epiphany') diff --git a/gnome-unstable/epiphany/PKGBUILD b/gnome-unstable/epiphany/PKGBUILD deleted file mode 100644 index e9dd2e66c..000000000 --- a/gnome-unstable/epiphany/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 154630 2012-03-30 13:22:41Z heftig $ -# Maintainer: Jan de Groot - -pkgname=epiphany -pkgver=3.4.0.1 -pkgrel=1 -install=epiphany.install -pkgdesc="A GNOME web browser based on the WebKit rendering engine." -arch=('i686' 'x86_64') -license=('GPL') -depends=('libsoup-gnome' 'libnotify' 'gsettings-desktop-schemas' 'libwebkit3' 'nss' 'iso-codes' 'dconf' 'gobject-introspection' 'desktop-file-utils' - 'hicolor-icon-theme' 'seed') -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:0:3}/$pkgname-$pkgver.tar.xz) -sha256sums=('48acfa6efc806cc6b02f783dd92b36ba3bdf94d1e1ae02bed69886f45e400533') - -build() { - cd "$pkgname-$pkgver" - ./configure --prefix=/usr --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-scrollkeeper \ - --enable-seed - make -} - -package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir" install -} diff --git a/gnome-unstable/epiphany/epiphany.install b/gnome-unstable/epiphany/epiphany.install deleted file mode 100644 index 8b17fa3d4..000000000 --- a/gnome-unstable/epiphany/epiphany.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install() { - glib-compile-schemas /usr/share/glib-2.0/schemas - update-desktop-database -q - gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/gnome-unstable/epiphany/fix-infinite-loop b/gnome-unstable/epiphany/fix-infinite-loop deleted file mode 100644 index 7322a0a4c..000000000 --- a/gnome-unstable/epiphany/fix-infinite-loop +++ /dev/null @@ -1,38 +0,0 @@ -From 087cb32d81fd8ef1cf3f493fce9e80e7217dbf04 Mon Sep 17 00:00:00 2001 -From: Xan Lopez -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 - -- cgit v1.2.3-54-g00ecf