git: 3b6c12ace6ec - main - devel/py-b2: Unbreak build after py-rst2ansi update from 0.1.5 to 0.1.5_1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 08 Mar 2025 23:21:54 UTC
The branch main has been updated by leres: URL: https://cgit.FreeBSD.org/ports/commit/?id=3b6c12ace6ec4b090ce561c2c6770f0401c18bf9 commit 3b6c12ace6ec4b090ce561c2c6770f0401c18bf9 Author: Craig Leres <leres@FreeBSD.org> AuthorDate: 2025-03-08 23:21:20 +0000 Commit: Craig Leres <leres@FreeBSD.org> CommitDate: 2025-03-08 23:21:20 +0000 devel/py-b2: Unbreak build after py-rst2ansi update from 0.1.5 to 0.1.5_1 It's probably a mistake to ever use == with *_DEPENDS so change all of them to >=. --- devel/py-b2/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/devel/py-b2/Makefile b/devel/py-b2/Makefile index 1a8c93ad3474..b8f2ea035746 100644 --- a/devel/py-b2/Makefile +++ b/devel/py-b2/Makefile @@ -1,6 +1,7 @@ PORTNAME= b2 DISTVERSIONPREFIX= v DISTVERSION= 4.3.1 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +13,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pdm-backend>=0:devel/py-pdm-backend@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tabulate==0.9.0:devel/py-tabulate@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}tabulate>=0.9.0:devel/py-tabulate@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argcomplete>=3.5.2:devel/py-argcomplete@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}arrow>=1.0.2:devel/py-arrow@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}b2sdk>=2.7.0:devel/py-b2sdk@${PY_FLAVOR} \ @@ -21,8 +22,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argcomplete>=3.5.2:devel/py-argcomplete@${PY ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=3.3:devel/py-importlib-metadata@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}phx-class-registry>=4.0:devel/py-phx-class-registry@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}platformdirs>=3.11.0:devel/py-platformdirs@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}rst2ansi==0.1.5:textproc/py-rst2ansi@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tabulate==0.9.0:devel/py-tabulate@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}rst2ansi>=0.1.5:textproc/py-rst2ansi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tabulate>=0.9.0:devel/py-tabulate@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tqdm>=4.65.0:misc/py-tqdm@${PY_FLAVOR} USES= python