gedit-plugins/gedit-plugins-vte-2.91.patch

41 lines
1.3 KiB
Diff

From 1a17abfbc38ebdaea0714ea77875499b55dcc333 Mon Sep 17 00:00:00 2001
From: Dominique Leuenberger <dimstar@opensuse.org>
Date: Sat, 26 Jul 2014 18:25:42 +0200
Subject: [PATCH] terminal: Use VTE 2.91
https://bugzilla.gnome.org/show_bug.cgi?id=733176
---
configure.ac | 2 +-
plugins/terminal/terminal.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index b5d974d..d3a462a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -151,7 +151,7 @@ then
# ================================================================
# Terminal (vte)
# ================================================================
- if `$PYTHON -c "import gi; gi.require_version('Vte', '2.90')" 2>/dev/null`;
+ if `$PYTHON -c "import gi; gi.require_version('Vte', '2.91')" 2>/dev/null`;
then
have_vte=yes
PLUGINS="$PLUGINS terminal"
diff --git a/plugins/terminal/terminal.py b/plugins/terminal/terminal.py
index 01bf770..e77de2c 100644
--- a/plugins/terminal/terminal.py
+++ b/plugins/terminal/terminal.py
@@ -21,7 +21,7 @@
# Boston, MA 02110-1301 USA
import gi
-gi.require_version('Vte', '2.90')
+gi.require_version('Vte', '2.91')
from gi.repository import GObject, GLib, Gio, Pango, Gdk, Gtk, Gedit, Vte
import os
import gettext
--
2.0.1