Files
packages/lang/python/python-flask-socketio/Makefile
Alexandru Ardelean f5e7a07572 python-flask-socketio: bump to 5.6.1
Requires python-socketio >= 5.12.0 and python-engineio >= 4.11.0,
both bumped in preceding commits.

Also fix test.sh to use importlib.metadata for version check
since flask_socketio no longer exposes __version__ directly.

Link: https://github.com/miguelgrinberg/Flask-SocketIO/blob/main/CHANGES.md
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-03-31 09:32:36 +03:00

48 lines
1.2 KiB
Makefile

#
# Copyright (C) 2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=python-flask-socketio
PKG_VERSION:=5.6.1
PKG_RELEASE:=1
PYPI_NAME:=Flask-SocketIO
PYPI_SOURCE_NAME:=flask_socketio
PKG_HASH:=fe5bd995c3ed4da9a98f335d0d830fa1a19d84a64789f6265642a671fdacaeac
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
PKG_BUILD_DEPENDS:=python-setuptools/host
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-flask-socketio
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
TITLE:=Socket.IO integration for Flask
URL:=https://github.com/miguelgrinberg/Flask-SocketIO/
DEPENDS:= \
+python3-light \
+python3-flask \
+python3-socketio
endef
define Package/python3-flask-socketio/description
Flask-SocketIO gives Flask applications access to low latency
bi-directional communications between the clients and the server.
endef
$(eval $(call Py3Package,python3-flask-socketio))
$(eval $(call BuildPackage,python3-flask-socketio))
$(eval $(call BuildPackage,python3-flask-socketio-src))