blob: ae553fc44b82fc564fcd4a2e9066203662f19c0c [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2023
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:=python-aio-mqtt-mod
10PKG_VERSION:=0.3.4
11PKG_RELEASE:=1
12
13PYPI_NAME:=aio-mqtt-mod
14PKG_HASH:=340184b35771b7eb7982072fcca313213d856638dd7f98b99bda3ab16ba23552
15
16PKG_MAINTAINER:=Quintin Hill <stuff@quintin.me.uk>
17PKG_LICENSE:=Apache-2.0
18PKG_LICENSE_FILES:=LICENSE
19
20include ../pypi.mk
21include $(INCLUDE_DIR)/package.mk
22include ../python3-package.mk
23
24define Package/python3-aio-mqtt-mod
25 SECTION:=lang
26 CATEGORY:=Languages
27 SUBMENU:=Python
28 TITLE:=Asynchronous MQTT client
29 URL:=https://github.com/devbis/aio-mqtt
30 DEPENDS:=+python3-light +python3-asyncio
31endef
32
33define Package/python3-aio-mqtt-mod/description
34 Asynchronous MQTT client for 3.1.1 protocol version (mod).
35endef
36
37$(eval $(call Py3Package,python3-aio-mqtt-mod))
38$(eval $(call BuildPackage,python3-aio-mqtt-mod))
39$(eval $(call BuildPackage,python3-aio-mqtt-mod-src))