Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Sep 2023 20:47:11 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: 11f878d06fdf - main - devel/py-pyquil: Fix BUILD_DEPENDS
Message-ID:  <202309052047.385KlBYS008938@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=11f878d06fdf54a82c90c0bb83512fa5d5e72c29

commit 11f878d06fdf54a82c90c0bb83512fa5d5e72c29
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-09-05 20:41:51 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-09-05 20:46:33 +0000

    devel/py-pyquil: 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/rigetti/pyquil/blob/v3.5.4/pyproject.toml#L87-L89
---
 devel/py-pyquil/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devel/py-pyquil/Makefile b/devel/py-pyquil/Makefile
index 1fc0ae5035f3..8575ad089c3e 100644
--- a/devel/py-pyquil/Makefile
+++ b/devel/py-pyquil/Makefile
@@ -11,7 +11,7 @@ WWW=		https://github.com/rigetti/pyquil
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-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}
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}lark>=0.11.1:devel/py-lark@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}networkx>=2.5:math/py-networkx@${PY_FLAVOR} \
 		${PYNUMPY} \



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