diff --git a/net/Makefile b/net/Makefile index 6df7710f6291..84ac87daae79 100644 --- a/net/Makefile +++ b/net/Makefile @@ -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 diff --git a/net/py-rabbitpy/Makefile b/net/py-rabbitpy/Makefile new file mode 100644 index 000000000000..ed3879bc63ce --- /dev/null +++ b/net/py-rabbitpy/Makefile @@ -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 diff --git a/net/py-rabbitpy/distinfo b/net/py-rabbitpy/distinfo new file mode 100644 index 000000000000..9394ed3d502c --- /dev/null +++ b/net/py-rabbitpy/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1477642209 +SHA256 (rabbitpy-1.0.0.tar.gz) = 54d33746d0c6a686417cd354346803945df0740b39fb92842d259387100db126 +SIZE (rabbitpy-1.0.0.tar.gz) = 41453 diff --git a/net/py-rabbitpy/pkg-descr b/net/py-rabbitpy/pkg-descr new file mode 100644 index 000000000000..a92c0e490893 --- /dev/null +++ b/net/py-rabbitpy/pkg-descr @@ -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