git: 72debfa0a4ae - main - devel/py-pylint-django: Allow build with pylint 4.0.0+
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 29 Nov 2025 23:55:43 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=72debfa0a4ae684b5bc72026d256ffd9e07dcb62
commit 72debfa0a4ae684b5bc72026d256ffd9e07dcb62
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2025-11-29 23:25:09 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2025-11-29 23:25:09 +0000
devel/py-pylint-django: Allow build with pylint 4.0.0+
- Bump PORTREVISION for package change
---
devel/py-pylint-django/Makefile | 3 ++-
devel/py-pylint-django/files/patch-pyproject.toml | 11 +++++++++++
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/devel/py-pylint-django/Makefile b/devel/py-pylint-django/Makefile
index 291826d09dd2..bc24671c585e 100644
--- a/devel/py-pylint-django/Makefile
+++ b/devel/py-pylint-django/Makefile
@@ -1,5 +1,6 @@
PORTNAME= pylint-django
PORTVERSION= 2.6.1
+PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -12,7 +13,7 @@ LICENSE= GPLv2
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>=1:devel/py-poetry-core@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pylint-plugin-utils>=0.8:devel/py-pylint-plugin-utils@${PY_FLAVOR} \
- pylint${PYTHON_PKGNAMESUFFIX}>=3.0<4:devel/pylint@${PY_FLAVOR}
+ pylint${PYTHON_PKGNAMESUFFIX}>=3.0<5:devel/pylint@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent pep517
diff --git a/devel/py-pylint-django/files/patch-pyproject.toml b/devel/py-pylint-django/files/patch-pyproject.toml
new file mode 100644
index 000000000000..0837d56627a0
--- /dev/null
+++ b/devel/py-pylint-django/files/patch-pyproject.toml
@@ -0,0 +1,11 @@
+--- pyproject.toml.orig 2024-10-10 14:46:12 UTC
++++ pyproject.toml
+@@ -44,7 +44,7 @@ pylint-plugin-utils = ">=0.8"
+ [tool.poetry.dependencies]
+ python = ">=3.9,<4.0"
+ pylint-plugin-utils = ">=0.8"
+-pylint = ">=3.0,<4"
++pylint = ">=3.0,<5"
+ Django = { version = ">=2.2", optional = true }
+
+ [tool.poetry.group.dev.dependencies]