From owner-svn-ports-head@FreeBSD.ORG Mon Feb 4 23:29:21 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D66D5352; Mon, 4 Feb 2013 23:29:21 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 986088DE; Mon, 4 Feb 2013 23:29:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r14NTLHe032129; Mon, 4 Feb 2013 23:29:21 GMT (envelope-from sbz@svn.freebsd.org) Received: (from sbz@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r14NTKdd032125; Mon, 4 Feb 2013 23:29:20 GMT (envelope-from sbz@svn.freebsd.org) Message-Id: <201302042329.r14NTKdd032125@svn.freebsd.org> From: Sofian Brabez Date: Mon, 4 Feb 2013 23:29:20 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Feb 2013 23:29:21 -0000 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 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 +# $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 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/