Your message dated Wed, 05 Nov 2014 00:07:36 +0100
with message-id <[email protected]>
and subject line Re: Bug#768080: unblock: gedit-plugins/3.14.0-2
has caused the Debian Bug report #768080,
regarding unblock: gedit-plugins/3.14.0-2
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
768080: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=768080
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock
Hello,
Please unblock package gedit-plugins
3.14.0-2 includes 2 fixes:
- The dependency against gir1.2-vte-2.90 is changed to gir1.2-vte-2.91
the builtin terminal requires this version (the build-dependency was
already adjusted by the runtime one was forgotten)
- It adds a patch that fix an API change introduced when upstream
switched to vte 2.91, see #767550
unblock gedit-plugins/3.14.0-2
Cheers,
Laurent Bigonville
-- System Information:
Debian Release: jessie/sid
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 3.16-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=fr_BE.utf8, LC_CTYPE=fr_BE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru gedit-plugins-3.14.0/debian/changelog gedit-plugins-3.14.0/debian/changelog
--- gedit-plugins-3.14.0/debian/changelog 2014-09-25 20:20:01.000000000 +0200
+++ gedit-plugins-3.14.0/debian/changelog 2014-11-04 21:10:15.000000000 +0100
@@ -1,3 +1,12 @@
+gedit-plugins (3.14.0-2) unstable; 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 <[email protected]> Tue, 04 Nov 2014 21:10:13 +0100
+
gedit-plugins (3.14.0-1) unstable; urgency=medium
[ Laurent Bigonville ]
diff -Nru gedit-plugins-3.14.0/debian/control gedit-plugins-3.14.0/debian/control
--- gedit-plugins-3.14.0/debian/control 2014-09-25 20:39:29.000000000 +0200
+++ gedit-plugins-3.14.0/debian/control 2014-11-04 21:15:34.000000000 +0100
@@ -2,7 +2,7 @@
Section: gnome
Priority: optional
Maintainer: Debian GNOME Maintainers <[email protected]>
-Uploaders: Josselin Mouette <[email protected]>, Laurent Bigonville <[email protected]>, Michael Biebl <[email protected]>
+Uploaders: Laurent Bigonville <[email protected]>, Michael Biebl <[email protected]>
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,
diff -Nru gedit-plugins-3.14.0/debian/control.in gedit-plugins-3.14.0/debian/control.in
--- gedit-plugins-3.14.0/debian/control.in 2014-09-25 20:15:13.000000000 +0200
+++ gedit-plugins-3.14.0/debian/control.in 2014-11-04 20:54:33.000000000 +0100
@@ -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,
diff -Nru gedit-plugins-3.14.0/debian/patches/01-fix_vte_api_break.patch gedit-plugins-3.14.0/debian/patches/01-fix_vte_api_break.patch
--- gedit-plugins-3.14.0/debian/patches/01-fix_vte_api_break.patch 1970-01-01 01:00:00.000000000 +0100
+++ gedit-plugins-3.14.0/debian/patches/01-fix_vte_api_break.patch 2014-11-04 20:55:55.000000000 +0100
@@ -0,0 +1,31 @@
+From 83063fca300a905db8f4c4f70d4b264e5e4f3785 Mon Sep 17 00:00:00 2001
+From: Ignacio Casal Quinteiro <[email protected]>
+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
+
diff -Nru gedit-plugins-3.14.0/debian/patches/series gedit-plugins-3.14.0/debian/patches/series
--- gedit-plugins-3.14.0/debian/patches/series 1970-01-01 01:00:00.000000000 +0100
+++ gedit-plugins-3.14.0/debian/patches/series 2014-11-04 20:56:15.000000000 +0100
@@ -0,0 +1 @@
+01-fix_vte_api_break.patch
--- End Message ---
--- Begin Message ---
On 04/11/14 21:28, Laurent Bigonville wrote:
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock
Hello,
Please unblock package gedit-plugins
3.14.0-2 includes 2 fixes:
- The dependency against gir1.2-vte-2.90 is changed to gir1.2-vte-2.91
the builtin terminal requires this version (the build-dependency was
already adjusted by the runtime one was forgotten)
- It adds a patch that fix an API change introduced when upstream
switched to vte 2.91, see #767550
unblock gedit-plugins/3.14.0-2
Unblocked.
Thanks,
Emilio
--- End Message ---