svn commit: r464369 - in head/security: . py-yubikey-manager

Baptiste Daroussin bapt at FreeBSD.org
Tue Mar 13 13:13:29 UTC 2018


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 at 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 <bsd.port.mk>

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/


More information about the svn-ports-all mailing list