From 3c50caed90a9a45f3cc7eae9c74346dc0201e6d7 Mon Sep 17 00:00:00 2001 From: swills Date: Fri, 23 Nov 2012 21:45:53 +0000 Subject: - Update to 0.7.4 Feature safe: yes --- x11/xpra/Makefile | 2 +- x11/xpra/distinfo | 4 ++-- x11/xpra/files/patch-issue207 | 22 ---------------------- 3 files changed, 3 insertions(+), 25 deletions(-) delete mode 100644 x11/xpra/files/patch-issue207 (limited to 'x11/xpra') diff --git a/x11/xpra/Makefile b/x11/xpra/Makefile index 014caa536a75..74d928bcb4c2 100644 --- a/x11/xpra/Makefile +++ b/x11/xpra/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xpra -PORTVERSION= 0.7.2 +PORTVERSION= 0.7.4 CATEGORIES= x11 MASTER_SITES= http://xpra.org/src/ diff --git a/x11/xpra/distinfo b/x11/xpra/distinfo index f1758d4f4918..5a112d2c96f4 100644 --- a/x11/xpra/distinfo +++ b/x11/xpra/distinfo @@ -1,2 +1,2 @@ -SHA256 (xpra-0.7.2.tar.bz2) = f9e5bcf94f65becdeeec13eeb1cbea6accf8925c095cfe42ab46fe96625c9015 -SIZE (xpra-0.7.2.tar.bz2) = 469959 +SHA256 (xpra-0.7.4.tar.bz2) = 93d12df6e764195c57a769b4740b9018073369a46ce9626ce430c657e475942c +SIZE (xpra-0.7.4.tar.bz2) = 470237 diff --git a/x11/xpra/files/patch-issue207 b/x11/xpra/files/patch-issue207 deleted file mode 100644 index 6a49c6208b0c..000000000000 --- a/x11/xpra/files/patch-issue207 +++ /dev/null @@ -1,22 +0,0 @@ ---- wimpiggy/lowlevel/bindings.pyx (revision 2071) -+++ wimpiggy/lowlevel/bindings.pyx (revision 2072) -@@ -894,4 +894,5 @@ - cdef Display * display #@DuplicatedSignature - cdef KeySym keysym #@DuplicatedSignature -+ cdef char* keyname - display = get_xdisplay_for(display_source) - raw_mappings = _get_raw_keycode_mappings(display) -@@ -900,9 +901,10 @@ - keynames = [] - for keysym in keysyms: -+ key = "" - if keysym!=NoSymbol: - keyname = XKeysymToString(keysym) -- else: -- keyname = "" -- keynames.append(keyname) -+ if keyname!=NULL: -+ key = str(keyname) -+ keynames.append(key) - #now remove trailing empty entries: - while len(keynames)>0 and keynames[-1]=="": -- cgit