diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-09-25 10:09:52 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-09-25 10:09:52 +0000 |
commit | df83a53d3b744f1dbc3a62dd3bb177faf1cc9eee (patch) | |
tree | 2861f9a6359572c5b410547d5d49df06c6f3105f /gnome-extra/gnome-documents | |
parent | Add media-libs/giflib-5 patch by Paolo Pedroni (bug #523680). (diff) | |
download | gentoo-2-df83a53d3b744f1dbc3a62dd3bb177faf1cc9eee.tar.gz gentoo-2-df83a53d3b744f1dbc3a62dd3bb177faf1cc9eee.tar.bz2 gentoo-2-df83a53d3b744f1dbc3a62dd3bb177faf1cc9eee.zip |
Needs to be rebuilt with libgdata .so version updates, drop old
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'gnome-extra/gnome-documents')
6 files changed, 9 insertions, 184 deletions
diff --git a/gnome-extra/gnome-documents/ChangeLog b/gnome-extra/gnome-documents/ChangeLog index 9063fca0c96e..a78f201ad175 100644 --- a/gnome-extra/gnome-documents/ChangeLog +++ b/gnome-extra/gnome-documents/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/gnome-documents # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-documents/ChangeLog,v 1.37 2014/07/23 15:18:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-documents/ChangeLog,v 1.38 2014/09/25 10:09:52 pacho Exp $ + + 25 Sep 2014; Pacho Ramos <pacho@gentoo.org> + -files/gnome-documents-3.8.3-navigation-keys.patch, + -gnome-documents-3.10.1.ebuild, -gnome-documents-3.10.2.ebuild, + -gnome-documents-3.12.0.ebuild, gnome-documents-3.12.1.ebuild: + Needs to be rebuilt with libgdata .so version updates, drop old 23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> gnome-documents-3.12.1.ebuild: Stable for x86, wrt bug #512012 diff --git a/gnome-extra/gnome-documents/files/gnome-documents-3.8.3-navigation-keys.patch b/gnome-extra/gnome-documents/files/gnome-documents-3.8.3-navigation-keys.patch deleted file mode 100644 index 83fad01c0311..000000000000 --- a/gnome-extra/gnome-documents/files/gnome-documents-3.8.3-navigation-keys.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 0ec5cf5b302497b6f51d6e741e9f640cdc4b48c7 Mon Sep 17 00:00:00 2001 -From: Alessandro Campagni <alessandro.campagni@gmail.com> -Date: Mon, 29 Apr 2013 17:57:53 +0000 -Subject: preview: add prev/back navigation with Left and Right keys - -https://bugzilla.gnome.org/show_bug.cgi?id=696836 ---- -diff --git a/src/preview.js b/src/preview.js -index 920f007..c4fd463 100644 ---- a/src/preview.js -+++ b/src/preview.js -@@ -394,15 +394,18 @@ const PreviewView = new Lang.Class({ - _onKeyPressEvent: function(widget, event) { - let keyval = event.get_keyval()[1]; - let state = event.get_state()[1]; -+ let def_mod_mask = Gtk.accelerator_get_default_mod_mask(); - -- if ((keyval == Gdk.KEY_Page_Up) && -- ((state & Gdk.ModifierType.CONTROL_MASK) != 0)) { -+ if (((keyval == Gdk.KEY_Page_Up) && -+ ((state & Gdk.ModifierType.CONTROL_MASK) != 0)) || -+ ((keyval == Gdk.KEY_Left) && ((state & def_mod_mask) == 0))) { - this.view.previous_page(); - return true; - } - -- if ((keyval == Gdk.KEY_Page_Down) && -- ((state & Gdk.ModifierType.CONTROL_MASK) != 0)) { -+ if (((keyval == Gdk.KEY_Page_Down) && -+ ((state & Gdk.ModifierType.CONTROL_MASK) != 0)) || -+ ((keyval == Gdk.KEY_Right) && ((state & def_mod_mask) == 0))) { - this.view.next_page(); - return true; - } --- -cgit v0.9.2 diff --git a/gnome-extra/gnome-documents/gnome-documents-3.10.1.ebuild b/gnome-extra/gnome-documents/gnome-documents-3.10.1.ebuild deleted file mode 100644 index 3fb901644f02..000000000000 --- a/gnome-extra/gnome-documents/gnome-documents-3.10.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-documents/gnome-documents-3.10.1.ebuild,v 1.6 2014/03/09 11:59:58 pacho Exp $ - -EAPI="5" -GCONF_DEBUG="no" - -inherit gnome2 - -DESCRIPTION="A document manager application for GNOME" -HOMEPAGE="https://wiki.gnome.org/Design/Apps/Documents" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" -KEYWORDS="amd64 x86" - -# Need gdk-pixbuf-2.25 for gdk_pixbuf_get_pixels_with_length -COMMON_DEPEND=" - >=app-misc/tracker-0.16:= - >=app-text/evince-3.7.4[introspection] - dev-libs/gjs - >=dev-libs/glib-2.37:2 - >=dev-libs/gobject-introspection-1.31.6 - >=dev-libs/libgdata-0.13.3[gnome,introspection] - gnome-base/gnome-desktop:3= - >=media-libs/clutter-1.10:1.0 - >=media-libs/clutter-gtk-1.3.2:1.0[introspection] - >=net-libs/gnome-online-accounts-3.2.0 - >=net-libs/libsoup-2.41.3:2.4 - >=net-libs/libzapojit-0.0.2 - >=net-libs/webkit-gtk-1.10.0:3 - >=x11-libs/gdk-pixbuf-2.25:2[introspection] - >=x11-libs/gtk+-3.9.11:3[introspection] - x11-libs/pango[introspection] -" -RDEPEND="${COMMON_DEPEND} - media-libs/clutter[introspection] - net-misc/gnome-online-miners - sys-apps/dbus - x11-themes/gnome-icon-theme-symbolic -" -DEPEND="${COMMON_DEPEND} - dev-libs/libxslt - >=dev-util/intltool-0.50.1 - virtual/pkgconfig -" diff --git a/gnome-extra/gnome-documents/gnome-documents-3.10.2.ebuild b/gnome-extra/gnome-documents/gnome-documents-3.10.2.ebuild deleted file mode 100644 index 578782831cd3..000000000000 --- a/gnome-extra/gnome-documents/gnome-documents-3.10.2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-documents/gnome-documents-3.10.2.ebuild,v 1.3 2014/05/04 12:10:35 pacho Exp $ - -EAPI="5" -GCONF_DEBUG="no" - -inherit gnome2 - -DESCRIPTION="A document manager application for GNOME" -HOMEPAGE="https://wiki.gnome.org/Apps/Documents" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" -KEYWORDS="amd64 x86" - -# Need gdk-pixbuf-2.25 for gdk_pixbuf_get_pixels_with_length -COMMON_DEPEND=" - >=app-misc/tracker-0.16:= - >=app-text/evince-3.7.4[introspection] - dev-libs/gjs - >=dev-libs/glib-2.37:2 - >=dev-libs/gobject-introspection-1.31.6 - >=dev-libs/libgdata-0.13.3[gnome,introspection] - gnome-base/gnome-desktop:3= - >=media-libs/clutter-1.10:1.0 - >=media-libs/clutter-gtk-1.3.2:1.0[introspection] - >=net-libs/gnome-online-accounts-3.2.0 - >=net-libs/libsoup-2.41.3:2.4 - >=net-libs/libzapojit-0.0.2 - >=net-libs/webkit-gtk-1.10.0:3 - >=x11-libs/gdk-pixbuf-2.25:2[introspection] - >=x11-libs/gtk+-3.9.11:3[introspection] - x11-libs/pango[introspection] -" -RDEPEND="${COMMON_DEPEND} - media-libs/clutter[introspection] - net-misc/gnome-online-miners - sys-apps/dbus - x11-themes/gnome-icon-theme-symbolic -" -DEPEND="${COMMON_DEPEND} - dev-libs/libxslt - >=dev-util/intltool-0.50.1 - virtual/pkgconfig -" diff --git a/gnome-extra/gnome-documents/gnome-documents-3.12.0.ebuild b/gnome-extra/gnome-documents/gnome-documents-3.12.0.ebuild deleted file mode 100644 index a0ea5c1e064c..000000000000 --- a/gnome-extra/gnome-documents/gnome-documents-3.12.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-documents/gnome-documents-3.12.0.ebuild,v 1.1 2014/04/27 17:14:56 eva Exp $ - -EAPI="5" -GCONF_DEBUG="no" - -inherit gnome2 - -DESCRIPTION="A document manager application for GNOME" -HOMEPAGE="https://wiki.gnome.org/Apps/Documents" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="" -KEYWORDS="~amd64 ~x86" - -# Need gdk-pixbuf-2.25 for gdk_pixbuf_get_pixels_with_length -COMMON_DEPEND=" - >=app-misc/tracker-1:= - >=app-text/evince-3.7.4[introspection] - dev-libs/gjs - >=dev-libs/glib-2.37:2 - >=dev-libs/gobject-introspection-1.31.6 - >=dev-libs/libgdata-0.13.3[gnome,introspection] - gnome-base/gnome-desktop:3= - >=media-libs/clutter-1.10:1.0 - >=media-libs/clutter-gtk-1.3.2:1.0[introspection] - >=net-libs/gnome-online-accounts-3.2.0 - >=net-libs/libsoup-2.41.3:2.4 - >=net-libs/libzapojit-0.0.2 - >=net-libs/webkit-gtk-1.10.0:3 - >=x11-libs/gdk-pixbuf-2.25:2[introspection] - >=x11-libs/gtk+-3.11.5:3[introspection] - x11-libs/pango[introspection] -" -RDEPEND="${COMMON_DEPEND} - media-libs/clutter[introspection] - net-misc/gnome-online-miners - sys-apps/dbus - x11-themes/gnome-icon-theme-symbolic -" -DEPEND="${COMMON_DEPEND} - dev-libs/libxslt - >=dev-util/intltool-0.50.1 - virtual/pkgconfig -" - -src_configure() { - gnome2_src_configure ITSTOOL="$(type -P true)" -} diff --git a/gnome-extra/gnome-documents/gnome-documents-3.12.1.ebuild b/gnome-extra/gnome-documents/gnome-documents-3.12.1.ebuild index 235f8e082728..6cb1b20ed7d9 100644 --- a/gnome-extra/gnome-documents/gnome-documents-3.12.1.ebuild +++ b/gnome-extra/gnome-documents/gnome-documents-3.12.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-documents/gnome-documents-3.12.1.ebuild,v 1.3 2014/07/23 15:18:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-documents/gnome-documents-3.12.1.ebuild,v 1.4 2014/09/25 10:09:52 pacho Exp $ EAPI="5" GCONF_DEBUG="no" @@ -22,7 +22,7 @@ COMMON_DEPEND=" dev-libs/gjs >=dev-libs/glib-2.37:2 >=dev-libs/gobject-introspection-1.31.6 - >=dev-libs/libgdata-0.13.3[gnome,introspection] + >=dev-libs/libgdata-0.13.3:=[gnome,introspection] gnome-base/gnome-desktop:3= >=media-libs/clutter-1.10:1.0 >=media-libs/clutter-gtk-1.3.2:1.0[introspection] |