Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jul 2015 09:09:33 +0000 (UTC)
From:      Olli Hauer <ohauer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r391296 - in head/net: . py-paho-mqtt
Message-ID:  <201507040909.t6499Xnm074318@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ohauer
Date: Sat Jul  4 09:09:32 2015
New Revision: 391296
URL: https://svnweb.freebsd.org/changeset/ports/391296

Log:
  - add port py-paho-mqtt
  
  This port replace the replace mosquitto python driver
  
  Python MQTT version 3.1/3.1.1 client class
  
  The MQTT protocol is a machine-to-machine (M2M)/"Internet of Things"
  connectivity protocol. Designed as an extremely lightweight publish/subscribe
  messaging transport, it is useful for connections with remote locations where
  a small code footprint is required and/or network bandwidth is at a premium.
  
  WWW: http://eclipse.org/paho
  
  PR:		200540
  Submitted by:	ohauer
  Approved by:	Joseph Benden <joe@thrallingpenguin.com> (maintainer, via PM)

Added:
  head/net/py-paho-mqtt/
  head/net/py-paho-mqtt/Makefile   (contents, props changed)
  head/net/py-paho-mqtt/distinfo   (contents, props changed)
  head/net/py-paho-mqtt/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Sat Jul  4 08:56:54 2015	(r391295)
+++ head/net/Makefile	Sat Jul  4 09:09:32 2015	(r391296)
@@ -931,6 +931,7 @@
     SUBDIR += py-novaclient
     SUBDIR += py-oauth
     SUBDIR += py-oauth2
+    SUBDIR += py-paho-mqtt
     SUBDIR += py-pcap
     SUBDIR += py-pcapy
     SUBDIR += py-pcs

Added: head/net/py-paho-mqtt/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-paho-mqtt/Makefile	Sat Jul  4 09:09:32 2015	(r391296)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	paho-mqtt
+PORTVERSION=	1.1
+CATEGORIES=	net python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	joe@thrallingpenguin.com
+COMMENT=	MQTT version 3.1/3.1.1 client class
+
+LICENSE=	EPL
+
+USES=		shebangfix python
+USE_PYTHON=	distutils autoplist
+SHEBANG_FILES=	examples/*.py
+
+.include <bsd.port.mk>

Added: head/net/py-paho-mqtt/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-paho-mqtt/distinfo	Sat Jul  4 09:09:32 2015	(r391296)
@@ -0,0 +1,2 @@
+SHA256 (paho-mqtt-1.1.tar.gz) = 0f7a629efe6e3a2c61b59d3550aa9f2c4529b5689a65fde45e6f1ac36b9a261e
+SIZE (paho-mqtt-1.1.tar.gz) = 41788

Added: head/net/py-paho-mqtt/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/py-paho-mqtt/pkg-descr	Sat Jul  4 09:09:32 2015	(r391296)
@@ -0,0 +1,8 @@
+Python MQTT version 3.1/3.1.1 client class
+
+The MQTT protocol is a machine-to-machine (M2M)/"Internet of Things"
+connectivity protocol. Designed as an extremely lightweight publish/subscribe
+messaging transport, it is useful for connections with remote locations where
+a small code footprint is required and/or network bandwidth is at a premium.
+
+WWW: http://eclipse.org/paho



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507040909.t6499Xnm074318>