From owner-svn-ports-head@freebsd.org Mon Nov 7 13:02:20 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 0A118C350EA; Mon, 7 Nov 2016 13:02:20 +0000 (UTC) (envelope-from antoine@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 BC35F5FB; Mon, 7 Nov 2016 13:02:19 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA7D2IcJ039181; Mon, 7 Nov 2016 13:02:18 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA7D2IOU039177; Mon, 7 Nov 2016 13:02:18 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201611071302.uA7D2IOU039177@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 7 Nov 2016 13:02:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425619 - in head/security: . py-mixbox 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: Mon, 07 Nov 2016 13:02:20 -0000 Author: antoine Date: Mon Nov 7 13:02:18 2016 New Revision: 425619 URL: https://svnweb.freebsd.org/changeset/ports/425619 Log: New port: security/py-mixbox A library of common code leveraged by python-cybox, python-maec, and python-stix. WWW: https://github.com/CybOXProject/mixbox Added: head/security/py-mixbox/ head/security/py-mixbox/Makefile (contents, props changed) head/security/py-mixbox/distinfo (contents, props changed) head/security/py-mixbox/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Nov 7 12:51:29 2016 (r425618) +++ head/security/Makefile Mon Nov 7 13:02:18 2016 (r425619) @@ -870,6 +870,7 @@ SUBDIR += py-maec SUBDIR += py-mcrypt SUBDIR += py-mhash + SUBDIR += py-mixbox SUBDIR += py-oauth2client SUBDIR += py-oauthlib SUBDIR += py-openssl Added: head/security/py-mixbox/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-mixbox/Makefile Mon Nov 7 13:02:18 2016 (r425619) @@ -0,0 +1,29 @@ +# Created by: Antoine Brodin +# $FreeBSD$ + +PORTNAME= mixbox +PORTVERSION= 1.0.1 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Utility library for cybox, maec, and stix + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml \ + ${PYTHON_PKGNAMEPREFIX}ordered-set>=0:devel/py-ordered-set + +NO_ARCH= yes +USES= python +USE_PYTHON= distutils autoplist + +.include + +.if ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}weakrefmethod>=1.0.3:devel/py-weakrefmethod +.endif + +.include Added: head/security/py-mixbox/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-mixbox/distinfo Mon Nov 7 13:02:18 2016 (r425619) @@ -0,0 +1,3 @@ +TIMESTAMP = 1477212259 +SHA256 (mixbox-1.0.1.tar.gz) = 4256ba29f9e629a300b91530871e8dc6ed576d7648f757ce6a990c8cabc1a0be +SIZE (mixbox-1.0.1.tar.gz) = 39781 Added: head/security/py-mixbox/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-mixbox/pkg-descr Mon Nov 7 13:02:18 2016 (r425619) @@ -0,0 +1,4 @@ +A library of common code leveraged by python-cybox, python-maec, and +python-stix. + +WWW: https://github.com/CybOXProject/mixbox