blob: 64ba091abfaad7443c7262ba8eb8a008e64f96e4 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=python-engineio
11PKG_VERSION:=4.5.1
12PKG_RELEASE:=1
13
14PYPI_NAME:=python-engineio
15PKG_HASH:=b167a1b208fcdce5dbe96a61a6ca22391cfa6715d796c22de93e3adf9c07ae0c
16
17PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
18PKG_LICENSE:=MIT
19PKG_LICENSE_FILES:=LICENSE
20PKG_CPE_ID:=cpe:/a:python-engineio_project:python-engineio
21
22include ../pypi.mk
23include $(INCLUDE_DIR)/package.mk
24include ../python3-package.mk
25
26define Package/python3-engineio
27 SUBMENU:=Python
28 SECTION:=lang
29 CATEGORY:=Languages
30 TITLE:=Engine.IO server and client
31 URL:=https://github.com/miguelgrinberg/python-engineio
32 DEPENDS:= \
33 +python3-light \
34 +python3-asyncio \
35 +python3-logging \
36 +python3-openssl \
37 +python3-urllib
38endef
39
40define Package/python3-engineio/description
41 Python implementation of the Engine.IO realtime client and server.
42endef
43
44$(eval $(call Py3Package,python3-engineio))
45$(eval $(call BuildPackage,python3-engineio))
46$(eval $(call BuildPackage,python3-engineio-src))