git: bf835f906e48 - main - devel/py-click-aliases: Fix BUILD_DEPENDS

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Fri, 15 Nov 2024 10:18:28 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=bf835f906e480fedf246d6303fb872f4acf40c23

commit bf835f906e480fedf246d6303fb872f4acf40c23
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2024-11-15 10:10:06 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2024-11-15 10:17:17 +0000

    devel/py-click-aliases: Fix BUILD_DEPENDS
    
    from pyproject.toml:
    [build-system]
    requires = ["poetry-core"]
    build-backend = "poetry.core.masonry.api"
    
    Approved by:    portmgr (blanket)
    With hat:       python
    Reference:      https://github.com/click-contrib/click-aliases/blob/v1.0.4/pyproject.toml#L24-L26
---
 devel/py-click-aliases/Makefile | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/devel/py-click-aliases/Makefile b/devel/py-click-aliases/Makefile
index 2df79d48c3f9..b0f50cb2ff46 100644
--- a/devel/py-click-aliases/Makefile
+++ b/devel/py-click-aliases/Makefile
@@ -10,10 +10,7 @@ WWW=		https://github.com/click-contrib/click-aliases
 
 LICENSE=	MIT
 
-BUILD_DEPENDS=	${PY_SETUPTOOLS} \
-		${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}poetry>0:devel/py-poetry@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR}
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}poetry-core>=0:devel/py-poetry-core@${PY_FLAVOR}
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR}
 
 USES=		python