From owner-svn-ports-all@freebsd.org Fri Jun 15 12:21:33 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 7E0031020CD1; Fri, 15 Jun 2018 12:21:33 +0000 (UTC) (envelope-from wg@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 2CD2D6A5DE; Fri, 15 Jun 2018 12:21:33 +0000 (UTC) (envelope-from wg@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 E84521753F; Fri, 15 Jun 2018 12:21:32 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5FCLWTH082645; Fri, 15 Jun 2018 12:21:32 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5FCLWt0082641; Fri, 15 Jun 2018 12:21:32 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201806151221.w5FCLWt0082641@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Fri, 15 Jun 2018 12:21:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472441 - in head/security: . py-fido2 X-SVN-Group: ports-head X-SVN-Commit-Author: wg X-SVN-Commit-Paths: in head/security: . py-fido2 X-SVN-Commit-Revision: 472441 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: Fri, 15 Jun 2018 12:21:33 -0000 Author: wg Date: Fri Jun 15 12:21:31 2018 New Revision: 472441 URL: https://svnweb.freebsd.org/changeset/ports/472441 Log: security/py-fido2 Provides library functionality for communicating with a FIDO device over USB as well as verifying attestation and assertion signatures. WWW: https://github.com/Yubico/python-fido2 Added: head/security/py-fido2/ head/security/py-fido2/Makefile (contents, props changed) head/security/py-fido2/distinfo (contents, props changed) head/security/py-fido2/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri Jun 15 11:03:29 2018 (r472440) +++ head/security/Makefile Fri Jun 15 12:21:31 2018 (r472441) @@ -934,6 +934,7 @@ SUBDIR += py-ed25519ll SUBDIR += py-fail2ban SUBDIR += py-fchksum + SUBDIR += py-fido2 SUBDIR += py-first-server SUBDIR += py-flask-httpauth SUBDIR += py-flask-kerberos Added: head/security/py-fido2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-fido2/Makefile Fri Jun 15 12:21:31 2018 (r472441) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= fido2 +PORTVERSION= 0.3.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Provides library functionality for FIDO 2.0 + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/security/py-fido2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-fido2/distinfo Fri Jun 15 12:21:31 2018 (r472441) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529066291 +SHA256 (fido2-0.3.0.tar.gz) = 32c0db375458853d68cbbeb04861c412a05c22c873236a0c4f71296dc983ab35 +SIZE (fido2-0.3.0.tar.gz) = 125907 Added: head/security/py-fido2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-fido2/pkg-descr Fri Jun 15 12:21:31 2018 (r472441) @@ -0,0 +1,4 @@ +Provides library functionality for communicating with a FIDO device over USB +as well as verifying attestation and assertion signatures. + +WWW: https://github.com/Yubico/python-fido2