r51839 - in /desktop/unstable/file-roller/debian: changelog patches/series patches/wayland_workaround.patch

ah at users.alioth.debian.org ah at users.alioth.debian.org
Tue Dec 20 14:46:06 UTC 2016


Author: ah
Date: Tue Dec 20 14:46:06 2016
New Revision: 51839

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=51839
Log:
* Add debian/patches/wayland_workaround.patch (Closes: #848821)
  - force X11 backend until a proper fix exists, see
    https://bugzilla.gnome.org/show_bug.cgi?id=770333

Added:
    desktop/unstable/file-roller/debian/patches/wayland_workaround.patch
Modified:
    desktop/unstable/file-roller/debian/changelog
    desktop/unstable/file-roller/debian/patches/series

Modified: desktop/unstable/file-roller/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/file-roller/debian/changelog?rev=51839&op=diff
==============================================================================
--- desktop/unstable/file-roller/debian/changelog	[utf-8] (original)
+++ desktop/unstable/file-roller/debian/changelog	[utf-8] Tue Dec 20 14:46:06 2016
@@ -1,3 +1,11 @@
+file-roller (3.22.2-2) UNRELEASED; urgency=medium
+
+  * Add debian/patches/wayland_workaround.patch (Closes: #848821)
+    - force X11 backend until a proper fix exists, see
+      https://bugzilla.gnome.org/show_bug.cgi?id=770333
+
+ -- Andreas Henriksson <andreas at fatal.se>  Tue, 20 Dec 2016 15:41:22 +0100
+
 file-roller (3.22.2-1) unstable; urgency=medium
 
   * New upstream release.

Modified: desktop/unstable/file-roller/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/file-roller/debian/patches/series?rev=51839&op=diff
==============================================================================
--- desktop/unstable/file-roller/debian/patches/series	[utf-8] (original)
+++ desktop/unstable/file-roller/debian/patches/series	[utf-8] Tue Dec 20 14:46:06 2016
@@ -1 +1,2 @@
 01_package_names.patch
+wayland_workaround.patch

Added: desktop/unstable/file-roller/debian/patches/wayland_workaround.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/file-roller/debian/patches/wayland_workaround.patch?rev=51839&op=file
==============================================================================
--- desktop/unstable/file-roller/debian/patches/wayland_workaround.patch	(added)
+++ desktop/unstable/file-roller/debian/patches/wayland_workaround.patch	[utf-8] Tue Dec 20 14:46:06 2016
@@ -0,0 +1,31 @@
+From 00d2fbb998de419e514568c79fe0c3d8b9cc1a38 Mon Sep 17 00:00:00 2001
+From: Kalev Lember <klember at redhat.com>
+Date: Wed, 14 Sep 2016 17:52:24 +0200
+Subject: [PATCH] Use the X11 backend instead of Wayland
+
+Force file-roller to use the gtk+ X11 backend even when running under a
+Wayland session. This is currently needed to work around missing support
+for arbitrarily named clipboards.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=770333
+---
+ src/main.c | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/src/main.c b/src/main.c
+index 043f604..9fcb993 100644
+--- a/src/main.c
++++ b/src/main.c
+@@ -34,6 +34,10 @@ main (int argc, char **argv)
+ 	bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+ 	textdomain (GETTEXT_PACKAGE);
+ 
++	/* Use the X11 backend instead of Wayland,
++	 * https://bugzilla.gnome.org/show_bug.cgi?id=770333 */
++	gdk_set_allowed_backends ("x11");
++
+ 	app = fr_application_new ();
+ 	status = g_application_run (G_APPLICATION (app), argc, argv);
+ 
+-- 
+2.7.4




More information about the pkg-gnome-commits mailing list