From owner-svn-ports-all@freebsd.org Fri Oct 28 09:41:07 2016 Return-Path: Delivered-To: svn-ports-all@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 70ECFC2323F; Fri, 28 Oct 2016 09:41:07 +0000 (UTC) (envelope-from olgeni@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 2670A7C3; Fri, 28 Oct 2016 09:41:07 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9S9f64M058425; Fri, 28 Oct 2016 09:41:06 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9S9f6c1058421; Fri, 28 Oct 2016 09:41:06 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201610280941.u9S9f6c1058421@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Fri, 28 Oct 2016 09:41:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424819 - in head/net: . py-rabbitpy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 09:41:07 -0000 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 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