Skip to content

Commit

Permalink
devel/py-pylint-plugin-utils: Add py-pylint-plugin-utils 0.6
Browse files Browse the repository at this point in the history
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
  • Loading branch information
sunpoet committed Apr 29, 2021
1 parent f7b63ce commit dc661eb
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 0 deletions.
1 change: 1 addition & 0 deletions devel/Makefile
Expand Up @@ -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
Expand Down
32 changes: 32 additions & 0 deletions 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@landscape.io',
description=_short_description,
version=_version,
install_requires=['pylint>=1.7'],
packages=_packages,
license='GPLv2',
classifiers=_classifiers,
keywords='pylint plugin helpers'
)
22 changes: 22 additions & 0 deletions devel/py-pylint-plugin-utils/Makefile
@@ -0,0 +1,22 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>

PORTNAME= pylint-plugin-utils
PORTVERSION= 0.6
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

MAINTAINER= sunpoet@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>
1 change: 1 addition & 0 deletions devel/py-pylint-plugin-utils/a
@@ -0,0 +1 @@
devel/pylint,1.7
3 changes: 3 additions & 0 deletions 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
5 changes: 5 additions & 0 deletions 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

0 comments on commit dc661eb

Please sign in to comment.