git: 1e5b7707425a - main - devel/py-pylint-flask: Add py-pylint-flask 0.6
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 11 Sep 2023 03:13:46 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=1e5b7707425ae19b263accb90a9a4abf2189e7a7 commit 1e5b7707425ae19b263accb90a9a4abf2189e7a7 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2023-09-11 02:51:19 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-09-11 03:00:49 +0000 devel/py-pylint-flask: Add py-pylint-flask 0.6 pylint-flask is Pylint plugin for improving code analysis when editing code using Flask. It is inspired by pylint-django. --- devel/Makefile | 1 + devel/py-pylint-flask/Makefile | 23 +++++++++++++++++++++++ devel/py-pylint-flask/distinfo | 3 +++ devel/py-pylint-flask/pkg-descr | 2 ++ 4 files changed, 29 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index 608c6ed524a7..e32cb732e1c0 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5298,6 +5298,7 @@ SUBDIR += py-pylev SUBDIR += py-pylibsrtp SUBDIR += py-pylint-django + SUBDIR += py-pylint-flask SUBDIR += py-pylint-plugin-utils SUBDIR += py-pylint-venv SUBDIR += py-pylru diff --git a/devel/py-pylint-flask/Makefile b/devel/py-pylint-flask/Makefile new file mode 100644 index 000000000000..bf75f093ffb1 --- /dev/null +++ b/devel/py-pylint-flask/Makefile @@ -0,0 +1,23 @@ +PORTNAME= pylint-flask +PORTVERSION= 0.6 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Pylint plugin to analyze Flask applications +WWW= https://github.com/jschaf/pylint-flask + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astroid>=1.0:devel/py-astroid@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pylint-plugin-utils>=0.2.1:devel/py-pylint-plugin-utils@${PY_FLAVOR} \ + pylint${PYTHON_PKGNAMESUFFIX}>=2.8.3:devel/pylint + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-pylint-flask/distinfo b/devel/py-pylint-flask/distinfo new file mode 100644 index 000000000000..57e665dc67c9 --- /dev/null +++ b/devel/py-pylint-flask/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1694348228 +SHA256 (pylint-flask-0.6.tar.gz) = f4d97de2216bf7bfce07c9c08b166e978fe9f2725de2a50a9845a97de7e31517 +SIZE (pylint-flask-0.6.tar.gz) = 9964 diff --git a/devel/py-pylint-flask/pkg-descr b/devel/py-pylint-flask/pkg-descr new file mode 100644 index 000000000000..f1f8be551ecf --- /dev/null +++ b/devel/py-pylint-flask/pkg-descr @@ -0,0 +1,2 @@ +pylint-flask is Pylint plugin for improving code analysis when editing code +using Flask. It is inspired by pylint-django.