Date: Wed, 12 Apr 2017 13:21:39 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438355 - in head/net: . py-stomp.py Message-ID: <201704121321.v3CDLdRS047586@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Wed Apr 12 13:21:39 2017 New Revision: 438355 URL: https://svnweb.freebsd.org/changeset/ports/438355 Log: stomp.py is a Python client library for accessing messaging servers (such as Apollo or RabbitMQ) using the STOMP protocol (versions 1.0, 1.1 and 1.2). It can also be run as a standalone, command-line client for testing. WWW: https://github.com/jasonrbriggs/stomp.py PR: 216202 Submitted by: James Elstone <james@elstone.net> Added: head/net/py-stomp.py/ head/net/py-stomp.py/Makefile (contents, props changed) head/net/py-stomp.py/distinfo (contents, props changed) head/net/py-stomp.py/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Apr 12 13:07:03 2017 (r438354) +++ head/net/Makefile Wed Apr 12 13:21:39 2017 (r438355) @@ -1054,6 +1054,7 @@ SUBDIR += py-socketio-client SUBDIR += py-speedtest-cli SUBDIR += py-sshuttle + SUBDIR += py-stomp.py SUBDIR += py-suds SUBDIR += py-suds-jurko SUBDIR += py-terminado Added: head/net/py-stomp.py/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-stomp.py/Makefile Wed Apr 12 13:21:39 2017 (r438355) @@ -0,0 +1,29 @@ +# Created by: James Elstone <james@elstone.net> +# $FreeBSD$ + +PORTNAME= stomp.py +PORTVERSION= 4.1.15 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= james@elstone.net +COMMENT= Python STOMP client, supporting >=1.0 and <=1.2 of the protocol + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.8.1:devel/py-pytest + +OPTIONS_DEFINE= DOXYGEN +DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @(cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test) + +.include <bsd.port.mk> Added: head/net/py-stomp.py/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-stomp.py/distinfo Wed Apr 12 13:21:39 2017 (r438355) @@ -0,0 +1,3 @@ +TIMESTAMP = 1492001883 +SHA256 (stomp.py-4.1.15.tar.gz) = 276e6e0075e9ab0abaa96fe3e5848977ece92e8baef3cc093614838af038ac97 +SIZE (stomp.py-4.1.15.tar.gz) = 45655 Added: head/net/py-stomp.py/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-stomp.py/pkg-descr Wed Apr 12 13:21:39 2017 (r438355) @@ -0,0 +1,5 @@ +stomp.py is a Python client library for accessing messaging servers (such as +Apollo or RabbitMQ) using the STOMP protocol (versions 1.0, 1.1 and 1.2). It +can also be run as a standalone, command-line client for testing. + +WWW: https://github.com/jasonrbriggs/stomp.py
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704121321.v3CDLdRS047586>