pkgsrc/devel/py-test-pylint/Makefile
adam f3fe3068a1 py-test-pylint: updated to 0.17.0
0.17.0
Added support for latest pylint API >=2.5.1

0.16.1
Corrected documentation and correctly pinned dependencies properly

0.16.0
Switched to new from_parent API and added development documentation dineshtrivedi
Added support for toml based configuration of pylint thanks to michael-k

0.15.1
Made --no-pylint functional again

0.15.0
Added support for Python 3.8 thanks to michael-k
Implemented option to output Pylint results to a reports file thanks to jose-lpa
Refactored into simpler plugin structure
2020-06-12 06:31:08 +00:00

27 lines
805 B
Makefile

# $NetBSD: Makefile,v 1.3 2020/06/12 06:31:08 adam Exp $
DISTNAME= pytest-pylint-0.17.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-pylint/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/carsongee/pytest-pylint
COMMENT= Pytest plugin to check source code with Pylint
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-pylint>=2.3.0:../../devel/py-pylint
DEPENDS+= ${PYPKGPREFIX}-test>=5.4:../../devel/py-test
DEPENDS+= ${PYPKGPREFIX}-toml>=0.7.1:../../textproc/py-toml
BUILD_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
USE_LANGUAGES= # none
PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-pylint
# test are not included
do-test:
${DO_NADA}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"