[Python-modules-commits] [python-django] branch debian/master updated (9e15da5 -> 40c02f8)

Luke Faraone lfaraone at moszumanska.debian.org
Wed Nov 25 05:34:21 UTC 2015


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

lfaraone pushed a change to branch debian/master
in repository python-django.

      from  9e15da5   New upstream bugfix release.
       new  66056b1   record new upstream branch created by importing python-django_1.8.7.orig.tar.gz
       new  8dd68eb   Import python-django_1.8.7.orig.tar.gz
       new  2e5f051   Disable creation of _sources directory by Sphinx
       new  3b2c1c4   Use Debian GeoIP database path as default
       new  99e3202   merge debian/patched-master into debian/master
       new  40c02f8   releasing package python-django version 1.8.7-1

The 6 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:
 AUTHORS                                            |   1 +
 Django.egg-info/PKG-INFO                           |   2 +-
 Django.egg-info/SOURCES.txt                        |   3 +
 PKG-INFO                                           |   2 +-
 debian/.git-dpm                                    |  14 ++--
 debian/changelog                                   |   9 +++
 .../patches/02_disable-sources-in-sphinxdoc.diff   |   4 +-
 .../06_use_debian_geoip_database_as_default.diff   |   2 +-
 django/__init__.py                                 |   2 +-
 django/contrib/postgres/fields/array.py            |  22 ++++--
 django/contrib/postgres/fields/ranges.py           |  24 ++++--
 django/contrib/postgres/fields/utils.py            |   3 +
 django/db/backends/mysql/operations.py             |   4 +-
 django/db/migrations/loader.py                     |   5 +-
 django/db/models/base.py                           |   8 +-
 django/db/models/deletion.py                       |   4 +-
 django/db/models/fields/related.py                 |  13 ++++
 django/db/models/query.py                          |  16 +++-
 django/db/utils.py                                 |  35 +++++----
 django/forms/models.py                             |  10 ++-
 django/template/engine.py                          |   8 +-
 django/utils/dateformat.py                         |  34 ++++++--
 django/utils/formats.py                            |  20 +++++
 django/utils/six.py                                |  74 ++++++++++++------
 django/utils/translation/trans_real.py             |   1 +
 docs/_ext/djangodocs.py                            |  30 ++++---
 .../djangodocs/static/docicons-behindscenes.png    | Bin 2269 -> 1065 bytes
 docs/_theme/djangodocs/static/docicons-note.png    | Bin 1013 -> 559 bytes
 .../djangodocs/static/docicons-philosophy.png      | Bin 1523 -> 791 bytes
 docs/conf.py                                       |   8 +-
 docs/howto/custom-management-commands.txt          |  15 ++++
 docs/howto/deployment/wsgi/modwsgi.txt             |  35 ++++-----
 docs/howto/deployment/wsgi/uwsgi.txt               |  11 +++
 docs/index.txt                                     |   2 +-
 docs/ref/contrib/admin/admindocs.txt               |   1 +
 docs/ref/contrib/admin/index.txt                   |  83 ++++++++++++++++++++
 docs/ref/contrib/gis/db-api.txt                    |   8 +-
 docs/ref/contrib/gis/geos.txt                      |  24 ++++--
 docs/ref/databases.txt                             |   7 +-
 docs/ref/django-admin.txt                          |  13 ++--
 docs/ref/forms/fields.txt                          |   3 +
 docs/ref/migration-operations.txt                  |   4 +-
 docs/ref/models/fields.txt                         |  10 ++-
 docs/ref/models/querysets.txt                      |   2 +-
 docs/ref/settings.txt                              |   9 ++-
 docs/ref/templates/api.txt                         |   2 +
 docs/ref/templates/builtins.txt                    |   4 +-
 docs/ref/unicode.txt                               |  30 +++++++
 docs/ref/urlresolvers.txt                          |   4 +-
 docs/releases/1.7.11.txt                           |  26 +++++++
 docs/releases/1.7.txt                              |   2 +-
 docs/releases/1.8.7.txt                            |  66 ++++++++++++++++
 docs/releases/index.txt                            |   2 +
 docs/topics/auth/customizing.txt                   |  12 +--
 docs/topics/auth/default.txt                       |  11 +++
 docs/topics/class-based-views/generic-editing.txt  |   6 +-
 docs/topics/db/aggregation.txt                     |  86 +++++++++++++++------
 docs/topics/db/multi-db.txt                        |   1 +
 docs/topics/i18n/translation.txt                   |   6 +-
 docs/topics/logging.txt                            |  46 ++++++-----
 docs/topics/performance.txt                        |  10 +--
 docs/topics/testing/tools.txt                      |   6 ++
 setup.cfg                                          |   2 +-
 tests/admin_filters/tests.py                       |   8 +-
 tests/apps/tests.py                                |  14 ++--
 tests/backends/tests.py                            |   1 +
 tests/basic/models.py                              |   1 +
 tests/basic/tests.py                               |  11 +++
 tests/delete/models.py                             |   6 ++
 tests/delete/tests.py                              |  11 +++
 tests/forms_tests/tests/tests.py                   |  14 +++-
 tests/i18n/tests.py                                |  15 ++++
 tests/model_fields/tests.py                        |  32 +++++++-
 tests/model_regress/test_pickle.py                 |  17 +---
 tests/multiple_database/tests.py                   |  21 +++++
 tests/order_with_respect_to/models.py              |  16 ++++
 tests/order_with_respect_to/tests.py               |  12 ++-
 tests/postgres_tests/test_array.py                 |  81 +++++++++++++++++++
 tests/postgres_tests/test_ranges.py                |  23 ++++--
 tests/prefetch_related/tests.py                    |  22 ++++++
 tests/queryset_pickle/tests.py                     |  17 +---
 tests/requirements/mysql.txt                       |   2 +-
 tests/runtests.py                                  |   2 +
 tests/schema/tests.py                              |  27 +++----
 tests/utils_tests/test_dateformat.py               |  17 ++++
 85 files changed, 988 insertions(+), 289 deletions(-)
 create mode 100644 django/contrib/postgres/fields/utils.py
 create mode 100644 docs/releases/1.7.11.txt
 create mode 100644 docs/releases/1.8.7.txt

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



More information about the Python-modules-commits mailing list