pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/py-pylint-django



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Apr 24 17:36:43 UTC 2022

Modified Files:
        pkgsrc/www/py-pylint-django: Makefile PLIST distinfo

Log Message:
py-pylint-django: updated to 2.5.3

Version 2.5.3 (25 Mar 2022)
---------------------------
Bugfixes
- Fixed compatibility issue between pylint `2.12` and `2.13` to construct `ScopeConsumer` tuples correctly depending on version

Other
- pylint version is now pinned to `<3` to give breathing space to update pylint-django before the major update lands

Version 2.5.2 (18 Feb 2022)

Bugfixes
- Fixed crash with assigning a class to a variable, and referencing the variable when subclassing

Other
- CI now tests against Django 4.0

Version 2.5.1 (16 Feb 2022)
---------------------------
Bugfixes
- Fixed pickling for `augment_visit`

Version 2.5.0 (02 Jan 2022)
---------------------------
Bugfixes
- Fixed compatibility with astroid 2.9.1

New
- Removed false positive error of missing member in TextChoices tuples
- Moved from Travis CI to GitHub Actions
- Added pre-commit configuration and began enforcing black/isort code formatting
- Multiple test fixes
- Bumped dependency for pylint-django-utils to get `multi-threaded pylint support <https://github.com/PyCQA/pylint-plugin-utils/pull/21>`_


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 pkgsrc/www/py-pylint-django/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/www/py-pylint-django/PLIST
cvs rdiff -u -r1.35 -r1.36 pkgsrc/www/py-pylint-django/distinfo

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

Modified files:

Index: pkgsrc/www/py-pylint-django/Makefile
diff -u pkgsrc/www/py-pylint-django/Makefile:1.33 pkgsrc/www/py-pylint-django/Makefile:1.34
--- pkgsrc/www/py-pylint-django/Makefile:1.33   Tue Jan  4 20:55:33 2022
+++ pkgsrc/www/py-pylint-django/Makefile        Sun Apr 24 17:36:43 2022
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.33 2022/01/04 20:55:33 wiz Exp $
+# $NetBSD: Makefile,v 1.34 2022/04/24 17:36:43 adam Exp $
 
-DISTNAME=      pylint-django-2.4.4
+DISTNAME=      pylint-django-2.5.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    www devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pylint-django/}
 
@@ -12,7 +11,7 @@ COMMENT=      Pylint plugin to aid Pylint in 
 LICENSE=       gnu-gpl-v2
 
 DEPENDS+=      ${PYPKGPREFIX}-pylint>=2.0.0:../../devel/py-pylint
-DEPENDS+=      ${PYPKGPREFIX}-pylint-plugin-utils>=0.5:../../devel/py-pylint-plugin-utils
+DEPENDS+=      ${PYPKGPREFIX}-pylint-plugin-utils>=0.7:../../devel/py-pylint-plugin-utils
 
 USE_LANGUAGES= # none
 

Index: pkgsrc/www/py-pylint-django/PLIST
diff -u pkgsrc/www/py-pylint-django/PLIST:1.17 pkgsrc/www/py-pylint-django/PLIST:1.18
--- pkgsrc/www/py-pylint-django/PLIST:1.17      Thu Jan  7 22:03:13 2021
+++ pkgsrc/www/py-pylint-django/PLIST   Sun Apr 24 17:36:43 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2021/01/07 22:03:13 adam Exp $
+@comment $NetBSD: PLIST,v 1.18 2022/04/24 17:36:43 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -69,6 +69,9 @@ ${PYSITELIB}/pylint_django/tests/input/e
 ${PYSITELIB}/pylint_django/tests/input/external_psycopg2_noerror_postgres_fields.pyc
 ${PYSITELIB}/pylint_django/tests/input/external_psycopg2_noerror_postgres_fields.pyo
 ${PYSITELIB}/pylint_django/tests/input/external_psycopg2_noerror_postgres_fields.rc
+${PYSITELIB}/pylint_django/tests/input/external_tastypie_noerror_foreign_key.py
+${PYSITELIB}/pylint_django/tests/input/external_tastypie_noerror_foreign_key.pyc
+${PYSITELIB}/pylint_django/tests/input/external_tastypie_noerror_foreign_key.pyo
 ${PYSITELIB}/pylint_django/tests/input/func_hard_coded_auth_user.py
 ${PYSITELIB}/pylint_django/tests/input/func_hard_coded_auth_user.pyc
 ${PYSITELIB}/pylint_django/tests/input/func_hard_coded_auth_user.pyo
@@ -236,9 +239,11 @@ ${PYSITELIB}/pylint_django/tests/input/t
 ${PYSITELIB}/pylint_django/tests/settings.py
 ${PYSITELIB}/pylint_django/tests/settings.pyc
 ${PYSITELIB}/pylint_django/tests/settings.pyo
+${PYSITELIB}/pylint_django/tests/test_django_not_installed.sh
 ${PYSITELIB}/pylint_django/tests/test_func.py
 ${PYSITELIB}/pylint_django/tests/test_func.pyc
 ${PYSITELIB}/pylint_django/tests/test_func.pyo
+${PYSITELIB}/pylint_django/tests/testing_pylint.rc
 ${PYSITELIB}/pylint_django/transforms/__init__.py
 ${PYSITELIB}/pylint_django/transforms/__init__.pyc
 ${PYSITELIB}/pylint_django/transforms/__init__.pyo

Index: pkgsrc/www/py-pylint-django/distinfo
diff -u pkgsrc/www/py-pylint-django/distinfo:1.35 pkgsrc/www/py-pylint-django/distinfo:1.36
--- pkgsrc/www/py-pylint-django/distinfo:1.35   Fri Jan 14 11:49:44 2022
+++ pkgsrc/www/py-pylint-django/distinfo        Sun Apr 24 17:36:43 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.35 2022/01/14 11:49:44 wiz Exp $
+$NetBSD: distinfo,v 1.36 2022/04/24 17:36:43 adam Exp $
 
-BLAKE2s (pylint-django-2.4.4.tar.gz) = be22e2cfc1915b2ab36b50caafa47be21b2daacf22e8ef95f0191c8943f6bf21
-SHA512 (pylint-django-2.4.4.tar.gz) = 08f5953def4b94f8a1c022543b145abb85a83f3fa37ddd2a772883e0a6a8779fd02c3163400f558b6d4e7d07404b1be9a9422a8d24260262bf11d09793f0c80f
-Size (pylint-django-2.4.4.tar.gz) = 67479 bytes
+BLAKE2s (pylint-django-2.5.3.tar.gz) = c033de9368f710e012adf9783e5f3b129789cc9d7ae3ac8650262bea889ffc8e
+SHA512 (pylint-django-2.5.3.tar.gz) = 1bb70859339596b0b3f2808de0ebb3bc8bfbaba9d2bfb028014fec108c48f69f6abcb92e39693e0364ac08372f2c238f7df64048faf8e3483ed41f6a161a00a9
+Size (pylint-django-2.5.3.tar.gz) = 68112 bytes



Home | Main Index | Thread Index | Old Index