commit:     90ea17a95c9e556b9f7cbea9d25f2f4ff58b2e8d
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail 
<DOT> com>
AuthorDate: Tue Sep 20 16:57:27 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Sep 20 21:07:01 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90ea17a9

dev-python/ws4py: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/2376

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 .../ws4py/files/ws4py-0.2-cherrypy_test.patch      | 24 -------------------
 .../ws4py/files/ws4py-0.2.1-process-data.patch     | 27 ----------------------
 2 files changed, 51 deletions(-)

diff --git a/dev-python/ws4py/files/ws4py-0.2-cherrypy_test.patch 
b/dev-python/ws4py/files/ws4py-0.2-cherrypy_test.patch
deleted file mode 100644
index e1d55af..00000000
--- a/dev-python/ws4py/files/ws4py-0.2-cherrypy_test.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-db23aff2ea commit 4ec8638c268ecdb710d97176a55cc5b818aa1a18
-https://github.com/Lawouach/WebSocket-for-Python/issues/72
-diff -ur ws4py-0.2.4.orig/test/test_cherrypy.py 
ws4py-0.2.4/test/test_cherrypy.py
---- test/test_cherrypy.py      2012-12-14 03:35:48.000000000 +0800
-+++ test/test_cherrypy.py      2013-01-11 16:56:37.555534011 +0800
-@@ -4,6 +4,7 @@
- import cherrypy
- from ws4py.server.cherrypyserver import WebSocketPlugin, WebSocketTool
- from ws4py.websocket import EchoWebSocket
-+from ws4py.compat import py3k
- 
- class FakeSocket(object):
-     def settimeout(self, timeout):
-@@ -65,7 +66,10 @@
-         h = EchoWebSocket(s, [], [])
-         cherrypy.engine.publish('handle-websocket', h, ('127.0.0.1', 0))
-         self.assertEquals(len(cherrypy.engine.websocket.pool), 1)
--        k = cherrypy.engine.websocket.pool.keys()[0]
-+        if py3k:
-+            k = list(cherrypy.engine.websocket.pool.keys())[0]
-+        else:
-+            k = cherrypy.engine.websocket.pool.keys()[0]
-         self.assertTrue(k is h)
-         self.assertEquals(cherrypy.engine.websocket.pool[k][1], ('127.0.0.1', 
0))

diff --git a/dev-python/ws4py/files/ws4py-0.2.1-process-data.patch 
b/dev-python/ws4py/files/ws4py-0.2.1-process-data.patch
deleted file mode 100644
index 5476f2d..00000000
--- a/dev-python/ws4py/files/ws4py-0.2.1-process-data.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 38cf669e27fab9de187eb11dabd7d85d73d5f470 Mon Sep 17 00:00:00 2001
-From: Jon Salz <js...@chromium.org>
-Date: Fri, 20 Apr 2012 02:22:46 +0800
-Subject: [PATCH] Process remaining bytes in the body, if any.
-
-https://github.com/Lawouach/WebSocket-for-Python/issues/46
----
- ws4py/client/__init__.py |    3 +++
- 1 files changed, 3 insertions(+), 0 deletions(-)
-
-diff --git a/ws4py/client/__init__.py b/ws4py/client/__init__.py
-index aa4c8f2..29b1357 100644
---- a/ws4py/client/__init__.py
-+++ b/ws4py/client/__init__.py
-@@ -71,6 +71,9 @@ class WebSocketBaseClient(WebSocket):
- 
-         self.handshake_ok()
- 
-+        if body != '':
-+            self.process(body)
-+
-     @property
-     def handshake_headers(self):
-         parts = urlsplit(self.url)
--- 
-1.7.3.4
-

Reply via email to