[arch-commits] Commit in freerdp/trunk (PKGBUILD stuck_winkey.patch)

Sergej Pupykin spupykin at archlinux.org
Thu Jan 7 12:33:40 UTC 2016


    Date: Thursday, January 7, 2016 @ 13:33:39
  Author: spupykin
Revision: 155637

Modified:
  freerdp/trunk/PKGBUILD
Deleted:
  freerdp/trunk/stuck_winkey.patch

--------------------+
 PKGBUILD           |   20 +++++---------------
 stuck_winkey.patch |   27 ---------------------------
 2 files changed, 5 insertions(+), 42 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2016-01-07 12:33:29 UTC (rev 155636)
+++ PKGBUILD	2016-01-07 12:33:39 UTC (rev 155637)
@@ -4,7 +4,7 @@
 
 pkgname=freerdp
 epoch=1
-pkgver=1.2.0_beta1+android9
+pkgver=1.2.0_20160107
 _pkgver=${pkgver/_/-}
 _pkgver=${_pkgver/+/-}
 pkgrel=2
@@ -18,20 +18,10 @@
 makedepends=('krb5' 'cmake' 'damageproto' 'fixesproto' 'renderproto'
 	     'xmlto' 'docbook-xsl' 'git')
 conflicts=('freerdp-git')
-#source=(FreeRDP-${_pkgver}::git://github.com/FreeRDP/FreeRDP.git#commit=ff6dbb049ce066f6fca5708f81fd33f97086bc0e
-source=($pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/FreeRDP/archive/${pkgver/_/-}.tar.gz
-	https://github.com/FreeRDP/FreeRDP/commit/1b663ceffe51008af7ae9749e5b7999b2f7d6698.patch
-	stuck_winkey.patch)
-md5sums=('a4a0a4f6e69c871aeab0600091ca6118'
-         '83da0f44c0e1a51707fad5ed06fd7b06'
-         'd29f028e61967f091f021d24005dbee2')
+#source=($pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/FreeRDP/archive/${pkgver/_/-}.tar.gz)
+source=(FreeRDP-${_pkgver}::git://github.com/FreeRDP/FreeRDP.git#commit=c3ce0c3b09bf10f388011e01bb4091e351af39e9)
+md5sums=('SKIP')
 
-prepare() {
-  cd $srcdir/FreeRDP-${_pkgver}
-  patch -p1 <$srcdir/stuck_winkey.patch
-  patch -p1 <$srcdir/1b663ceffe51008af7ae9749e5b7999b2f7d6698.patch
-}
-
 build() {
   cd $srcdir/FreeRDP-${_pkgver}
   cmake \
@@ -42,7 +32,7 @@
 	-DWITH_CHANNELS=ON \
 	-DWITH_CLIENT_CHANNELS=ON \
 	-DWITH_SERVER_CHANNELS=ON \
-#	-DWITH_WAYLAND=ON \
+	-DWITH_WAYLAND=ON \
 	.
   make
 }

Deleted: stuck_winkey.patch
===================================================================
--- stuck_winkey.patch	2016-01-07 12:33:29 UTC (rev 155636)
+++ stuck_winkey.patch	2016-01-07 12:33:39 UTC (rev 155637)
@@ -1,27 +0,0 @@
-diff -rup ./client/X11.old/xf_event.c ./client/X11/xf_event.c
---- ./client/X11.old/xf_event.c	2014-06-12 15:51:57.000000000 +0200
-+++ ./client/X11/xf_event.c	2014-10-22 16:53:53.440644196 +0200
-@@ -556,6 +556,7 @@ static BOOL xf_event_FocusOut(xfContext*
- 	if (event->xfocus.mode == NotifyWhileGrabbed)
- 		XUngrabKeyboard(xfc->display, CurrentTime);
- 
-+	xf_keyboard_release_all_keypress(xfc);
- 	xf_keyboard_clear(xfc);
- 
- 	if (app)
-diff -rup ./client/X11.old/xf_keyboard.c ./client/X11/xf_keyboard.c
---- ./client/X11.old/xf_keyboard.c	2014-06-12 15:51:57.000000000 +0200
-+++ ./client/X11/xf_keyboard.c	2014-10-22 16:57:58.403749478 +0200
-@@ -169,6 +169,12 @@ void xf_keyboard_release_all_keypress(xf
- 		if (xfc->KeyboardState[keycode] != NoSymbol)
- 		{
- 			rdp_scancode = freerdp_keyboard_get_rdp_scancode_from_x11_keycode(keycode);
-+
-+			// release tab before releasing the windows key.
-+			// this stops the start menu from opening on unfocus event.
-+			if (rdp_scancode == RDP_SCANCODE_LWIN)
-+				freerdp_input_send_keyboard_event_ex(xfc->instance->input, FALSE, RDP_SCANCODE_TAB);
-+
- 			freerdp_input_send_keyboard_event_ex(xfc->instance->input, FALSE, rdp_scancode);
- 			xfc->KeyboardState[keycode] = NoSymbol;
- 		}



More information about the arch-commits mailing list