pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
pkgsrc: py-pylint-django: updated to 0.10.1
details: https://anonhg.NetBSD.org/pkgsrc/rev/a58d7063f9ae
branches: trunk
changeset: 306210:a58d7063f9ae
user: adam <adam%pkgsrc.org@localhost>
date: Fri Apr 13 07:33:53 2018 +0000
description:
py-pylint-django: updated to 0.10.1
0.10.1:
CHANGELOG formatting issue
0.10.0:
Remove the compatibility layer for older astroid versions
Make flake8 happy.
Fix: compatibility with Python < 3.6 caused by ModuleNotFoundError not available on older versions of Python
Show README and CHANGELOG on PyPI.
Fix explicit unicode check with python_2_unicode_compatible base models
Suppress not-an-iterable message for 'objects'.
Teach pylint_django that objects.all() is subscriptable.
Suppress invalid-name for wsgi.application.
Add test for WSGIRequest.context.
Register transforms for FileField.
New checker pylint_django.checkers.db_performance. Enables checking of migrations and reports when there's an AddField operation with a default value which may slow down applying migrations on large
tables. This may also lead to production tables being locked while migrations are being applied.
Suppress no-member for factory.SubFactory objects. Useful when model factories use factory.SubFactory() for foreign key relations.
diffstat:
www/py-pylint-django/Makefile | 4 ++--
www/py-pylint-django/PLIST | 39 +++++++++++++++++++++++++++++++++++----
www/py-pylint-django/distinfo | 10 +++++-----
3 files changed, 42 insertions(+), 11 deletions(-)
diffs (121 lines):
diff -r 3502fa175ce0 -r a58d7063f9ae www/py-pylint-django/Makefile
--- a/www/py-pylint-django/Makefile Fri Apr 13 07:29:36 2018 +0000
+++ b/www/py-pylint-django/Makefile Fri Apr 13 07:33:53 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2018/03/13 10:53:13 adam Exp $
+# $NetBSD: Makefile,v 1.7 2018/04/13 07:33:53 adam Exp $
-DISTNAME= pylint-django-0.9.4
+DISTNAME= pylint-django-0.10.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= www devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pylint-django/}
diff -r 3502fa175ce0 -r a58d7063f9ae www/py-pylint-django/PLIST
--- a/www/py-pylint-django/PLIST Fri Apr 13 07:29:36 2018 +0000
+++ b/www/py-pylint-django/PLIST Fri Apr 13 07:33:53 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2018/03/08 08:23:49 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2018/04/13 07:33:53 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -17,15 +17,15 @@
${PYSITELIB}/pylint_django/checkers/__init__.py
${PYSITELIB}/pylint_django/checkers/__init__.pyc
${PYSITELIB}/pylint_django/checkers/__init__.pyo
+${PYSITELIB}/pylint_django/checkers/db_performance.py
+${PYSITELIB}/pylint_django/checkers/db_performance.pyc
+${PYSITELIB}/pylint_django/checkers/db_performance.pyo
${PYSITELIB}/pylint_django/checkers/django_installed.py
${PYSITELIB}/pylint_django/checkers/django_installed.pyc
${PYSITELIB}/pylint_django/checkers/django_installed.pyo
${PYSITELIB}/pylint_django/checkers/models.py
${PYSITELIB}/pylint_django/checkers/models.pyc
${PYSITELIB}/pylint_django/checkers/models.pyo
-${PYSITELIB}/pylint_django/compat.py
-${PYSITELIB}/pylint_django/compat.pyc
-${PYSITELIB}/pylint_django/compat.pyo
${PYSITELIB}/pylint_django/plugin.py
${PYSITELIB}/pylint_django/plugin.pyc
${PYSITELIB}/pylint_django/plugin.pyo
@@ -42,6 +42,14 @@
${PYSITELIB}/pylint_django/tests/input/external_drf_noerror_serializer.pyc
${PYSITELIB}/pylint_django/tests/input/external_drf_noerror_serializer.pyo
${PYSITELIB}/pylint_django/tests/input/external_drf_noerror_serializer.rc
+${PYSITELIB}/pylint_django/tests/input/external_factory_boy_noerror.py
+${PYSITELIB}/pylint_django/tests/input/external_factory_boy_noerror.pyc
+${PYSITELIB}/pylint_django/tests/input/external_factory_boy_noerror.pyo
+${PYSITELIB}/pylint_django/tests/input/external_factory_boy_noerror.rc
+${PYSITELIB}/pylint_django/tests/input/external_model_utils_noerror_override_manager.py
+${PYSITELIB}/pylint_django/tests/input/external_model_utils_noerror_override_manager.pyc
+${PYSITELIB}/pylint_django/tests/input/external_model_utils_noerror_override_manager.pyo
+${PYSITELIB}/pylint_django/tests/input/external_model_utils_noerror_override_manager.rc
${PYSITELIB}/pylint_django/tests/input/external_psycopg2_noerror_postgres_fields.py
${PYSITELIB}/pylint_django/tests/input/external_psycopg2_noerror_postgres_fields.pyc
${PYSITELIB}/pylint_django/tests/input/external_psycopg2_noerror_postgres_fields.pyo
@@ -50,6 +58,10 @@
${PYSITELIB}/pylint_django/tests/input/func_model_does_not_use_unicode_py33.pyc
${PYSITELIB}/pylint_django/tests/input/func_model_does_not_use_unicode_py33.pyo
${PYSITELIB}/pylint_django/tests/input/func_model_does_not_use_unicode_py33.txt
+${PYSITELIB}/pylint_django/tests/input/func_model_no_explicit_unicode_str_compat.py
+${PYSITELIB}/pylint_django/tests/input/func_model_no_explicit_unicode_str_compat.pyc
+${PYSITELIB}/pylint_django/tests/input/func_model_no_explicit_unicode_str_compat.pyo
+${PYSITELIB}/pylint_django/tests/input/func_model_no_explicit_unicode_str_compat.txt
${PYSITELIB}/pylint_django/tests/input/func_noerror_classviews.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_classviews.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_classviews.pyo
@@ -95,6 +107,9 @@
${PYSITELIB}/pylint_django/tests/input/func_noerror_model_methods.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_model_methods.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_model_methods.pyo
+${PYSITELIB}/pylint_django/tests/input/func_noerror_model_objects.py
+${PYSITELIB}/pylint_django/tests/input/func_noerror_model_objects.pyc
+${PYSITELIB}/pylint_django/tests/input/func_noerror_model_objects.pyo
${PYSITELIB}/pylint_django/tests/input/func_noerror_model_unicode_callable.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_model_unicode_callable.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_model_unicode_callable.pyo
@@ -107,6 +122,9 @@
${PYSITELIB}/pylint_django/tests/input/func_noerror_protected_meta_access.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_protected_meta_access.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_protected_meta_access.pyo
+${PYSITELIB}/pylint_django/tests/input/func_noerror_test_wsgi_request.py
+${PYSITELIB}/pylint_django/tests/input/func_noerror_test_wsgi_request.pyc
+${PYSITELIB}/pylint_django/tests/input/func_noerror_test_wsgi_request.pyo
${PYSITELIB}/pylint_django/tests/input/func_noerror_ugettext_lazy_format.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_ugettext_lazy_format.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_ugettext_lazy_format.pyo
@@ -119,6 +137,19 @@
${PYSITELIB}/pylint_django/tests/input/func_noerror_uuid_field.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_uuid_field.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_uuid_field.pyo
+${PYSITELIB}/pylint_django/tests/input/func_noerror_wsgi.py
+${PYSITELIB}/pylint_django/tests/input/func_noerror_wsgi.pyc
+${PYSITELIB}/pylint_django/tests/input/func_noerror_wsgi.pyo
+${PYSITELIB}/pylint_django/tests/input/migrations/0001_noerror_initial.py
+${PYSITELIB}/pylint_django/tests/input/migrations/0001_noerror_initial.pyc
+${PYSITELIB}/pylint_django/tests/input/migrations/0001_noerror_initial.pyo
+${PYSITELIB}/pylint_django/tests/input/migrations/0002_new_column.py
+${PYSITELIB}/pylint_django/tests/input/migrations/0002_new_column.pyc
+${PYSITELIB}/pylint_django/tests/input/migrations/0002_new_column.pyo
+${PYSITELIB}/pylint_django/tests/input/migrations/0002_new_column.txt
+${PYSITELIB}/pylint_django/tests/input/migrations/__init__.py
+${PYSITELIB}/pylint_django/tests/input/migrations/__init__.pyc
+${PYSITELIB}/pylint_django/tests/input/migrations/__init__.pyo
${PYSITELIB}/pylint_django/tests/test_func.py
${PYSITELIB}/pylint_django/tests/test_func.pyc
${PYSITELIB}/pylint_django/tests/test_func.pyo
diff -r 3502fa175ce0 -r a58d7063f9ae www/py-pylint-django/distinfo
--- a/www/py-pylint-django/distinfo Fri Apr 13 07:29:36 2018 +0000
+++ b/www/py-pylint-django/distinfo Fri Apr 13 07:33:53 2018 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.6 2018/03/13 10:53:13 adam Exp $
+$NetBSD: distinfo,v 1.7 2018/04/13 07:33:53 adam Exp $
-SHA1 (pylint-django-0.9.4.tar.gz) = 06690dd56a98fb1b68e791ba15ebc55529175f17
-RMD160 (pylint-django-0.9.4.tar.gz) = e26759189ac3774dacb2cf7b3b38618f10b79b4a
-SHA512 (pylint-django-0.9.4.tar.gz) = 243990e251a4095206a1f5887fc2573d85bb0a0e6105d48667d12690b248691f347be9b29b4b4d1b276b5aad0cd4ca391a9f56cff355e70d5b4e3b044a990674
-Size (pylint-django-0.9.4.tar.gz) = 30870 bytes
+SHA1 (pylint-django-0.10.1.tar.gz) = c9790c6b11ed926bbb5978b566d64c5b544c6088
+RMD160 (pylint-django-0.10.1.tar.gz) = ea84c5ea18846618bd8bfb2020188f3b7770fbbe
+SHA512 (pylint-django-0.10.1.tar.gz) = 39ce5ea0d9c3e31678cf38518903eb587f1ff65ce7464a41fb1d26c15b5c54c600fc6b759fb5f57dc01af5b058d5b55908f23b8f2a376488bd7ca90990d10ca1
+Size (pylint-django-0.10.1.tar.gz) = 42153 bytes
Home |
Main Index |
Thread Index |
Old Index