From owner-svn-ports-all@freebsd.org Tue Mar 13 13:13:28 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 BF78BF4CD69; Tue, 13 Mar 2018 13:13:28 +0000 (UTC) (envelope-from bapt@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 71F217C63B; Tue, 13 Mar 2018 13:13:28 +0000 (UTC) (envelope-from bapt@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 532811A546; Tue, 13 Mar 2018 13:13:28 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2DDDS2Y008986; Tue, 13 Mar 2018 13:13:28 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2DDDRwg008981; Tue, 13 Mar 2018 13:13:27 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201803131313.w2DDDRwg008981@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 13 Mar 2018 13:13:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464369 - in head/security: . py-yubikey-manager X-SVN-Group: ports-head X-SVN-Commit-Author: bapt X-SVN-Commit-Paths: in head/security: . py-yubikey-manager X-SVN-Commit-Revision: 464369 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.25 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: Tue, 13 Mar 2018 13:13:29 -0000 Author: bapt Date: Tue Mar 13 13:13:27 2018 New Revision: 464369 URL: https://svnweb.freebsd.org/changeset/ports/464369 Log: Python library and command line tool for configuring any YubiKey over all USB transports. WWW: https://developers.yubico.com/yubikey-manager/ Added: head/security/py-yubikey-manager/ head/security/py-yubikey-manager/Makefile (contents, props changed) head/security/py-yubikey-manager/distinfo (contents, props changed) head/security/py-yubikey-manager/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Mar 13 12:40:13 2018 (r464368) +++ head/security/Makefile Tue Mar 13 13:13:27 2018 (r464369) @@ -1011,6 +1011,7 @@ SUBDIR += py-vulndb SUBDIR += py-yara SUBDIR += py-yubioath-desktop + SUBDIR += py-yubikey-manager SUBDIR += py-zope.app.authentication SUBDIR += py-zope.app.localpermission SUBDIR += py-zope.app.principalannotation Added: head/security/py-yubikey-manager/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-yubikey-manager/Makefile Tue Mar 13 13:13:27 2018 (r464369) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= yubikey-manager +PORTVERSION= 0.6.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Python library and command line tool for configuring a YubiKey + +LICENSE= GPLv3 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyscard>0:security/py-pyscard@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pycrypto>0:security/py-pycrypto@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}usb>0:devel/py-usb@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${FLAVOR} \ + pcsc-spy:devel/pcsc-lite \ + ${LOCALBASE}/lib/pcsc/drivers/ifd-ccid.bundle/Contents/${OPSYS}/libccid.so:devel/libccid \ + u2f-host:security/libu2f-host \ + ykpers>0:security/ykpers + +USES= python:3.6 +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-yubikey-manager/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-yubikey-manager/distinfo Tue Mar 13 13:13:27 2018 (r464369) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520944897 +SHA256 (yubikey-manager-0.6.0.tar.gz) = ab04a20832eed4312873fb25abaed7fe3040484e33a6a97ec33053ba37d1942c +SIZE (yubikey-manager-0.6.0.tar.gz) = 77823 Added: head/security/py-yubikey-manager/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-yubikey-manager/pkg-descr Tue Mar 13 13:13:27 2018 (r464369) @@ -0,0 +1,4 @@ +Python library and command line tool for configuring any YubiKey over all USB +transports. + +WWW: https://developers.yubico.com/yubikey-manager/