[Python-modules-commits] [pylint-django] branch master updated (39cb9c0 -> a24d848)

Daniel Stender stender at moszumanska.debian.org
Fri Jun 24 19:20:19 UTC 2016


This is an automated email from the git hooks/post-receive script.

stender pushed a change to branch master
in repository pylint-django.

      from  39cb9c0   Fixed VCS URL (https)
       new  adcb426   Import pylint-django_0.7.2.orig.tar.gz
       new  6a4329a   record new upstream branch created by importing pylint-django_0.7.2.orig.tar.gz and merge it
       new  925b05a   new upstream release
       new  3508a92   deb/rules: enabled tests, updated info
       new  ed20602   deb/control: bumped standards to 3.9.8
       new  7a16b3c   deb/copyright: expanded copyright span, corrected
       new  a24d848   deb/changelog: upload to unstable

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .coveragerc                                        |   3 -
 .gitignore                                         |  35 ---
 .landscape.yaml                                    |   8 -
 .travis.yml                                        |  20 --
 CHANGELOG.md                                       |  80 -----
 CONTRIBUTORS.md                                    |   8 -
 LICENSE                                            | 339 ---------------------
 PKG-INFO                                           |  20 ++
 README.md                                          |  41 ---
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  15 +-
 debian/control                                     |   2 +-
 debian/copyright                                   |   4 +-
 debian/rules                                       |   4 +-
 pylint_django.egg-info/PKG-INFO                    |  20 ++
 pylint_django.egg-info/SOURCES.txt                 |  30 ++
 pylint_django.egg-info/dependency_links.txt        |   1 +
 pylint_django.egg-info/not-zip-safe                |   1 +
 pylint_django.egg-info/requires.txt                |   2 +
 pylint_django.egg-info/top_level.txt               |   1 +
 pylint_django/augmentations/__init__.py            |  20 +-
 pylint_django/compat.py                            |   8 +
 pylint_django/transforms/__init__.py               |   7 +-
 .../transforms/django_views_generic_base.py        |   4 +-
 pylint_django/transforms/transforms/mongoengine.py |  14 +
 scripts/test.sh                                    |   2 -
 scripts/travis-build.sh                            |   9 -
 scripts/travis-install.sh                          |  12 -
 scripts/travis_skip.py                             |   8 -
 setup.cfg                                          |   5 +
 setup.py                                           |   6 +-
 test/external_drf/func_noerror_serializer.py       |  11 -
 test/input/__init__.py                             |   0
 test/input/func_model_does_not_use_unicode_py33.py |  19 --
 test/input/func_model_requires_unicode_py_28.py    |  22 --
 test/input/func_model_unicode_parent_py_28.py      |  15 -
 test/input/func_noerror_classviews.py              |  17 --
 test/input/func_noerror_foreign_key_attributes.py  |  21 --
 test/input/func_noerror_foreign_key_ids.py         |  17 --
 test/input/func_noerror_foreign_key_sets.py        |  28 --
 test/input/func_noerror_foreignkeys.py             |  49 ---
 test/input/func_noerror_form_fields.py             |  66 ----
 test/input/func_noerror_forms_py33.py              |  33 --
 test/input/func_noerror_forms_py_28.py             |  33 --
 test/input/func_noerror_formview_ancestors.py      |  10 -
 test/input/func_noerror_ignore_meta_subclass.py    |  12 -
 test/input/func_noerror_issue_46.py                |  11 -
 test/input/func_noerror_manytomanyfield.py         |  25 --
 test/input/func_noerror_model_fields.py            |  81 -----
 test/input/func_noerror_model_unicode_callable.py  |  15 -
 test/input/func_noerror_model_unicode_lambda.py    |  11 -
 test/input/func_noerror_models_py33.py             |  31 --
 test/input/func_noerror_models_py_28.py            |  34 ---
 test/input/func_noerror_unicode_py2_compatible.py  |  17 --
 test/input/func_noerror_urls.py                    |  22 --
 .../func_model_does_not_use_unicode_py33.txt       |   1 -
 .../messages/func_model_requires_unicode_py_28.txt |   1 -
 test/messages/func_model_unicode_parent_py_28.txt  |   1 -
 test/test_func.py                                  |  30 +-
 tox.ini                                            |   7 -
 60 files changed, 183 insertions(+), 1200 deletions(-)
 delete mode 100644 .coveragerc
 delete mode 100644 .gitignore
 delete mode 100644 .landscape.yaml
 delete mode 100644 .travis.yml
 delete mode 100644 CHANGELOG.md
 delete mode 100644 CONTRIBUTORS.md
 delete mode 100644 LICENSE
 create mode 100644 PKG-INFO
 delete mode 100644 README.md
 create mode 100644 pylint_django.egg-info/PKG-INFO
 create mode 100644 pylint_django.egg-info/SOURCES.txt
 create mode 100644 pylint_django.egg-info/dependency_links.txt
 create mode 100644 pylint_django.egg-info/not-zip-safe
 create mode 100644 pylint_django.egg-info/requires.txt
 create mode 100644 pylint_django.egg-info/top_level.txt
 create mode 100644 pylint_django/transforms/transforms/mongoengine.py
 delete mode 100755 scripts/test.sh
 delete mode 100755 scripts/travis-build.sh
 delete mode 100755 scripts/travis-install.sh
 delete mode 100755 scripts/travis_skip.py
 create mode 100644 setup.cfg
 delete mode 100644 test/external_drf/func_noerror_serializer.py
 delete mode 100644 test/input/__init__.py
 delete mode 100644 test/input/func_model_does_not_use_unicode_py33.py
 delete mode 100644 test/input/func_model_requires_unicode_py_28.py
 delete mode 100644 test/input/func_model_unicode_parent_py_28.py
 delete mode 100644 test/input/func_noerror_classviews.py
 delete mode 100644 test/input/func_noerror_foreign_key_attributes.py
 delete mode 100644 test/input/func_noerror_foreign_key_ids.py
 delete mode 100644 test/input/func_noerror_foreign_key_sets.py
 delete mode 100644 test/input/func_noerror_foreignkeys.py
 delete mode 100644 test/input/func_noerror_form_fields.py
 delete mode 100644 test/input/func_noerror_forms_py33.py
 delete mode 100644 test/input/func_noerror_forms_py_28.py
 delete mode 100644 test/input/func_noerror_formview_ancestors.py
 delete mode 100644 test/input/func_noerror_ignore_meta_subclass.py
 delete mode 100644 test/input/func_noerror_issue_46.py
 delete mode 100644 test/input/func_noerror_manytomanyfield.py
 delete mode 100644 test/input/func_noerror_model_fields.py
 delete mode 100644 test/input/func_noerror_model_unicode_callable.py
 delete mode 100644 test/input/func_noerror_model_unicode_lambda.py
 delete mode 100644 test/input/func_noerror_models_py33.py
 delete mode 100644 test/input/func_noerror_models_py_28.py
 delete mode 100644 test/input/func_noerror_unicode_py2_compatible.py
 delete mode 100644 test/input/func_noerror_urls.py
 delete mode 100644 test/messages/func_model_does_not_use_unicode_py33.txt
 delete mode 100644 test/messages/func_model_requires_unicode_py_28.txt
 delete mode 100644 test/messages/func_model_unicode_parent_py_28.txt
 delete mode 100644 tox.ini

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pylint-django.git



More information about the Python-modules-commits mailing list