pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-pylint



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Jun  8 16:09:50 UTC 2020

Modified Files:
        pkgsrc/devel/py-pylint: Makefile distinfo

Log Message:
py-pylint: updated to 2.5.3

What's New in Pylint 2.5.3?
* Fix a regression where disable comments that have checker names with numbers in them are not parsed correctly
* `property-with-parameters` properly handles abstract properties
* `continue-in-finally` no longer emitted on Python 3.8 where it's now valid
* Fix a regression where messages with dash are not fully parsed
* Fix a regression where the score was not reported with multiple jobs
* In a TOML configuration file, it's now possible to use rich (non-string) types, such as list, integer or boolean instead of strings. For example, one can now define a *list* of message identifiers 
to enable like this::

    enable = [
        "use-symbolic-message-instead",
        "useless-suppression",
    ]
* Protect against `AttributeError` when checking `cell-var-from-loop`


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 pkgsrc/devel/py-pylint/Makefile
cvs rdiff -u -r1.30 -r1.31 pkgsrc/devel/py-pylint/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-pylint/Makefile
diff -u pkgsrc/devel/py-pylint/Makefile:1.41 pkgsrc/devel/py-pylint/Makefile:1.42
--- pkgsrc/devel/py-pylint/Makefile:1.41        Mon May 18 13:14:17 2020
+++ pkgsrc/devel/py-pylint/Makefile     Mon Jun  8 16:09:49 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.41 2020/05/18 13:14:17 wiz Exp $
+# $NetBSD: Makefile,v 1.42 2020/06/08 16:09:49 adam Exp $
 
-DISTNAME=      pylint-2.5.2
+DISTNAME=      pylint-2.5.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pylint/}
@@ -13,6 +13,7 @@ LICENSE=      gnu-gpl-v2
 DEPENDS+=      ${PYPKGPREFIX}-astroid>=2.2.0:../../devel/py-astroid
 DEPENDS+=      ${PYPKGPREFIX}-isort>=4.2.5:../../devel/py-isort
 DEPENDS+=      ${PYPKGPREFIX}-mccabe>=0.6:../../devel/py-mccabe
+DEPENDS+=      ${PYPKGPREFIX}-toml>=0.7.1:../../textproc/py-toml
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 
@@ -31,7 +32,7 @@ post-install:
 .endfor
 
 do-test:
-       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} PYTHONPATH=. py.test-${PYVERSSUFFIX}
+       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} PYTHONPATH=. pytest-${PYVERSSUFFIX}
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-pylint/distinfo
diff -u pkgsrc/devel/py-pylint/distinfo:1.30 pkgsrc/devel/py-pylint/distinfo:1.31
--- pkgsrc/devel/py-pylint/distinfo:1.30        Sat May 16 02:11:40 2020
+++ pkgsrc/devel/py-pylint/distinfo     Mon Jun  8 16:09:49 2020
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.30 2020/05/16 02:11:40 joerg Exp $
+$NetBSD: distinfo,v 1.31 2020/06/08 16:09:49 adam Exp $
 
-SHA1 (pylint-2.5.2.tar.gz) = c79bd688a881e42ed68cfa19915b900439258fdc
-RMD160 (pylint-2.5.2.tar.gz) = 1c6af3008c48acd7a9617d2170cc0e3ba68cfda3
-SHA512 (pylint-2.5.2.tar.gz) = 94debcf0a26ac61ce2e161180f300677279b7e251894c4b368ffe7e70e480f53e59475e1d84df7daf7d1bff5256f75d363fe415960986dee99e634fe95e6bd3c
-Size (pylint-2.5.2.tar.gz) = 683111 bytes
+SHA1 (pylint-2.5.3.tar.gz) = d41abb6f430568d0b01985ce1cf184172a358493
+RMD160 (pylint-2.5.3.tar.gz) = c23fb00d6e402f98a7d669f1923052d7b2c72a47
+SHA512 (pylint-2.5.3.tar.gz) = 03fcd893d361b66794f17433e90df108099fee2eccb35507c7f61befb8db846f0242e5ce2b4ee63727c9cc780a376c3b93d5af3186f884a4fdaad68b224ed7d2
+Size (pylint-2.5.3.tar.gz) = 684449 bytes
 SHA1 (patch-setup.py) = 56a63cfe22fc22563b7e39b0567bd36437096d01



Home | Main Index | Thread Index | Old Index