Date: Thu, 2 Apr 2015 23:43:41 +0000 (UTC) From: Don Lewis <truckman@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383077 - in head/net: . py-pynmsg Message-ID: <201504022343.t32Nhff6068916@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: truckman Date: Thu Apr 2 23:43:40 2015 New Revision: 383077 URL: https://svnweb.freebsd.org/changeset/ports/383077 Log: Add new port net/py-pynmsg. This is pynmsg, a Python extension module implemented in Cython for the nmsg C library. Differential Revision: https://reviews.freebsd.org/D2201 Approved by: mat (mentor) Sponsored by: Farsight Security, Inc. Added: head/net/py-pynmsg/ head/net/py-pynmsg/Makefile (contents, props changed) head/net/py-pynmsg/distinfo (contents, props changed) head/net/py-pynmsg/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Apr 2 23:40:29 2015 (r383076) +++ head/net/Makefile Thu Apr 2 23:43:40 2015 (r383077) @@ -929,6 +929,7 @@ SUBDIR += py-port-for SUBDIR += py-pybeanstalk SUBDIR += py-pygeoip + SUBDIR += py-pynmsg SUBDIR += py-pynsq SUBDIR += py-pypcap SUBDIR += py-pysendfile Added: head/net/py-pynmsg/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pynmsg/Makefile Thu Apr 2 23:43:40 2015 (r383077) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= pynmsg +PORTVERSION= 0.3.1 +CATEGORIES= net python +MASTER_SITES= FARSIGHT LOCAL/truckman/farsight + +MAINTAINER= truckman@FreeBSD.org +COMMENT= Python wrapper for net/nmsg + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/COPYRIGHT + +LIB_DEPENDS= libnmsg.so:${PORTSDIR}/net/nmsg + +USE_PYTHON= distutils autoplist + +CPPFLAGS+= -I${LOCALBASE}/include + +USES= python + +post-install: + ${STRIP_CMD} ${STAGEDIR}/${PREFIX}/lib/python2.7/site-packages/_nmsg.so + +.include <bsd.port.mk> Added: head/net/py-pynmsg/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pynmsg/distinfo Thu Apr 2 23:43:40 2015 (r383077) @@ -0,0 +1,2 @@ +SHA256 (pynmsg-0.3.1.tar.gz) = ee913ff099ef43543a70103a0642c2aa9e298402d73fa74def9fce50fc95c14a +SIZE (pynmsg-0.3.1.tar.gz) = 103168 Added: head/net/py-pynmsg/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-pynmsg/pkg-descr Thu Apr 2 23:43:40 2015 (r383077) @@ -0,0 +1,5 @@ +This is pynmsg, a Python extension module implemented in Cython for +the nmsg C library. + + +WWW: https://github.com/farsightsec/pynmsg
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504022343.t32Nhff6068916>