Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Feb 2013 23:29:20 +0000 (UTC)
From:      Sofian Brabez <sbz@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r311656 - in head/devel: . py-posix_ipc
Message-ID:  <201302042329.r14NTKdd032125@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sbz
Date: Mon Feb  4 23:29:20 2013
New Revision: 311656
URL: http://svnweb.freebsd.org/changeset/ports/311656

Log:
  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>

Added:
  head/devel/py-posix_ipc/
  head/devel/py-posix_ipc/Makefile   (contents, props changed)
  head/devel/py-posix_ipc/distinfo   (contents, props changed)
  head/devel/py-posix_ipc/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Feb  4 23:24:39 2013	(r311655)
+++ head/devel/Makefile	Mon Feb  4 23:29:20 2013	(r311656)
@@ -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

Added: head/devel/py-posix_ipc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-posix_ipc/Makefile	Mon Feb  4 23:29:20 2013	(r311656)
@@ -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>

Added: head/devel/py-posix_ipc/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-posix_ipc/distinfo	Mon Feb  4 23:29:20 2013	(r311656)
@@ -0,0 +1,2 @@
+SHA256 (posix_ipc-0.9.4.tar.gz) = 313da91eadbcea13f58eb6d329c6ec2c398715e3962f282fdac5f8132311ed25
+SIZE (posix_ipc-0.9.4.tar.gz) = 74661

Added: head/devel/py-posix_ipc/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-posix_ipc/pkg-descr	Mon Feb  4 23:29:20 2013	(r311656)
@@ -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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302042329.r14NTKdd032125>