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>
This commit is contained in:
Martin Wilke 2017-04-12 13:21:39 +00:00
parent 96f8b61560
commit 05096f65be
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=438355
4 changed files with 38 additions and 0 deletions

View File

@ -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

29
net/py-stomp.py/Makefile Normal file
View File

@ -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>

3
net/py-stomp.py/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1492001883
SHA256 (stomp.py-4.1.15.tar.gz) = 276e6e0075e9ab0abaa96fe3e5848977ece92e8baef3cc093614838af038ac97
SIZE (stomp.py-4.1.15.tar.gz) = 45655

View File

@ -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