This removes: * Python 3 variants (VARIANT:=python3) * "for Python3" from package titles * Package selection condition from package dependencies, e.g. +PACKAGE_python3-six:python3-light replaced with +python3-light * "Default" package information sections, e.g. Package/python-six/Default removed and package details merged into Package/python3-six * "(Variant for Python3)" from package descriptions Signed-off-by: Jeffery To <jeffery.to@gmail.com>
37 lines
994 B
Makefile
37 lines
994 B
Makefile
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-paho-mqtt
|
|
PKG_VERSION:=1.5.0
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>, Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_LICENSE:=EPL-1.0 Eclipse Distribution License v1.0
|
|
PKG_LICENSE_FILES:=epl-v10 edl-v10
|
|
|
|
PYPI_NAME:=paho-mqtt
|
|
PKG_HASH:=e3d286198baaea195c8b3bc221941d25a3ab0e1507fc1779bdb7473806394be4
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-paho-mqtt
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=python3-paho-mqtt
|
|
URL:=http://eclipse.org/paho
|
|
DEPENDS:=+python3-light
|
|
endef
|
|
|
|
define Package/python3-paho-mqtt/description
|
|
MQTT version 3.1/3.1.1 client class
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-paho-mqtt))
|
|
$(eval $(call BuildPackage,python3-paho-mqtt))
|
|
$(eval $(call BuildPackage,python3-paho-mqtt-src))
|