summaryrefslogtreecommitdiff
path: root/devel/py-posix_ipc
diff options
context:
space:
mode:
authorSofian Brabez <sbz@FreeBSD.org>2013-02-04 23:29:20 +0000
committerSofian Brabez <sbz@FreeBSD.org>2013-02-04 23:29:20 +0000
commit4f36f96f5fe65a8b1e7110087a5ee784a6ff357e (patch)
treec1add52ad7db9e5275475c79fa987a81da9dbac6 /devel/py-posix_ipc
parent- Update to 0.2.2 (diff)
posix_ipc is a Python module (written in C) that permits creation and
manipulation of POSIX inter-process semaphores, shared memory and message queues on platforms supporting the POSIX Realtime Extensions a.k.a. POSIX 1003.1b-1993. WWW: http://semanchuk.com/philip/posix_ipc/ PR: ports/171507 Submitted by: Kubilay Kocak <koobs.freebsd@gmail.com>
Notes
Notes: svn path=/head/; revision=311656
Diffstat (limited to 'devel/py-posix_ipc')
-rw-r--r--devel/py-posix_ipc/Makefile20
-rw-r--r--devel/py-posix_ipc/distinfo2
-rw-r--r--devel/py-posix_ipc/pkg-descr5
3 files changed, 27 insertions, 0 deletions
diff --git a/devel/py-posix_ipc/Makefile b/devel/py-posix_ipc/Makefile
new file mode 100644
index 000000000000..2f9d6675b110
--- /dev/null
+++ b/devel/py-posix_ipc/Makefile
@@ -0,0 +1,20 @@
+# Created by: Kubilay Kocak <koobs.freebsd@gmail.com>
+# $FreeBSD$
+
+PORTNAME= posix_ipc
+PORTVERSION= 0.9.4
+CATEGORIES= devel python
+MASTER_SITES= http://semanchuk.com/philip/posix_ipc/
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= koobs.freebsd@gmail.com
+COMMENT= POSIX IPC primitives for Python
+
+LICENSE= BSD
+
+USE_PYTHON= yes
+USE_PYDISTUTILS= yes
+
+PLIST_FILES= %%PYTHON_SITELIBDIR%%/posix_ipc.so
+
+.include <bsd.port.mk>
diff --git a/devel/py-posix_ipc/distinfo b/devel/py-posix_ipc/distinfo
new file mode 100644
index 000000000000..eb92c6daa3ae
--- /dev/null
+++ b/devel/py-posix_ipc/distinfo
@@ -0,0 +1,2 @@
+SHA256 (posix_ipc-0.9.4.tar.gz) = 313da91eadbcea13f58eb6d329c6ec2c398715e3962f282fdac5f8132311ed25
+SIZE (posix_ipc-0.9.4.tar.gz) = 74661
diff --git a/devel/py-posix_ipc/pkg-descr b/devel/py-posix_ipc/pkg-descr
new file mode 100644
index 000000000000..e549d9a93415
--- /dev/null
+++ b/devel/py-posix_ipc/pkg-descr
@@ -0,0 +1,5 @@
+posix_ipc is a Python module (written in C) that permits creation and
+manipulation of POSIX inter-process semaphores, shared memory and message queues
+on platforms supporting the POSIX Realtime Extensions a.k.a. POSIX 1003.1b-1993.
+
+WWW: http://semanchuk.com/philip/posix_ipc/