aboutsummaryrefslogtreecommitdiffstats
path: root/x11/xpra
diff options
context:
space:
mode:
authorswills <swills@FreeBSD.org>2012-11-24 05:45:53 +0800
committerswills <swills@FreeBSD.org>2012-11-24 05:45:53 +0800
commit3c50caed90a9a45f3cc7eae9c74346dc0201e6d7 (patch)
tree5bbf96728d612ee1623b92f41831ea7cff7f0a3d /x11/xpra
parent9f137f674a5bf1ca6db36cc341d204035de22f0f (diff)
downloadfreebsd-ports-gnome-3c50caed90a9a45f3cc7eae9c74346dc0201e6d7.tar.gz
freebsd-ports-gnome-3c50caed90a9a45f3cc7eae9c74346dc0201e6d7.tar.zst
freebsd-ports-gnome-3c50caed90a9a45f3cc7eae9c74346dc0201e6d7.zip
- Update to 0.7.4
Feature safe: yes
Diffstat (limited to 'x11/xpra')
-rw-r--r--x11/xpra/Makefile2
-rw-r--r--x11/xpra/distinfo4
-rw-r--r--x11/xpra/files/patch-issue20722
3 files changed, 3 insertions, 25 deletions
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]=="":