git: f027ed9d3e8e - main - devel/py-python-semantic-release: Fix build after 70caef5fbe472515c6fd5da072b43c8bf6c959c3
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 09 Apr 2025 15:00:27 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=f027ed9d3e8eded9948b8d1dd2a035bc18a6c226 commit f027ed9d3e8eded9948b8d1dd2a035bc18a6c226 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2025-04-09 14:53:11 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2025-04-09 14:53:11 +0000 devel/py-python-semantic-release: Fix build after 70caef5fbe472515c6fd5da072b43c8bf6c959c3 - Bump PORTREVISION for package change Reference: https://pkg-status.freebsd.org/beefy22/data/142amd64-default/4ff0a7ba4d1f/logs/py311-python-semantic-release-9.21.0.log https://pkg-status.freebsd.org/beefy21/data/142i386-default/4ff0a7ba4d1f/logs/py311-python-semantic-release-9.21.0.log https://github.com/python-semantic-release/python-semantic-release/pull/1224 --- devel/py-python-semantic-release/Makefile | 3 ++- devel/py-python-semantic-release/files/patch-pyproject.toml | 10 ++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/devel/py-python-semantic-release/Makefile b/devel/py-python-semantic-release/Makefile index 1f0e93123358..bafa8581b984 100644 --- a/devel/py-python-semantic-release/Makefile +++ b/devel/py-python-semantic-release/Makefile @@ -1,5 +1,6 @@ PORTNAME= python-semantic-release PORTVERSION= 9.21.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI \ https://github.com/python-semantic-release/python-semantic-release/releases/download/v${PORTVERSION}/ @@ -26,7 +27,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=8.0<9:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pydantic2>=2.0<3:devel/py-pydantic2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-gitlab>=4.0:devel/py-python-gitlab@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.25<3:www/py-requests@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}rich>=13.0<14:textproc/py-rich@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}rich>=14.0<15:textproc/py-rich@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}shellingham>=1.5<2:devel/py-shellingham@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tomlkit>=0.11<1:textproc/py-tomlkit@${PY_FLAVOR} diff --git a/devel/py-python-semantic-release/files/patch-pyproject.toml b/devel/py-python-semantic-release/files/patch-pyproject.toml index dd6e46d126cd..1746df708159 100644 --- a/devel/py-python-semantic-release/files/patch-pyproject.toml +++ b/devel/py-python-semantic-release/files/patch-pyproject.toml @@ -1,4 +1,4 @@ ---- pyproject.toml.orig 2024-12-03 07:47:20 UTC +--- pyproject.toml.orig 2025-02-23 20:38:39 UTC +++ pyproject.toml @@ -1,7 +1,7 @@ # Ref: https://packaging.python.org/en/latest/specifications/declaring-project-metadata/ @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] -@@ -28,7 +28,7 @@ dependencies = [ +@@ -28,12 +28,12 @@ dependencies = [ "gitpython ~= 3.0", "requests ~= 2.25", "jinja2 ~= 3.1", @@ -18,3 +18,9 @@ "tomlkit ~= 0.11", "dotty-dict ~= 1.3", "importlib-resources ~= 6.0", + "pydantic ~= 2.0", +- "rich ~= 13.0", ++ "rich ~= 14.0", + "shellingham ~= 1.5", + "Deprecated ~= 1.2", # Backport of deprecated decorator for python 3.8 + ]