From owner-svn-ports-all@FreeBSD.ORG Fri Apr 10 22:25:09 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16D82BB6; Fri, 10 Apr 2015 22:25:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 ED02EFB2; Fri, 10 Apr 2015 22:25:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3AMP8VO080738; Fri, 10 Apr 2015 22:25:08 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3AMP7Wn080729; Fri, 10 Apr 2015 22:25:07 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201504102225.t3AMP7Wn080729@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Apr 2015 22:25:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383767 - in head/security: . py-stix X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 22:25:09 -0000 Author: antoine Date: Fri Apr 10 22:25:06 2015 New Revision: 383767 URL: https://svnweb.freebsd.org/changeset/ports/383767 Log: New port: security/py-stix A Python library for parsing, manipulating, and generating STIX content WWW: https://github.com/STIXProject/python-stix Added: head/security/py-stix/ head/security/py-stix/Makefile (contents, props changed) head/security/py-stix/distinfo (contents, props changed) head/security/py-stix/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri Apr 10 21:14:40 2015 (r383766) +++ head/security/Makefile Fri Apr 10 22:25:06 2015 (r383767) @@ -834,6 +834,7 @@ SUBDIR += py-ssh SUBDIR += py-sslstrip SUBDIR += py-stem + SUBDIR += py-stix SUBDIR += py-tlslite SUBDIR += py-trustedpickle SUBDIR += py-twistedConch Added: head/security/py-stix/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-stix/Makefile Fri Apr 10 22:25:06 2015 (r383767) @@ -0,0 +1,34 @@ +# Created by: Antoine Brodin +# $FreeBSD$ + +PORTNAME= stix +PORTVERSION= 1.1.1.4 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Python library for parsing, manipulating, and generating STIX content + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=0:${PORTSDIR}/devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}lxml>=3.1:${PORTSDIR}/devel/py-lxml \ + ${PYTHON_PKGNAMEPREFIX}cybox>=2.1.0.9:${PORTSDIR}/security/py-cybox + +USES= python:2 +USE_PYTHON= distutils autoplist + +PORTDOCS= README.rst +PORTEXAMPLES= * + +OPTIONS_DEFINE= DOCS EXAMPLES + +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/security/py-stix/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-stix/distinfo Fri Apr 10 22:25:06 2015 (r383767) @@ -0,0 +1,2 @@ +SHA256 (stix-1.1.1.4.tar.gz) = 62d95748a752db0febcc9f3c39e867d1fb3a9ca1ad93a6ebab4e31f0cde18ae4 +SIZE (stix-1.1.1.4.tar.gz) = 228202 Added: head/security/py-stix/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-stix/pkg-descr Fri Apr 10 22:25:06 2015 (r383767) @@ -0,0 +1,3 @@ +A Python library for parsing, manipulating, and generating STIX content + +WWW: https://github.com/STIXProject/python-stix