From owner-svn-ports-all@freebsd.org Wed Feb 20 12:22:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C5EB14F2A22; Wed, 20 Feb 2019 12:22:43 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4495B75931; Wed, 20 Feb 2019 12:22:43 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2CE855656; Wed, 20 Feb 2019 12:22:43 +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 x1KCMhiI084906; Wed, 20 Feb 2019 12:22:43 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1KCMgw7084903; Wed, 20 Feb 2019 12:22:42 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201902201222.x1KCMgw7084903@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 20 Feb 2019 12:22:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493421 - in head/security: . py-taxii2-client X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/security: . py-taxii2-client X-SVN-Commit-Revision: 493421 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4495B75931 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Wed, 20 Feb 2019 12:22:43 -0000 Author: antoine Date: Wed Feb 20 12:22:42 2019 New Revision: 493421 URL: https://svnweb.freebsd.org/changeset/ports/493421 Log: New port: security/py-taxii2-client This port provides a minimal client implementation for the TAXII 2.0 server. It supports the following TAXII 2.0 API services: - Server Discovery - Get API Root Information - Get Status - Get Collections - Get a Collection - Get Objects - Add Objects - Get an Object - Get Object Manifests WWW: https://github.com/oasis-open/cti-taxii-client Added: head/security/py-taxii2-client/ head/security/py-taxii2-client/Makefile (contents, props changed) head/security/py-taxii2-client/distinfo (contents, props changed) head/security/py-taxii2-client/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Feb 20 12:20:43 2019 (r493420) +++ head/security/Makefile Wed Feb 20 12:22:42 2019 (r493421) @@ -1045,6 +1045,7 @@ SUBDIR += py-stix SUBDIR += py-stix2 SUBDIR += py-stix2-patterns + SUBDIR += py-taxii2-client SUBDIR += py-tlslite SUBDIR += py-trezor SUBDIR += py-trustedpickle Added: head/security/py-taxii2-client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-taxii2-client/Makefile Wed Feb 20 12:22:42 2019 (r493421) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= taxii2-client +PORTVERSION= 0.5.0 +DISTVERSIONPREFIX= v +CATEGORIES= security python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Minimal client implementation for the TAXII 2.0 server + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=0:devel/py-pytz@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}responses>=0:devel/py-responses@${PY_FLAVOR} + +USE_GITHUB= yes +GH_ACCOUNT= oasis-open +GH_PROJECT= cti-taxii-client + +USES= python +USE_PYTHON= distutils autoplist + +DO_MAKE_TEST= ${SETENV} ${TEST_ENV} pytest-${PYTHON_VER} --cov=taxii2client taxii2client/test/ --cov-report term-missing +TEST_TARGET= # empty +NO_ARCH= yes + +.include Added: head/security/py-taxii2-client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-taxii2-client/distinfo Wed Feb 20 12:22:42 2019 (r493421) @@ -0,0 +1,3 @@ +TIMESTAMP = 1550499376 +SHA256 (oasis-open-cti-taxii-client-v0.5.0_GH0.tar.gz) = d34869b04ae6bec84e765dc583ff3f837be6818905721131112814e22d97d8e9 +SIZE (oasis-open-cti-taxii-client-v0.5.0_GH0.tar.gz) = 25244 Added: head/security/py-taxii2-client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-taxii2-client/pkg-descr Wed Feb 20 12:22:42 2019 (r493421) @@ -0,0 +1,13 @@ +This port provides a minimal client implementation for the TAXII 2.0 server. +It supports the following TAXII 2.0 API services: +- Server Discovery +- Get API Root Information +- Get Status +- Get Collections +- Get a Collection +- Get Objects +- Add Objects +- Get an Object +- Get Object Manifests + +WWW: https://github.com/oasis-open/cti-taxii-client