mirror of
https://git.freebsd.org/ports.git
synced 2025-07-14 15:59:18 -04:00
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>
29 lines
635 B
Makefile
29 lines
635 B
Makefile
# 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>
|