From fe7a3312729eeed37fc9fc7b3957e77c70acd4fd Mon Sep 17 00:00:00 2001 From: Po-Chuan Hsieh Date: Wed, 6 Sep 2023 04:41:59 +0800 Subject: [PATCH] security/py-yubikey-manager: Fix BUILD_DEPENDS from pyproject.toml: [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" Approved by: portmgr (blanket) With hat: python Reference: https://github.com/Yubico/yubikey-manager/blob/5.2.0/pyproject.toml#L49-L51 --- security/py-yubikey-manager/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/py-yubikey-manager/Makefile b/security/py-yubikey-manager/Makefile index 627003afdccac..ac57cb359916c 100644 --- a/security/py-yubikey-manager/Makefile +++ b/security/py-yubikey-manager/Makefile @@ -13,7 +13,7 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${RUN_DEPENDS} \ - ${PYTHON_PKGNAMEPREFIX}poetry>=0:devel/py-poetry@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}poetry-core>=1.0.0:devel/py-poetry-core@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}fido2>0:security/py-fido2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}keyring>=0:security/py-keyring@${PY_FLAVOR} \