summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng-Lung Sung <clsung@FreeBSD.org>2011-03-04 10:15:07 +0000
committerCheng-Lung Sung <clsung@FreeBSD.org>2011-03-04 10:15:07 +0000
commitcebe2c85446f0de59c942fd16ab3c42bb0f67603 (patch)
tree1bb3f15d98c5941f6176a208fdf3a096f54e51b0
parent- Update to 2.24 (diff)
Pika is a pure-Python implementation of the AMQP 0-9-1 protocol
that tries to stay fairly independent of the underlying network support library. Pika was developed primarily for use with RabbitMQ, but should also work with other AMQP 0-9-1 brokers. WWW: http://tonyg.github.com/pika/
Notes
Notes: svn path=/head/; revision=270274
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-pika/Makefile22
-rw-r--r--devel/py-pika/distinfo2
-rw-r--r--devel/py-pika/pkg-descr6
4 files changed, 31 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index d84ba4aea01f..682b5ca14508 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -2900,6 +2900,7 @@
SUBDIR += py-pefile
SUBDIR += py-period
SUBDIR += py-phpserialize
+ SUBDIR += py-pika
SUBDIR += py-pip
SUBDIR += py-plex
SUBDIR += py-ply
diff --git a/devel/py-pika/Makefile b/devel/py-pika/Makefile
new file mode 100644
index 000000000000..f8e91f05884a
--- /dev/null
+++ b/devel/py-pika/Makefile
@@ -0,0 +1,22 @@
+# New ports collection makefile for: py-pika
+# Date created: 2011-03-04
+# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= pika
+PORTVERSION= 0.9.4
+CATEGORIES= devel net
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= clsung@FreeBSD.org
+COMMENT= Python AMQP Client Library
+
+PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
+
+USE_PYTHON= yes
+USE_PYDISTUTILS= easy_install
+
+.include <bsd.port.mk>
diff --git a/devel/py-pika/distinfo b/devel/py-pika/distinfo
new file mode 100644
index 000000000000..ea90c0449f6d
--- /dev/null
+++ b/devel/py-pika/distinfo
@@ -0,0 +1,2 @@
+SHA256 (pika-0.9.4.tar.gz) = dae64f80d3879ad710715faaa220fecf1b741aeae3b771c4076e79465946a23f
+SIZE (pika-0.9.4.tar.gz) = 87705
diff --git a/devel/py-pika/pkg-descr b/devel/py-pika/pkg-descr
new file mode 100644
index 000000000000..50a30742df3f
--- /dev/null
+++ b/devel/py-pika/pkg-descr
@@ -0,0 +1,6 @@
+Pika is a pure-Python implementation of the AMQP 0-9-1 protocol
+that tries to stay fairly independent of the underlying network
+support library. Pika was developed primarily for use with
+RabbitMQ, but should also work with other AMQP 0-9-1 brokers.
+
+WWW: http://tonyg.github.com/pika/