14
0

- update to 0.12.0:

* The simplejson module is no longer needed for redis token
    support
  * redis tokens can now be either JSON or plain text
  * websockify can now listen to a Unix socket for incoming
    connections
  * Command line now supports disabling directory listings
  * Basic Dockerfile included
- update to 0.5.1:

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-websockify?expand=0&rev=51
This commit is contained in:
2024-10-19 11:52:37 +00:00
committed by Git OBS Bridge
commit f519bb4fcc
7 changed files with 365 additions and 0 deletions

13
optional-websockify.patch Normal file
View File

@@ -0,0 +1,13 @@
Index: websockify-0.12.0/setup.py
===================================================================
--- websockify-0.12.0.orig/setup.py
+++ websockify-0.12.0/setup.py
@@ -30,7 +30,7 @@ setup(name=name,
packages=['websockify'],
include_package_data=True,
install_requires=[
- 'numpy', 'requests',
+ 'requests',
'jwcrypto',
'redis',
],