b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | # |
| 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 | # |
| 7 | include $(TOPDIR)/rules.mk |
| 8 | |
| 9 | PKG_NAME:=python-aio-mqtt-mod |
| 10 | PKG_VERSION:=0.3.4 |
| 11 | PKG_RELEASE:=1 |
| 12 | |
| 13 | PYPI_NAME:=aio-mqtt-mod |
| 14 | PKG_HASH:=340184b35771b7eb7982072fcca313213d856638dd7f98b99bda3ab16ba23552 |
| 15 | |
| 16 | PKG_MAINTAINER:=Quintin Hill <stuff@quintin.me.uk> |
| 17 | PKG_LICENSE:=Apache-2.0 |
| 18 | PKG_LICENSE_FILES:=LICENSE |
| 19 | |
| 20 | include ../pypi.mk |
| 21 | include $(INCLUDE_DIR)/package.mk |
| 22 | include ../python3-package.mk |
| 23 | |
| 24 | define 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 |
| 31 | endef |
| 32 | |
| 33 | define Package/python3-aio-mqtt-mod/description |
| 34 | Asynchronous MQTT client for 3.1.1 protocol version (mod). |
| 35 | endef |
| 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)) |