svn commit: r486592 - head/security/py-yubikey-manager

Vinícius Zavam egypcio at FreeBSD.org
Tue Dec 4 10:44:06 UTC 2018


Author: egypcio
Date: Tue Dec  4 10:44:05 2018
New Revision: 486592
URL: https://svnweb.freebsd.org/changeset/ports/486592

Log:
  security/py-yubikey-manager: add missing (required) dependencies
  
    - add missing depends to RUN_DEPENDS;
    - add concurrent to USE_PYTHON, remove flavors;
    - bump PORTREVISION.
  
  PR:		233709
  Submitted by:	Daniel Shafer <daniel % shafer.cc>
  Reviewed by:	koobs
  Approved by:	araujo (mentor)
  MFH:		2018Q4
  Differential Revision:	https://reviews.freebsd.org/D18419

Modified:
  head/security/py-yubikey-manager/Makefile

Modified: head/security/py-yubikey-manager/Makefile
==============================================================================
--- head/security/py-yubikey-manager/Makefile	Tue Dec  4 09:40:32 2018	(r486591)
+++ head/security/py-yubikey-manager/Makefile	Tue Dec  4 10:44:05 2018	(r486592)
@@ -2,6 +2,7 @@
 
 PORTNAME=	yubikey-manager
 PORTVERSION=	1.0.1
+PORTREVISION=	1
 CATEGORIES=	security python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,16 +13,18 @@ COMMENT=	Python library and command line tool for conf
 LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pyscard>0:security/py-pyscard@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}fido2>0:security/py-fido2@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pyscard>0:security/py-pyscard@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pycrypto>0:security/py-pycrypto@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}usb>0:devel/py-usb@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \
-		pcsc-spy:devel/pcsc-lite \
 		${LOCALBASE}/lib/pcsc/drivers/ifd-ccid.bundle/Contents/${OPSYS}/libccid.so:devel/libccid \
+		pcsc-spy:devel/pcsc-lite \
 		u2f-host:security/libu2f-host \
 		ykpers>0:security/ykpers
 
 USES=		python:3.4+
-USE_PYTHON=	autoplist distutils flavors
+USE_PYTHON=	autoplist concurrent distutils
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list