From owner-svn-ports-head@freebsd.org Wed Apr 12 13:21:40 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4E0ED3B2C1; Wed, 12 Apr 2017 13:21:40 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A643680; Wed, 12 Apr 2017 13:21:40 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3CDLddU047590; Wed, 12 Apr 2017 13:21:39 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3CDLdRS047586; Wed, 12 Apr 2017 13:21:39 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201704121321.v3CDLdRS047586@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Wed, 12 Apr 2017 13:21:39 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Apr 2017 13:21:41 -0000 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 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 +# $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 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