Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Sep 2023 20:47:08 GMT
From:      Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: b8001d808552 - main - devel/py-archspec: Fix BUILD_DEPENDS
Message-ID:  <202309052047.385Kl8vN008824@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet:

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

commit b8001d808552361cb4700fbf1e198f5b531eafa6
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-09-05 20:41:49 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-09-05 20:46:32 +0000

    devel/py-archspec: 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/archspec/archspec/blob/v0.2.1/pyproject.toml#L42-L44
---
 devel/py-archspec/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devel/py-archspec/Makefile b/devel/py-archspec/Makefile
index 8e0b6dacae6f..744318b9dc1e 100644
--- a/devel/py-archspec/Makefile
+++ b/devel/py-archspec/Makefile
@@ -13,7 +13,7 @@ LICENSE_COMB=	dual
 LICENSE_FILE_APACHE20=	${WRKSRC}/LICENSE-APACHE
 LICENSE_FILE_MIT=	${WRKSRC}/LICENSE-MIT
 
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}poetry>0:devel/py-poetry@${PY_FLAVOR}
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}poetry-core>=1.0.0:devel/py-poetry-core@${PY_FLAVOR}
 
 USES=		python
 USE_PYTHON=	pep517 autoplist pytest



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202309052047.385Kl8vN008824>