Date: Fri, 28 Oct 2016 09:41:05 +0000 (UTC) From: Jimmy Olgeni <olgeni@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424819 - in head/net: . py-rabbitpy Message-ID: <201610280941.u9S9f6c1058421@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: olgeni Date: Fri Oct 28 09:41:05 2016 New Revision: 424819 URL: https://svnweb.freebsd.org/changeset/ports/424819 Log: Add net/py-rabbitpy, a RabbitMQ client library for Python. Added: head/net/py-rabbitpy/ head/net/py-rabbitpy/Makefile (contents, props changed) head/net/py-rabbitpy/distinfo (contents, props changed) head/net/py-rabbitpy/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Oct 28 09:03:58 2016 (r424818) +++ head/net/Makefile Fri Oct 28 09:41:05 2016 (r424819) @@ -1022,6 +1022,7 @@ SUBDIR += py-pyzmq SUBDIR += py-qt4-network SUBDIR += py-qt5-network + SUBDIR += py-rabbitpy SUBDIR += py-radix SUBDIR += py-raet SUBDIR += py-rainbowstream Added: head/net/py-rabbitpy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-rabbitpy/Makefile Fri Oct 28 09:41:05 2016 (r424819) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= rabbitpy +PORTVERSION= 1.0.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= RabbitMQ client library for Python + +LICENSE= BSD3CLAUSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pamqp>0:net/py-pamqp +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pamqp>0:net/py-pamqp + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/net/py-rabbitpy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-rabbitpy/distinfo Fri Oct 28 09:41:05 2016 (r424819) @@ -0,0 +1,3 @@ +TIMESTAMP = 1477642209 +SHA256 (rabbitpy-1.0.0.tar.gz) = 54d33746d0c6a686417cd354346803945df0740b39fb92842d259387100db126 +SIZE (rabbitpy-1.0.0.tar.gz) = 41453 Added: head/net/py-rabbitpy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-rabbitpy/pkg-descr Fri Oct 28 09:41:05 2016 (r424819) @@ -0,0 +1,7 @@ +A pure python, thread-safe, minimalistic and Pythonic BSD Licensed +AMQP/RabbitMQ library that supports Python 2.6+ and Python 3.2+. +rabbitpy aims to provide a simple and easy to use API for interfacing +with RabbitMQ, minimizing the programming overhead often found in +other libraries. + +WWW: https://github.com/gmr/rabbitpy
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610280941.u9S9f6c1058421>