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: Sat Apr 27 09:35:29 UTC 2019
Modified Files:
pkgsrc/www/py-pylint-django: Makefile PLIST distinfo
Log Message:
py-pylint-django: updated to 2.0.9
Version 2.0.9:
- Fix UnboundLocalError: local variable 'key_cls' referenced before assignment
for cases when models is a python package, the to argument is a string
that is used in this pattern app.Model and also there is some other
bool const like null=True right after to.
- Don't crash if ForeignKey field doesn't have keyword arguments
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/www/py-pylint-django/Makefile
cvs rdiff -u -r1.10 -r1.11 pkgsrc/www/py-pylint-django/PLIST
cvs rdiff -u -r1.16 -r1.17 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.17 pkgsrc/www/py-pylint-django/Makefile:1.18
--- pkgsrc/www/py-pylint-django/Makefile:1.17 Thu Apr 25 05:14:13 2019
+++ pkgsrc/www/py-pylint-django/Makefile Sat Apr 27 09:35:29 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2019/04/25 05:14:13 adam Exp $
+# $NetBSD: Makefile,v 1.18 2019/04/27 09:35:29 adam Exp $
-DISTNAME= pylint-django-2.0.8
+DISTNAME= pylint-django-2.0.9
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= www devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pylint-django/}
Index: pkgsrc/www/py-pylint-django/PLIST
diff -u pkgsrc/www/py-pylint-django/PLIST:1.10 pkgsrc/www/py-pylint-django/PLIST:1.11
--- pkgsrc/www/py-pylint-django/PLIST:1.10 Tue Nov 27 16:22:41 2018
+++ pkgsrc/www/py-pylint-django/PLIST Sat Apr 27 09:35:29 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2018/11/27 16:22:41 adam Exp $
+@comment $NetBSD: PLIST,v 1.11 2019/04/27 09:35:29 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -94,6 +94,12 @@ ${PYSITELIB}/pylint_django/tests/input/f
${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_ids.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_ids.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_ids.pyo
+${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_key_cls_unbound.py
+${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_key_cls_unbound.pyc
+${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_key_cls_unbound.pyo
+${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_package.py
+${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_package.pyc
+${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_package.pyo
${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_sets.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_sets.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_foreign_key_sets.pyo
@@ -109,6 +115,9 @@ ${PYSITELIB}/pylint_django/tests/input/f
${PYSITELIB}/pylint_django/tests/input/func_noerror_formview_ancestors.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_formview_ancestors.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_formview_ancestors.pyo
+${PYSITELIB}/pylint_django/tests/input/func_noerror_generic_foreign_key.py
+${PYSITELIB}/pylint_django/tests/input/func_noerror_generic_foreign_key.pyc
+${PYSITELIB}/pylint_django/tests/input/func_noerror_generic_foreign_key.pyo
${PYSITELIB}/pylint_django/tests/input/func_noerror_ignore_meta_subclass.py
${PYSITELIB}/pylint_django/tests/input/func_noerror_ignore_meta_subclass.pyc
${PYSITELIB}/pylint_django/tests/input/func_noerror_ignore_meta_subclass.pyo
@@ -179,6 +188,12 @@ ${PYSITELIB}/pylint_django/tests/input/m
${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/input/models/__init__.py
+${PYSITELIB}/pylint_django/tests/input/models/__init__.pyc
+${PYSITELIB}/pylint_django/tests/input/models/__init__.pyo
+${PYSITELIB}/pylint_django/tests/input/models/author.py
+${PYSITELIB}/pylint_django/tests/input/models/author.pyc
+${PYSITELIB}/pylint_django/tests/input/models/author.pyo
${PYSITELIB}/pylint_django/tests/test_func.py
${PYSITELIB}/pylint_django/tests/test_func.pyc
${PYSITELIB}/pylint_django/tests/test_func.pyo
Index: pkgsrc/www/py-pylint-django/distinfo
diff -u pkgsrc/www/py-pylint-django/distinfo:1.16 pkgsrc/www/py-pylint-django/distinfo:1.17
--- pkgsrc/www/py-pylint-django/distinfo:1.16 Thu Apr 25 05:14:13 2019
+++ pkgsrc/www/py-pylint-django/distinfo Sat Apr 27 09:35:29 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.16 2019/04/25 05:14:13 adam Exp $
+$NetBSD: distinfo,v 1.17 2019/04/27 09:35:29 adam Exp $
-SHA1 (pylint-django-2.0.8.tar.gz) = b754b3b6ecdd2843179f1c130f9452d755ce77f2
-RMD160 (pylint-django-2.0.8.tar.gz) = ba03b0acdd95205c8ab288f2cdf212c09c40ed69
-SHA512 (pylint-django-2.0.8.tar.gz) = 7bcfb69551729e856f3b1abac5c911687e73499cdab8d786c40c2739950237df7439a8053a318acfa478fb47ca4db28fc6cf132cf90ccec85b72f02d7c71b408
-Size (pylint-django-2.0.8.tar.gz) = 46611 bytes
+SHA1 (pylint-django-2.0.9.tar.gz) = b1ac79cc69cf7b1fee6de956ee6f87e4cb0be033
+RMD160 (pylint-django-2.0.9.tar.gz) = df10d3e35490c5af8d959ae02eae12bed79cb391
+SHA512 (pylint-django-2.0.9.tar.gz) = 7be221f2c8887bd0074184fcd01536ddafa177226c5fdde104f45909a59686d85a0695859788a3e503ffd6d190619baa86e43112eb68371333a73a17adbb00ef
+Size (pylint-django-2.0.9.tar.gz) = 47769 bytes
Home |
Main Index |
Thread Index |
Old Index