From 155e3c775aab2f1e09be356d2ab06fb69b99d8f6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 20 Nov 2020 20:47:19 +0100 Subject: gnu: xpra: Update to 4.0.5. * gnu/packages/xorg.scm (xpra): Update to 4.0.5. [source]: Remove xpra-4.0.4-norequests.patch. * gnu/packages/patches/xpra-4.0.4-norequests.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it. --- gnu/packages/patches/xpra-4.0.4-norequests.patch | 39 ------------------------ 1 file changed, 39 deletions(-) delete mode 100644 gnu/packages/patches/xpra-4.0.4-norequests.patch (limited to 'gnu/packages/patches') diff --git a/gnu/packages/patches/xpra-4.0.4-norequests.patch b/gnu/packages/patches/xpra-4.0.4-norequests.patch deleted file mode 100644 index e545be7f1d..0000000000 --- a/gnu/packages/patches/xpra-4.0.4-norequests.patch +++ /dev/null @@ -1,39 +0,0 @@ -Remove python-requests dependency, r27626 upstream. - ---- a/xpra/net/websockets/common.py (revision 27625) -+++ b/xpra/net/websockets/common.py (revision 27626) -@@ -7,7 +7,6 @@ - import uuid - from hashlib import sha1 - from base64 import b64encode --from requests.structures import CaseInsensitiveDict - - from xpra.os_util import strtobytes, bytestostr, monotonic_time - from xpra.log import Logger -@@ -77,7 +76,7 @@ - for line in lines: - parts = line.split(b": ", 1) - if len(parts)==2: -- headers[parts[0]] = parts[1] -+ headers[parts[0].lower()] = parts[1] - return headers - - def verify_response_headers(headers, key): -@@ -84,14 +83,13 @@ - log("verify_response_headers(%s)", headers) - if not headers: - raise Exception("no http headers found in response") -- headers = CaseInsensitiveDict(headers) -- upgrade = headers.get(b"Upgrade", b"") -+ upgrade = headers.get(b"upgrade", b"") - if upgrade!=b"websocket": - raise Exception("invalid http upgrade: '%s'" % upgrade) -- protocol = headers.get(b"Sec-WebSocket-Protocol", b"") -+ protocol = headers.get(b"sec-websocket-protocol", b"") - if protocol!=b"binary": - raise Exception("invalid websocket protocol: '%s'" % protocol) -- accept_key = headers.get(b"Sec-WebSocket-Accept", b"") -+ accept_key = headers.get(b"sec-websocket-accept", b"") - if not accept_key: - raise Exception("websocket accept key is missing") - expected_key = make_websocket_accept_hash(key) -- cgit v1.2.3 fb6ce6b18764bfd441e0123a'>xorg.scm
AgeCommit message (Expand)Author
2023-07-13gnu: Add libpciaccess-0.17....Janneke Nieuwenhuizen
2023-07-01gnu: xpra: Update to 4.4.6....Andy Tai
2023-06-18gnu: font-xfree86-type1: Update to 1.0.5....Timotej Lazar
2023-06-18gnu: font-winitzki-cyrillic: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-sun-misc: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-sony-misc: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-screen-cyrillic: Update to 1.0.5....Timotej Lazar
2023-06-18gnu: font-schumacher-misc: Update to 1.1.3....Timotej Lazar
2023-06-18gnu: font-mutt-misc: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-misc-misc: Update to 1.1.3....Timotej Lazar
2023-06-18gnu: font-misc-ethiopic: Update to 1.0.5....Timotej Lazar
2023-06-18gnu: font-misc-cyrillic: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-micro-misc: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-isas-misc: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-dec-misc: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-cronyx-cyrillic: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-arabic-misc: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-alias: Update to 1.0.5....Timotej Lazar
2023-06-18gnu: font-adobe75dpi: Update to 1.0.4....Timotej Lazar
2023-06-18gnu: font-adobe100dpi: Update to 1.0.4....Timotej Lazar
2023-06-04gnu: xcb-util-wm: Fix cross-compiling to riscv64....Zheng Junjie
2023-06-04gnu: libxtst: Fix cross-compiling to riscv64....Zheng Junjie
2023-05-30gnu: xpra: Update to 4.4.5....Andy Tai
2023-05-26gnu: xclock: Update to 1.1.1....Greg Hogan
2023-04-15gnu: xkeyboard-config: Update to 2.38....Maxim Cournoyer
2023-04-14Merge branch 'master' into core-updates....Maxim Cournoyer
2023-04-11gnu: xpra: Remove input labels and use gexps....Maxim Cournoyer
2023-04-11gnu: xpra: Update to 4.4.4....Maxim Cournoyer