diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2017-04-12 13:21:39 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2017-04-12 13:21:39 +0000 |
commit | 05096f65be82bc872278ffcecbf430bd94beb539 (patch) | |
tree | 380a480761a26b67531f5250489285c0bd45b29f /net/py-stomp.py | |
parent | Update to version 1.0.0 (diff) |
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>
Notes
Notes:
svn path=/head/; revision=438355
Diffstat (limited to 'net/py-stomp.py')
-rw-r--r-- | net/py-stomp.py/Makefile | 29 | ||||
-rw-r--r-- | net/py-stomp.py/distinfo | 3 | ||||
-rw-r--r-- | net/py-stomp.py/pkg-descr | 5 |
3 files changed, 37 insertions, 0 deletions
diff --git a/net/py-stomp.py/Makefile b/net/py-stomp.py/Makefile new file mode 100644 index 000000000000..259bb2c19c6a --- /dev/null +++ b/net/py-stomp.py/Makefile @@ -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> diff --git a/net/py-stomp.py/distinfo b/net/py-stomp.py/distinfo new file mode 100644 index 000000000000..8df4341c4437 --- /dev/null +++ b/net/py-stomp.py/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1492001883 +SHA256 (stomp.py-4.1.15.tar.gz) = 276e6e0075e9ab0abaa96fe3e5848977ece92e8baef3cc093614838af038ac97 +SIZE (stomp.py-4.1.15.tar.gz) = 45655 diff --git a/net/py-stomp.py/pkg-descr b/net/py-stomp.py/pkg-descr new file mode 100644 index 000000000000..04ce639f5253 --- /dev/null +++ b/net/py-stomp.py/pkg-descr @@ -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 |