wok rev 25211
updated python-paho-mqtt (1.5.0 -> 1.6.1)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jul 13 15:10:55 2022 +0100 (2022-07-13) |
parents | 6ddf40c200c8 |
children | 73452f569a6d |
files | python-paho-mqtt/description.txt python-paho-mqtt/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/python-paho-mqtt/description.txt Wed Jul 13 15:10:55 2022 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +This document describes the source code for the Eclipse Paho MQTT Python 1.5 +client library, which implements versions 5.0, 3.1.1, and 3.1 of the MQTT 1.6 +protocol. 1.7 + 1.8 +This code provides a client class which enable applications to connect to 1.9 +an MQTT broker to publish messages, and to subscribe to topics and receive 1.10 +published messages. 1.11 +It also provides some helper functions to make publishing one off messages 1.12 +to an MQTT server very straightforward. 1.13 + 1.14 +It supports Python 2.7.9+ or 3.6+. 1.15 + 1.16 +The MQTT protocol is a machine-to-machine (M2M) or "Internet of Things" 1.17 +connectivity protocol. 1.18 +Designed as an extremely lightweight publish and subscribe messaging 1.19 +transport, it is useful for connections with remote locations where a 1.20 +small code footprint is required or network bandwidth is at a premium. 1.21 + 1.22 +Paho is an Eclipse Foundation project.
2.1 --- a/python-paho-mqtt/receipt Wed Jul 13 15:06:03 2022 +0100 2.2 +++ b/python-paho-mqtt/receipt Wed Jul 13 15:10:55 2022 +0100 2.3 @@ -1,15 +1,16 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="python-paho-mqtt" 2.7 -VERSION="1.5.0" 2.8 +VERSION="1.6.1" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Eclipse Paho MQTT Python client library." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="epl-v10 edl-v10" 2.13 WEB_SITE="https://pypi.org/project/paho-mqtt/" 2.14 2.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WGET_URL="https://github.com/eclipse/paho.mqtt.python/archive/v$VERSION.tar.gz" 2.17 +SOURCE="paho-mqtt" 2.18 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" 2.20 2.21 DEPENDS="python" 2.22 BUILD_DEPENDS="python python-setuptools"