0.18.0 Added support for creating missing folders when using --pylint-output-file Now when pylint's ignore_patterns is blank, we don't ignore all files Added cache invalidation when your pylintrc changes Verified support for latest pytest and Python 3.9 Corrected badly named nodes (duplicated path) thanks to yanqd0 Added tests to source distribution thanks to sbraz
27 lines
805 B
Makefile
27 lines
805 B
Makefile
# $NetBSD: Makefile,v 1.4 2020/11/19 10:26:21 adam Exp $
|
|
|
|
DISTNAME= pytest-pylint-0.18.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"
|