git: dc661ebb920b - main - devel/py-pylint-plugin-utils: Add py-pylint-plugin-utils 0.6

Po-Chuan Hsieh sunpoet at FreeBSD.org
Thu Apr 29 14:35:35 UTC 2021


The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=dc661ebb920ba2d1100aedde5c11bd40c259f360

commit dc661ebb920ba2d1100aedde5c11bd40c259f360
Author:     Po-Chuan Hsieh <sunpoet at FreeBSD.org>
AuthorDate: 2021-04-29 14:10:19 +0000
Commit:     Po-Chuan Hsieh <sunpoet at FreeBSD.org>
CommitDate: 2021-04-29 14:23:33 +0000

    devel/py-pylint-plugin-utils: Add py-pylint-plugin-utils 0.6
    
    Utilities and helpers for writing Pylint plugins. This is not a direct Pylint
    plugin, but rather a set of tools and functions used by other plugins such as
    pylint-django and pylint-celery.
    
    WWW: https://github.com/PyCQA/pylint-plugin-utils
---
 devel/Makefile                         |  1 +
 devel/py-pylint-plugin-utils/1s        | 32 ++++++++++++++++++++++++++++++++
 devel/py-pylint-plugin-utils/Makefile  | 22 ++++++++++++++++++++++
 devel/py-pylint-plugin-utils/a         |  1 +
 devel/py-pylint-plugin-utils/distinfo  |  3 +++
 devel/py-pylint-plugin-utils/pkg-descr |  5 +++++
 6 files changed, 64 insertions(+)

diff --git a/devel/Makefile b/devel/Makefile
index 8bf84d4c75ad..1649a0e4c750 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4925,6 +4925,7 @@
     SUBDIR += py-pylev
     SUBDIR += py-pylibsrtp
     SUBDIR += py-pylint-django
+    SUBDIR += py-pylint-plugin-utils
     SUBDIR += py-pylru
     SUBDIR += py-pylru-cache
     SUBDIR += py-pyls-black
diff --git a/devel/py-pylint-plugin-utils/1s b/devel/py-pylint-plugin-utils/1s
new file mode 100644
index 000000000000..c6d4fe368824
--- /dev/null
+++ b/devel/py-pylint-plugin-utils/1s
@@ -0,0 +1,32 @@
+# -*- coding: UTF-8 -*-
+from setuptools import find_packages, setup
+
+_version = "0.6"
+_packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
+
+_short_description = "Utilities and helpers for writing Pylint plugins"
+
+_classifiers = [
+    'Development Status :: 5 - Production/Stable',
+    'Environment :: Console',
+    'Intended Audience :: Developers',
+    'Operating System :: Unix',
+    'Topic :: Software Development :: Quality Assurance',
+    'Programming Language :: Python :: 3.5',
+    'Programming Language :: Python :: 3.6',
+    'Programming Language :: Python :: 3.7',
+]
+
+setup(
+    name='pylint-plugin-utils',
+    url='https://github.com/landscapeio/pylint-plugin-utils',
+    author='landscape.io',
+    author_email='code at landscape.io',
+    description=_short_description,
+    version=_version,
+    install_requires=['pylint>=1.7'],
+    packages=_packages,
+    license='GPLv2',
+    classifiers=_classifiers,
+    keywords='pylint plugin helpers'
+)
diff --git a/devel/py-pylint-plugin-utils/Makefile b/devel/py-pylint-plugin-utils/Makefile
new file mode 100644
index 000000000000..a715e66327ad
--- /dev/null
+++ b/devel/py-pylint-plugin-utils/Makefile
@@ -0,0 +1,22 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+
+PORTNAME=	pylint-plugin-utils
+PORTVERSION=	0.6
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Utilities and helpers for writing Pylint plugins
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	pylint${PYTHON_PKGNAMESUFFIX}>=1.7:devel/pylint@${PY_FLAVOR}
+
+USES=		python:3.6+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-pylint-plugin-utils/a b/devel/py-pylint-plugin-utils/a
new file mode 100644
index 000000000000..6b2e9e3f1122
--- /dev/null
+++ b/devel/py-pylint-plugin-utils/a
@@ -0,0 +1 @@
+devel/pylint,1.7
diff --git a/devel/py-pylint-plugin-utils/distinfo b/devel/py-pylint-plugin-utils/distinfo
new file mode 100644
index 000000000000..aa5d320aba2d
--- /dev/null
+++ b/devel/py-pylint-plugin-utils/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1619569407
+SHA256 (pylint-plugin-utils-0.6.tar.gz) = 57625dcca20140f43731311cd8fd879318bf45a8b0fd17020717a8781714a25a
+SIZE (pylint-plugin-utils-0.6.tar.gz) = 10203
diff --git a/devel/py-pylint-plugin-utils/pkg-descr b/devel/py-pylint-plugin-utils/pkg-descr
new file mode 100644
index 000000000000..2b6a6e1cd259
--- /dev/null
+++ b/devel/py-pylint-plugin-utils/pkg-descr
@@ -0,0 +1,5 @@
+Utilities and helpers for writing Pylint plugins. This is not a direct Pylint
+plugin, but rather a set of tools and functions used by other plugins such as
+pylint-django and pylint-celery.
+
+WWW: https://github.com/PyCQA/pylint-plugin-utils


More information about the dev-commits-ports-all mailing list