git: d848e9e23f3e - main - security/py-fido2: unbreak build after py-cryptography revert (+)
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 14 Oct 2022 20:54:23 UTC
The branch main has been updated by fluffy: URL: https://cgit.FreeBSD.org/ports/commit/?id=d848e9e23f3efd285111f9b0d013e07c2a356267 commit d848e9e23f3efd285111f9b0d013e07c2a356267 Author: Dima Panov <fluffy@FreeBSD.org> AuthorDate: 2022-10-14 20:53:56 +0000 Commit: Dima Panov <fluffy@FreeBSD.org> CommitDate: 2022-10-14 20:54:15 +0000 security/py-fido2: unbreak build after py-cryptography revert (+) securuty/py-cryptography got a PORTEPOCH bump after revert. Adjust dependency package version check boundaries to meet new reality. Approved by: portmgr blanket --- security/py-fido2/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/security/py-fido2/Makefile b/security/py-fido2/Makefile index a4debf5f2712..c25e96c981b2 100644 --- a/security/py-fido2/Makefile +++ b/security/py-fido2/Makefile @@ -1,5 +1,6 @@ PORTNAME= fido2 PORTVERSION= 1.0.0 +PORTREVISION= 1 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +12,7 @@ WWW= https://github.com/Yubico/python-fido2 LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=2.6<40:security/py-cryptography@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=2.6<40,1:security/py-cryptography@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR}