r43825 - in /packages/unstable/gedit-plugins/debian: changelog control control.in patches/ patches/01-fix_vte_api_break.patch patches/series
bigon at users.alioth.debian.org
bigon at users.alioth.debian.org
Tue Nov 4 20:06:15 UTC 2014
Author: bigon
Date: Tue Nov 4 20:06:15 2014
New Revision: 43825
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=43825
Log:
* debian/control.in: Bump dependency against gir1.2-vte-2.90 to
gir1.2-vte-2.91 to match the build-dependency
* Add debian/patches/01-fix_vte_api_break.patch: Fix API breakage introduced
in vte 2.91 (Closes: #767550)
Added:
packages/unstable/gedit-plugins/debian/patches/
packages/unstable/gedit-plugins/debian/patches/01-fix_vte_api_break.patch
packages/unstable/gedit-plugins/debian/patches/series
Modified:
packages/unstable/gedit-plugins/debian/changelog
packages/unstable/gedit-plugins/debian/control
packages/unstable/gedit-plugins/debian/control.in
Modified: packages/unstable/gedit-plugins/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gedit-plugins/debian/changelog?rev=43825&op=diff
==============================================================================
--- packages/unstable/gedit-plugins/debian/changelog [utf-8] (original)
+++ packages/unstable/gedit-plugins/debian/changelog [utf-8] Tue Nov 4 20:06:15 2014
@@ -1,3 +1,12 @@
+gedit-plugins (3.14.0-2) UNRELEASED; urgency=medium
+
+ * debian/control.in: Bump dependency against gir1.2-vte-2.90 to
+ gir1.2-vte-2.91 to match the build-dependency
+ * Add debian/patches/01-fix_vte_api_break.patch: Fix API breakage introduced
+ in vte 2.91 (Closes: #767550)
+
+ -- Laurent Bigonville <bigon at debian.org> Tue, 04 Nov 2014 20:56:26 +0100
+
gedit-plugins (3.14.0-1) unstable; urgency=medium
[ Laurent Bigonville ]
Modified: packages/unstable/gedit-plugins/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gedit-plugins/debian/control?rev=43825&op=diff
==============================================================================
--- packages/unstable/gedit-plugins/debian/control [utf-8] (original)
+++ packages/unstable/gedit-plugins/debian/control [utf-8] Tue Nov 4 20:06:15 2014
@@ -2,7 +2,7 @@
Section: gnome
Priority: optional
Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>
-Uploaders: Andreas Henriksson <andreas at fatal.se>, Josselin Mouette <joss at debian.org>, Laurent Bigonville <bigon at debian.org>, Michael Biebl <biebl at debian.org>
+Uploaders: Josselin Mouette <joss at debian.org>, Laurent Bigonville <bigon at debian.org>, Michael Biebl <biebl at debian.org>
Build-Depends: cdbs (>= 0.4.90~),
debhelper (>= 9),
dh-python (>= 1.20130902),
@@ -42,7 +42,7 @@
gir1.2-gucharmap-2.90,
gir1.2-pango-1.0,
gir1.2-peas-1.0,
- gir1.2-vte-2.90,
+ gir1.2-vte-2.91,
gir1.2-zeitgeist-2.0,
python3-gi,
python3-gi-cairo,
Modified: packages/unstable/gedit-plugins/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gedit-plugins/debian/control.in?rev=43825&op=diff
==============================================================================
--- packages/unstable/gedit-plugins/debian/control.in [utf-8] (original)
+++ packages/unstable/gedit-plugins/debian/control.in [utf-8] Tue Nov 4 20:06:15 2014
@@ -42,7 +42,7 @@
gir1.2-gucharmap-2.90,
gir1.2-pango-1.0,
gir1.2-peas-1.0,
- gir1.2-vte-2.90,
+ gir1.2-vte-2.91,
gir1.2-zeitgeist-2.0,
python3-gi,
python3-gi-cairo,
Added: packages/unstable/gedit-plugins/debian/patches/01-fix_vte_api_break.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gedit-plugins/debian/patches/01-fix_vte_api_break.patch?rev=43825&op=file
==============================================================================
--- packages/unstable/gedit-plugins/debian/patches/01-fix_vte_api_break.patch (added)
+++ packages/unstable/gedit-plugins/debian/patches/01-fix_vte_api_break.patch [utf-8] Tue Nov 4 20:06:15 2014
@@ -0,0 +1,31 @@
+From 83063fca300a905db8f4c4f70d4b264e5e4f3785 Mon Sep 17 00:00:00 2001
+From: Ignacio Casal Quinteiro <icq at gnome.org>
+Date: Mon, 3 Nov 2014 08:16:31 +0100
+Subject: terminal: fix for api break
+
+
+diff --git a/plugins/terminal/terminal.py b/plugins/terminal/terminal.py
+index f6d7eb5..3606b79 100644
+--- a/plugins/terminal/terminal.py
++++ b/plugins/terminal/terminal.py
+@@ -36,7 +36,7 @@ except:
+ class GeditTerminal(Vte.Terminal):
+
+ defaults = {
+- 'visible_bell' : False,
++ 'audible_bell' : False,
+ }
+
+ TARGET_URI_LIST = 200
+@@ -144,7 +144,7 @@ class GeditTerminal(Vte.Terminal):
+ self.set_allow_bold(self.profile_settings.get_boolean("allow-bold"))
+ self.set_scroll_on_keystroke(self.profile_settings.get_boolean("scroll-on-keystroke"))
+ self.set_scroll_on_output(self.profile_settings.get_boolean("scroll-on-output"))
+- self.set_visible_bell(self.defaults['visible_bell'])
++ self.set_audible_bell(self.defaults['audible_bell'])
+
+ if self.profile_settings.get_boolean("scrollback-unlimited"):
+ lines = -1
+--
+cgit v0.10.1
+
Added: packages/unstable/gedit-plugins/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gedit-plugins/debian/patches/series?rev=43825&op=file
==============================================================================
--- packages/unstable/gedit-plugins/debian/patches/series (added)
+++ packages/unstable/gedit-plugins/debian/patches/series [utf-8] Tue Nov 4 20:06:15 2014
@@ -0,0 +1 @@
+01-fix_vte_api_break.patch
More information about the pkg-gnome-commits
mailing list