]> git.99rst.org Git - openwrt-packages.git/commitdiff
python-websocket-client: drop package
authorAlexandru Ardelean <redacted>
Wed, 15 Jul 2026 08:51:06 +0000 (11:51 +0300)
committerJosef Schlehofer <redacted>
Thu, 16 Jul 2026 06:46:54 +0000 (08:46 +0200)
There are currently no more users for this.
Drop it.

Signed-off-by: Alexandru Ardelean <redacted>
lang/python/python-websocket-client/Makefile [deleted file]
lang/python/python-websocket-client/test.sh [deleted file]

diff --git a/lang/python/python-websocket-client/Makefile b/lang/python/python-websocket-client/Makefile
deleted file mode 100644 (file)
index 53fd015..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=python-websocket-client
-PKG_VERSION:=1.9.0
-PKG_RELEASE:=1
-
-PYPI_NAME:=websocket-client
-PYPI_SOURCE_NAME:=websocket_client
-PKG_HASH:=9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98
-
-PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
-PKG_LICENSE:=Apache-2.0
-PKG_LICENSE_FILES:=LICENSE
-
-include ../pypi.mk
-include $(INCLUDE_DIR)/package.mk
-include ../python3-package.mk
-
-define Package/python3-websocket-client
-  SECTION:=lang
-  CATEGORY:=Languages
-  SUBMENU:=Python
-  TITLE:=WebSocket client for Python. hybi13 is supported
-  URL:=https://github.com/websocket-client/websocket-client
-  DEPENDS:=+python3-light +python3-logging +python3-openssl +python3-urllib
-endef
-
-define Package/python3-websocket-client/description
-  websocket-client module is WebSocket client for python. This provide the low
-  level APIs for WebSocket. All APIs are the synchronous functions.
-
-  websocket-client supports only hybi-13.
-endef
-
-define Py3Package/python3-websocket-client/filespec
-+|$(PYTHON3_PKG_DIR)
--|$(PYTHON3_PKG_DIR)/websocket/tests
-endef
-
-$(eval $(call Py3Package,python3-websocket-client))
-$(eval $(call BuildPackage,python3-websocket-client))
-$(eval $(call BuildPackage,python3-websocket-client-src))
diff --git a/lang/python/python-websocket-client/test.sh b/lang/python/python-websocket-client/test.sh
deleted file mode 100755 (executable)
index 842fb14..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-[ "$1" = "python3-websocket-client" ] || exit 0
-
-python3 - << EOF
-import sys
-import websocket
-
-if websocket.__version__ != "$2":
-    print("Wrong version: " + websocket.__version__)
-    sys.exit(1)
-
-# Verify core API is importable
-from websocket import (
-    WebSocket,
-    WebSocketApp,
-    WebSocketConnectionClosedException,
-    WebSocketTimeoutException,
-    WebSocketBadStatusException,
-    create_connection,
-    enableTrace,
-)
-
-# WebSocket can be instantiated (without connecting)
-ws = WebSocket()
-assert ws is not None
-
-# WebSocketApp can be instantiated with just a URL
-app = WebSocketApp("ws://localhost:9999")
-assert app is not None
-
-# Trace toggle does not raise
-enableTrace(False)
-
-sys.exit(0)
-EOF
git clone https://git.99rst.org/PROJECT