From 6c3b706b9149fe8f8664e109ffd6e490953ab9177617958b55c3b374b8c59dfd Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 8 Apr 2019 19:19:40 +0000 Subject: [PATCH] Accepting request 692329 from home:cbosdonnat:branches:devel:languages:python - Fix PyJWT / jwcrypto dependency problem (boo#1131024) OBS-URL: https://build.opensuse.org/request/show/692329 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-websockify?expand=0&rev=36 --- PyJWT-token-plugin.patch | 25 ------------------------- python-websockify.changes | 5 +++++ 2 files changed, 5 insertions(+), 25 deletions(-) diff --git a/PyJWT-token-plugin.patch b/PyJWT-token-plugin.patch index cbd12e6..e112806 100644 --- a/PyJWT-token-plugin.patch +++ b/PyJWT-token-plugin.patch @@ -3,31 +3,6 @@ From: UXabre Date: Fri, 21 Dec 2018 03:21:29 -0500 Subject: [PATCH] Added JWT tokens capability ---- - setup.py | 2 +- - tests/jwt.secret | 1 + - tests/jwt_rsa | 27 ++++++++++++++++++ - tests/jwt_rsa.pub | 1 + - tests/test_websocketproxy.py | 54 ++++++++++++++++++++++++++++++++++++ - websockify/token_plugins.py | 16 +++++++++++ - 6 files changed, 100 insertions(+), 1 deletion(-) - create mode 100644 tests/jwt.secret - create mode 100644 tests/jwt_rsa - create mode 100644 tests/jwt_rsa.pub - -Index: websockify-0.8.0/setup.py -=================================================================== ---- websockify-0.8.0.orig/setup.py -+++ websockify-0.8.0/setup.py -@@ -34,7 +34,7 @@ setup(name=name, - - packages=['websockify'], - include_package_data=True, -- install_requires=['numpy'], -+ install_requires=['numpy', 'PyJWT', 'cryptography'], - zip_safe=False, - entry_points={ - 'console_scripts': [ Index: websockify-0.8.0/websockify/token_plugins.py =================================================================== --- websockify-0.8.0.orig/websockify/token_plugins.py diff --git a/python-websockify.changes b/python-websockify.changes index 5ac893e..8af231e 100644 --- a/python-websockify.changes +++ b/python-websockify.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Apr 8 14:33:03 UTC 2019 - Cédric Bosdonnat + +- Fix PyJWT / jwcrypto dependency problem (boo#1131024) + ------------------------------------------------------------------- Wed Feb 13 09:25:56 UTC 2019 - Tomáš Chvátal