treewide: assign PKG_CPE_ID
[feed/packages.git] / lang / python / python-engineio / Makefile
1 #
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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=python-engineio
11 PKG_VERSION:=4.5.1
12 PKG_RELEASE:=1
13
14 PYPI_NAME:=python-engineio
15 PKG_HASH:=b167a1b208fcdce5dbe96a61a6ca22391cfa6715d796c22de93e3adf9c07ae0c
16
17 PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
18 PKG_LICENSE:=MIT
19 PKG_LICENSE_FILES:=LICENSE
20 PKG_CPE_ID:=cpe:/a:python-engineio_project:python-engineio
21
22 include ../pypi.mk
23 include $(INCLUDE_DIR)/package.mk
24 include ../python3-package.mk
25
26 define 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
38 endef
39
40 define Package/python3-engineio/description
41 Python implementation of the Engine.IO realtime client and server.
42 endef
43
44 $(eval $(call Py3Package,python3-engineio))
45 $(eval $(call BuildPackage,python3-engineio))
46 $(eval $(call BuildPackage,python3-engineio-src))