From owner-svn-ports-head@freebsd.org Thu Jan 31 10:35:06 2019 Return-Path: Delivered-To: svn-ports-head@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 1B10613557D9; Thu, 31 Jan 2019 10:35:06 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B2A1D85642; Thu, 31 Jan 2019 10:35:05 +0000 (UTC) (envelope-from egypcio@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 A4ED86280; Thu, 31 Jan 2019 10:35:05 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0VAZ5a7000404; Thu, 31 Jan 2019 10:35:05 GMT (envelope-from egypcio@FreeBSD.org) Received: (from egypcio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0VAZ5r7000403; Thu, 31 Jan 2019 10:35:05 GMT (envelope-from egypcio@FreeBSD.org) Message-Id: <201901311035.x0VAZ5r7000403@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: egypcio set sender to egypcio@FreeBSD.org using -f From: =?UTF-8?Q?Vin=c3=adcius_Zavam?= Date: Thu, 31 Jan 2019 10:35:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491700 - head/security/py-yubikey-manager X-SVN-Group: ports-head X-SVN-Commit-Author: egypcio X-SVN-Commit-Paths: head/security/py-yubikey-manager X-SVN-Commit-Revision: 491700 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B2A1D85642 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Jan 2019 10:35:06 -0000 Author: egypcio Date: Thu Jan 31 10:35:05 2019 New Revision: 491700 URL: https://svnweb.freebsd.org/changeset/ports/491700 Log: security/py-yubikey-manager: update 1.0.1_1 to 2.0.0 - add support to build against both Python flavors; yubikey-manager-qt OK (depends on security/py-yubikey-manager); tested both versions with real hardware. - use RSA_SecurID_getpasswd:devel/libccid as RUN_DEPENDS instead of lib/pcsc/drivers/ifd-ccid.bundle/Contents/${OPSYS}/libccid.so - use ykpersonalize:security/ykpers instead of: ykpers>=0:security/ykpers https://raw.githubusercontent.com/Yubico/yubikey-manager/master/NEWS Approved by: rene (mentor) Sponsored by: cleverbridge AG Differential Revision: https://reviews.freebsd.org/D18855 Modified: head/security/py-yubikey-manager/Makefile head/security/py-yubikey-manager/distinfo Modified: head/security/py-yubikey-manager/Makefile ============================================================================== --- head/security/py-yubikey-manager/Makefile Thu Jan 31 09:51:27 2019 (r491699) +++ head/security/py-yubikey-manager/Makefile Thu Jan 31 10:35:05 2019 (r491700) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= yubikey-manager -PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTVERSION= 2.0.0 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,18 +12,20 @@ COMMENT= Python library and command line tool for conf LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \ +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= ${PY_ENUM34} \ + ${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} \ - ${LOCALBASE}/lib/pcsc/drivers/ifd-ccid.bundle/Contents/${OPSYS}/libccid.so:devel/libccid \ + RSA_SecurID_getpasswd:devel/libccid \ pcsc-spy:devel/pcsc-lite \ u2f-host:security/libu2f-host \ - ykpers>0:security/ykpers + ykpersonalize:security/ykpers -USES= python:3.4+ +USES= python USE_PYTHON= autoplist concurrent distutils .include Modified: head/security/py-yubikey-manager/distinfo ============================================================================== --- head/security/py-yubikey-manager/distinfo Thu Jan 31 09:51:27 2019 (r491699) +++ head/security/py-yubikey-manager/distinfo Thu Jan 31 10:35:05 2019 (r491700) @@ -1,3 +1,3 @@ -TIMESTAMP = 1541607882 -SHA256 (yubikey-manager-1.0.1.tar.gz) = 1f915d8899dbcf85b6b9879f5664953ce1edcd5a503a00d03b9c6298900bfc44 -SIZE (yubikey-manager-1.0.1.tar.gz) = 73411 +TIMESTAMP = 1547631549 +SHA256 (yubikey-manager-2.0.0.tar.gz) = e95b4c4e956e105780e59ca2e4f159b4e974da38cdc810d4157e8d979ebf66f4 +SIZE (yubikey-manager-2.0.0.tar.gz) = 97689