1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00

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>
This commit is contained in:
Sofian Brabez 2013-02-04 23:29:20 +00:00
parent 62db6b5c76
commit 4f36f96f5f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=311656
4 changed files with 28 additions and 0 deletions

View File

@ -3525,6 +3525,7 @@
SUBDIR += py-ply
SUBDIR += py-pmock
SUBDIR += py-polib
SUBDIR += py-posix_ipc
SUBDIR += py-pp
SUBDIR += py-pqueue
SUBDIR += py-prettytable

View File

@ -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>

View File

@ -0,0 +1,2 @@
SHA256 (posix_ipc-0.9.4.tar.gz) = 313da91eadbcea13f58eb6d329c6ec2c398715e3962f282fdac5f8132311ed25
SIZE (posix_ipc-0.9.4.tar.gz) = 74661

View File

@ -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/