From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 77B02158086 for ; Fri, 29 Oct 2021 22:01:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C442BE0845; Fri, 29 Oct 2021 22:01:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AEB6FE0845 for ; Fri, 29 Oct 2021 22:01:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6AAB7343168 for ; Fri, 29 Oct 2021 22:01:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B98F199 for ; Fri, 29 Oct 2021 22:01:10 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1635543645.527566f337f939d0efd25e5775aa72fae339fcea.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/uvicorn/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/uvicorn/files/uvicorn-0.13.4-fix-wsproto-1.0.patch X-VCS-Directories: dev-python/uvicorn/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 527566f337f939d0efd25e5775aa72fae339fcea X-VCS-Branch: master Date: Fri, 29 Oct 2021 22:01:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 44f39f6b-59ce-41ac-9041-d3eea9a2b3d4 X-Archives-Hash: 0b404fc8c56635ec567741044e4980b5 commit: 527566f337f939d0efd25e5775aa72fae339fcea Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Oct 18 17:25:15 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Oct 29 21:40:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=527566f3 dev-python/uvicorn: remove unused patch(es) Closes: https://github.com/gentoo/gentoo/pull/22625 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../files/uvicorn-0.13.4-fix-wsproto-1.0.patch | 31 ---------------------- 1 file changed, 31 deletions(-) diff --git a/dev-python/uvicorn/files/uvicorn-0.13.4-fix-wsproto-1.0.patch b/dev-python/uvicorn/files/uvicorn-0.13.4-fix-wsproto-1.0.patch deleted file mode 100644 index da3038d6db4..00000000000 --- a/dev-python/uvicorn/files/uvicorn-0.13.4-fix-wsproto-1.0.patch +++ /dev/null @@ -1,31 +0,0 @@ -https://github.com/encode/uvicorn/pull/892 - -diff --git a/tests/protocols/test_http.py b/tests/protocols/test_http.py -index f35a965d..25110fc6 100644 ---- a/tests/protocols/test_http.py -+++ b/tests/protocols/test_http.py -@@ -67,6 +67,7 @@ - b"Host: example.org", - b"Connection: upgrade", - b"Upgrade: websocket", -+ b"Sec-WebSocket-Version: 11", - b"", - b"", - ] -diff --git a/tests/protocols/test_websocket.py b/tests/protocols/test_websocket.py -index 24bc285f..7c3fcc08 100644 ---- a/tests/protocols/test_websocket.py -+++ b/tests/protocols/test_websocket.py -@@ -51,7 +51,11 @@ def app(scope): - async with httpx.AsyncClient() as client: - response = await client.get( - "http://127.0.0.1:8000", -- headers={"upgrade": "websocket", "connection": "upgrade"}, -+ headers={ -+ "upgrade": "websocket", -+ "connection": "upgrade", -+ "sec-webSocket-version": "11", -+ }, - timeout=5, - ) - if response.status_code == 426: