svn commit: r486597 - branches/2018Q4/security/py-yubikey-manager

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


Author: egypcio
Date: Tue Dec  4 13:32:08 2018
New Revision: 486597
URL: https://svnweb.freebsd.org/changeset/ports/486597

Log:
  MFH: r486592
  
  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), miwi (ports-secteam)
  Differential Revision:	https://reviews.freebsd.org/D18419
  
  Approved by:	ports-secteam

Modified:
  branches/2018Q4/security/py-yubikey-manager/Makefile
Directory Properties:
  branches/2018Q4/   (props changed)

Modified: branches/2018Q4/security/py-yubikey-manager/Makefile
==============================================================================
--- branches/2018Q4/security/py-yubikey-manager/Makefile	Tue Dec  4 12:45:18 2018	(r486596)
+++ branches/2018Q4/security/py-yubikey-manager/Makefile	Tue Dec  4 13:32:08 2018	(r486597)
@@ -1,26 +1,30 @@
 # $FreeBSD$
 
 PORTNAME=	yubikey-manager
-PORTVERSION=	0.7.1
+PORTVERSION=	1.0.1
+PORTREVISION=	1
 CATEGORIES=	security python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
-MAINTAINER=	ports at FreeBSD.org
+MAINTAINER=	egypcio at googlemail.com
 COMMENT=	Python library and command line tool for configuring a YubiKey
 
-LICENSE=	GPLv3
+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
+USE_PYTHON=	autoplist concurrent distutils
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list