From owner-svn-ports-head@freebsd.org Sun Nov 13 01:39:04 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D4D1C3ECFC; Sun, 13 Nov 2016 01:39:04 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1083410B2; Sun, 13 Nov 2016 01:39:03 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAD1d3x5027476; Sun, 13 Nov 2016 01:39:03 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAD1d2n7027472; Sun, 13 Nov 2016 01:39:02 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201611130139.uAD1d2n7027472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 13 Nov 2016 01:39:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426003 - in head/devel: . py-pycapsicum 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.23 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: Sun, 13 Nov 2016 01:39:04 -0000 Author: feld Date: Sun Nov 13 01:39:02 2016 New Revision: 426003 URL: https://svnweb.freebsd.org/changeset/ports/426003 Log: Pycapsicum is a python interface to Capsicum (sandboxing for FreeBSD). WWW: https://github.com/stillson/pycapsicum2 Added: head/devel/py-pycapsicum/ head/devel/py-pycapsicum/Makefile (contents, props changed) head/devel/py-pycapsicum/distinfo (contents, props changed) head/devel/py-pycapsicum/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Nov 12 23:58:27 2016 (r426002) +++ head/devel/Makefile Sun Nov 13 01:39:02 2016 (r426003) @@ -4393,6 +4393,7 @@ SUBDIR += py-pycadf SUBDIR += py-pycalendar SUBDIR += py-pycallgraph + SUBDIR += py-pycapsicum SUBDIR += py-pycerberus SUBDIR += py-pycmd SUBDIR += py-pycparser Added: head/devel/py-pycapsicum/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pycapsicum/Makefile Sun Nov 13 01:39:02 2016 (r426003) @@ -0,0 +1,24 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= pycapsicum +PORTVERSION= 1.0 +CATEGORIES= devel security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= stillson@gmail.com +COMMENT= Python interface to capsicum security + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= autoplist distutils + +.include + +.if ${OSVERSION} < 1000000 +IGNORE= requires FreeBSD 10.0 or newer +.endif + +.include Added: head/devel/py-pycapsicum/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pycapsicum/distinfo Sun Nov 13 01:39:02 2016 (r426003) @@ -0,0 +1,3 @@ +TIMESTAMP = 1479000975 +SHA256 (pycapsicum-1.0.tar.gz) = 413054a2e58a86c6959ddb9e23e99332c240638a552218de0ff8161099d45908 +SIZE (pycapsicum-1.0.tar.gz) = 8177 Added: head/devel/py-pycapsicum/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pycapsicum/pkg-descr Sun Nov 13 01:39:02 2016 (r426003) @@ -0,0 +1,3 @@ +Pycapsicum is a python interface to Capsicum (sandboxing for FreeBSD). + +WWW: https://github.com/stillson/pycapsicum2