git: 2c4ad99256da - main - devel/py-git-up: Fix build after d07cdab9108a8cf6ab66aa1ff834339f8695f457
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 09 Apr 2025 17:49:42 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=2c4ad99256da7c3b475d7a9c16086e2390a0519e commit 2c4ad99256da7c3b475d7a9c16086e2390a0519e Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2025-04-09 17:44:17 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2025-04-09 17:44:17 +0000 devel/py-git-up: Fix build after d07cdab9108a8cf6ab66aa1ff834339f8695f457 - Bump PORTREVISION for package change Reference: https://pkg-status.freebsd.org/beefy22/data/142amd64-default/8fcb80b6544f/logs/py311-git-up-2.3.0.log https://pkg-status.freebsd.org/beefy21/data/142i386-default/8fcb80b6544f/logs/py311-git-up-2.3.0.log --- devel/py-git-up/Makefile | 3 ++- devel/py-git-up/files/patch-pyproject.toml | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/devel/py-git-up/Makefile b/devel/py-git-up/Makefile index c634d2ba7d14..edaff60e6428 100644 --- a/devel/py-git-up/Makefile +++ b/devel/py-git-up/Makefile @@ -1,5 +1,6 @@ PORTNAME= git-up PORTVERSION= 2.3.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +15,7 @@ LICENSE= MIT BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>=1.0:devel/py-poetry-core@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>=0.4.0<0.5:devel/py-colorama@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}gitpython>=3.0.0<4:devel/py-gitpython@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}termcolor>=2.0.0<3:devel/py-termcolor@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}termcolor>=2.0.0:devel/py-termcolor@${PY_FLAVOR} USES= dos2unix python USE_PYTHON= autoplist concurrent pep517 diff --git a/devel/py-git-up/files/patch-pyproject.toml b/devel/py-git-up/files/patch-pyproject.toml new file mode 100644 index 000000000000..18a61610932a --- /dev/null +++ b/devel/py-git-up/files/patch-pyproject.toml @@ -0,0 +1,11 @@ +--- pyproject.toml.orig 2024-10-05 20:00:15 UTC ++++ pyproject.toml +@@ -31,7 +31,7 @@ colorama = "^0.4.0" + python = "^3.8" + GitPython = "^3.0.0" + colorama = "^0.4.0" +-termcolor = "^2.0.0" ++termcolor = ">=2.0.0" + + [tool.poetry.dev-dependencies] + coveralls = "^3.0.0"