From owner-svn-ports-all@freebsd.org Wed Jun 13 11:14:13 2018 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 63E6C10218FA; Wed, 13 Jun 2018 11:14:13 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 193B27BB6F; Wed, 13 Jun 2018 11:14:13 +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 D648D18A8F; Wed, 13 Jun 2018 11:14:12 +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 w5DBECof066638; Wed, 13 Jun 2018 11:14:12 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5DBECWR066635; Wed, 13 Jun 2018 11:14:12 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201806131114.w5DBECWR066635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 13 Jun 2018 11:14:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472302 - in head/security: . py-certstream X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/security: . py-certstream X-SVN-Commit-Revision: 472302 X-SVN-Commit-Repository: ports 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.26 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, 13 Jun 2018 11:14:13 -0000 Author: antoine Date: Wed Jun 13 11:14:11 2018 New Revision: 472302 URL: https://svnweb.freebsd.org/changeset/ports/472302 Log: New port: security/py-certstream Certstream-python is a library for interacting with the certstream network to monitor an aggregated feed from a collection of Certificate Transparency Lists. WWW: https://github.com/CaliDog/certstream-python Added: head/security/py-certstream/ head/security/py-certstream/Makefile (contents, props changed) head/security/py-certstream/distinfo (contents, props changed) head/security/py-certstream/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Jun 13 10:03:55 2018 (r472301) +++ head/security/Makefile Wed Jun 13 11:14:11 2018 (r472302) @@ -919,6 +919,7 @@ SUBDIR += py-certbot-dns-route53 SUBDIR += py-certbot-nginx SUBDIR += py-certifi + SUBDIR += py-certstream SUBDIR += py-cpe SUBDIR += py-cracklib SUBDIR += py-cryptkit Added: head/security/py-certstream/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-certstream/Makefile Wed Jun 13 11:14:11 2018 (r472302) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= certstream +PORTVERSION= 1.9 +CATEGORIES= security www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Library for receiving certificate transparency list updates + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}termcolor>=0:devel/py-termcolor@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}websocket-client>=0:www/py-websocket-client@${PY_FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}termcolor>=0:devel/py-termcolor@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}websocket-client>=0:www/py-websocket-client@${PY_FLAVOR} + +NO_ARCH= yes +USES= python +USE_PYTHON= distutils autoplist concurrent + +.include Added: head/security/py-certstream/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-certstream/distinfo Wed Jun 13 11:14:11 2018 (r472302) @@ -0,0 +1,3 @@ +TIMESTAMP = 1525354256 +SHA256 (certstream-1.9.tar.gz) = 9499be570ff1df4e3f6efa589ace7a6eb11d0820a3a9527a9f3162e3bb4f4c06 +SIZE (certstream-1.9.tar.gz) = 8824 Added: head/security/py-certstream/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-certstream/pkg-descr Wed Jun 13 11:14:11 2018 (r472302) @@ -0,0 +1,4 @@ +Certstream-python is a library for interacting with the certstream network to +monitor an aggregated feed from a collection of Certificate Transparency Lists. + +WWW: https://github.com/CaliDog/certstream-python