[arch-commits] Commit in terminator/trunk (0001-wayland-fix.patch PKGBUILD)

Giancarlo Razzolini grazzolini at archlinux.org
Tue Feb 28 20:38:56 UTC 2017


    Date: Tuesday, February 28, 2017 @ 20:38:55
  Author: grazzolini
Revision: 214262

upgpkg: terminator 1.91-2

Added upstream patch to fix https://bugs.launchpad.net/terminator/+bug/1668481
and https://bugs.archlinux.org/task/53106

Added:
  terminator/trunk/0001-wayland-fix.patch
Modified:
  terminator/trunk/PKGBUILD

------------------------+
 0001-wayland-fix.patch |   35 +++++++++++++++++++++++++++++++++++
 PKGBUILD               |   14 ++++++++++----
 2 files changed, 45 insertions(+), 4 deletions(-)

Added: 0001-wayland-fix.patch
===================================================================
--- 0001-wayland-fix.patch	                        (rev 0)
+++ 0001-wayland-fix.patch	2017-02-28 20:38:55 UTC (rev 214262)
@@ -0,0 +1,35 @@
+=== modified file 'terminatorlib/terminator.py'
+--- terminatorlib/terminator.py	2017-02-26 16:15:11 +0000
++++ terminatorlib/terminator.py	2017-02-28 16:04:37 +0000
+@@ -401,7 +401,7 @@
+             window.grab_focus()
+             try:
+                 t = GdkX11.x11_get_server_time(window.get_window())
+-            except AttributeError:
++            except (TypeError, AttributeError):
+                 t = 0
+             window.get_window().focus(t)
+ 
+@@ -417,7 +417,7 @@
+                 window.grab_focus()
+                 try:
+                     t = GdkX11.x11_get_server_time(window.get_window())
+-                except AttributeError:
++                except (TypeError, AttributeError):
+                     t = 0
+                 window.get_window().focus(t)
+ 
+
+=== modified file 'terminatorlib/window.py'
+--- terminatorlib/window.py	2017-02-13 16:30:37 +0000
++++ terminatorlib/window.py	2017-02-28 16:07:28 +0000
+@@ -311,7 +311,7 @@
+             self.grab_focus()
+             try:
+                 t = GdkX11.x11_get_server_time(self.get_window())
+-            except AttributeError:
++            except (TypeError, AttributeError):
+                 t = 0
+             self.get_window().focus(t)
+         else:
+

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-02-28 19:44:52 UTC (rev 214261)
+++ PKGBUILD	2017-02-28 20:38:55 UTC (rev 214262)
@@ -7,7 +7,7 @@
 
 pkgname=terminator
 pkgver=1.91
-pkgrel=1
+pkgrel=2
 pkgdesc='Terminal emulator that supports tabs and grids'
 arch=('any')
 url='https://gnometerminator.blogspot.com/p/introduction.html'
@@ -15,11 +15,14 @@
 depends=('libkeybinder3' 'libnotify' 'python2-cairo' 'python2-dbus' 'python2-psutil' 'python2-gobject' 'vte3' 'xdg-utils')
 makedepends=('intltool')
 source=("https://launchpad.net/terminator/gtk3/${pkgver}/+download/${pkgname^}-${pkgver}.tar.gz"
-        "https://launchpad.net/terminator/gtk3/${pkgver}/+download/${pkgname^}-${pkgver}.tar.gz.asc")
+        "https://launchpad.net/terminator/gtk3/${pkgver}/+download/${pkgname^}-${pkgver}.tar.gz.asc"
+        "0001-wayland-fix.patch::https://launchpadlibrarian.net/309178299/wayland_fix.diff")
 md5sums=('44e6be581abc9b52fe2e665cbb572201'
-         'SKIP')
+         'SKIP'
+         '32281658b0cacef023c8020106952b31')
 sha512sums=('7037077680475164011e19bb5ff16b55a5b4f0b71941d6bfb2ba00af8289eff6f9bf62dded3a6f4f21f199e9e070d0731b19a4ac60fdd429815d708e7fdc3edd'
-            'SKIP')
+            'SKIP'
+            '66db2930bd2c1eafcd0e6e33be9478137d08643205ffb3ff12ad07318e2f465a889d894b6d580d3d4480ea263caca69d7174b6627c52296ab94a42fb6cda1a27')
 validpgpkeys=('FE67C001C72200A71DE9EFA5DB69E1780B95EF32')
 
 prepare() {
@@ -33,6 +36,9 @@
 
     # fix run without gconf
     sed -i 's/except ImportError:/except ValueError:/' terminatorlib/config.py
+
+    # Fix for https://bugs.archlinux.org/task/53106
+    patch -Np0 -i "$srcdir/0001-wayland-fix.patch"
 }
 
 build() {



More information about the arch-commits mailing list