[Python-modules-commits] [drf-haystack] branch master updated (3ea9b2e -> e985a1e)
Michael Fladischer
fladi at moszumanska.debian.org
Sat Jan 2 17:45:41 UTC 2016
This is an automated email from the git hooks/post-receive script.
fladi pushed a change to branch master
in repository drf-haystack.
from 3ea9b2e Initial release (Closes: #797406).
new 4d00caf Use io module to open UTF-8 encoded file.
new b0dd7a0 Initialize git-dpm
new 3231bb6 record new upstream branch created by importing drf-haystack_1.5.5.orig.tar.gz
new 7125c89 Import drf-haystack_1.5.5.orig.tar.gz
new 602ac1a Use io module to open UTF-8 encoded file.
new 9c64bcc merge patched into master
new 9780928 record new upstream branch created by importing drf-haystack_1.5.6.orig.tar.gz
new 35215bc Import drf-haystack_1.5.6.orig.tar.gz
new 366db6e Use io module to open UTF-8 encoded file.
new c980eb8 merge patched into master
new 818ff5c Log to console during tests.
new bb7f916 merge patched into master
new 2384c30 merge patched into master
new dacaeb8 Disable tests through pybuild. They do require a running elasticsearch instance.
new c93f11f Clean drf_haystack.egg-info/SOURCES.txt to allow two builds in a row.
new 05892fd With tests disabled, remove the following packages from Build-Depends: - python-coverage - python-django - python-django-haystack - python-djangorestframework - python-elasticsearch - python-mock - python-nose - python-unittest2 - python3-coverage - python3-django - python3-django-haystack - python3-djangorestframework - python3-elasticsearch - python3-mock - python3-nose - python3-unittest2
new e985a1e New upstream release.
The 17 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:
LICENSE.txt | 21 +
MANIFEST.in | 6 +
PKG-INFO | 6 +-
README.rst | 1 +
debian/.git-dpm | 8 +
debian/changelog | 26 +
debian/clean | 1 +
debian/control | 18 +-
debian/patches/python3-io.patch | 22 +-
debian/rules | 1 +
docs/Makefile | 177 +++
docs/advanced_usage.rst | 936 ++++++++++++++
docs/basic_usage.rst | 221 ++++
docs/conf.py | 298 +++++
docs/index.rst | 209 ++++
docs/make.bat | 242 ++++
drf_haystack.egg-info/PKG-INFO | 6 +-
drf_haystack.egg-info/SOURCES.txt | 42 +-
drf_haystack.egg-info/pbr.json | 1 -
drf_haystack.egg-info/requires.txt | 1 +
drf_haystack/__init__.py | 4 +-
drf_haystack/filters.py | 168 ++-
drf_haystack/generics.py | 61 +-
drf_haystack/serializers.py | 193 ++-
drf_haystack/utils.py | 31 +
drf_haystack/viewsets.py | 36 +-
requirements.txt | 13 +
setup.py | 13 +-
tests/__init__.py | 48 +
tests/constants.py | 17 +
tests/mixins.py | 17 +
tests/mockapp/__init__.py | 0
tests/mockapp/admin.py | 3 +
tests/mockapp/fixtures/mocklocation.json | 1302 ++++++++++++++++++++
tests/mockapp/fixtures/mockperson.json | 1002 +++++++++++++++
tests/mockapp/fixtures/mockpet.json | 102 ++
tests/mockapp/migrations/0001_initial.py | 29 +
tests/mockapp/migrations/0002_mockperson.py | 27 +
tests/mockapp/migrations/0003_mockpet.py | 28 +
tests/mockapp/migrations/0004_load_fixtures.py | 56 +
tests/mockapp/migrations/__init__.py | 0
tests/mockapp/models.py | 57 +
tests/mockapp/search_indexes.py | 86 ++
tests/mockapp/serializers.py | 63 +
.../search/indexes/mockapp/mocklocation_text.txt | 3 +
.../search/indexes/mockapp/mockperson_text.txt | 1 +
.../search/indexes/mockapp/mockpet_text.txt | 1 +
tests/mockapp/views.py | 39 +
tests/runtests.py | 25 +
tests/settings.py | 113 ++
tests/test_filters.py | 462 +++++++
tests/test_serializers.py | 697 +++++++++++
tests/test_utils.py | 55 +
tests/test_viewsets.py | 224 ++++
tests/urls.py | 17 +
tests/wsgi.py | 14 +
tox.ini | 153 +++
57 files changed, 7329 insertions(+), 74 deletions(-)
create mode 100644 LICENSE.txt
create mode 100644 MANIFEST.in
create mode 100644 debian/.git-dpm
create mode 100644 debian/clean
create mode 100644 docs/Makefile
create mode 100644 docs/advanced_usage.rst
create mode 100644 docs/basic_usage.rst
create mode 100644 docs/conf.py
create mode 100644 docs/index.rst
create mode 100644 docs/make.bat
delete mode 100644 drf_haystack.egg-info/pbr.json
create mode 100644 drf_haystack/utils.py
create mode 100644 requirements.txt
create mode 100644 tests/__init__.py
create mode 100644 tests/constants.py
create mode 100644 tests/mixins.py
create mode 100644 tests/mockapp/__init__.py
create mode 100644 tests/mockapp/admin.py
create mode 100644 tests/mockapp/fixtures/mocklocation.json
create mode 100644 tests/mockapp/fixtures/mockperson.json
create mode 100644 tests/mockapp/fixtures/mockpet.json
create mode 100644 tests/mockapp/migrations/0001_initial.py
create mode 100644 tests/mockapp/migrations/0002_mockperson.py
create mode 100644 tests/mockapp/migrations/0003_mockpet.py
create mode 100644 tests/mockapp/migrations/0004_load_fixtures.py
create mode 100644 tests/mockapp/migrations/__init__.py
create mode 100644 tests/mockapp/models.py
create mode 100644 tests/mockapp/search_indexes.py
create mode 100644 tests/mockapp/serializers.py
create mode 100644 tests/mockapp/templates/search/indexes/mockapp/mocklocation_text.txt
create mode 100644 tests/mockapp/templates/search/indexes/mockapp/mockperson_text.txt
create mode 100644 tests/mockapp/templates/search/indexes/mockapp/mockpet_text.txt
create mode 100644 tests/mockapp/views.py
create mode 100644 tests/runtests.py
create mode 100644 tests/settings.py
create mode 100644 tests/test_filters.py
create mode 100644 tests/test_serializers.py
create mode 100644 tests/test_utils.py
create mode 100644 tests/test_viewsets.py
create mode 100644 tests/urls.py
create mode 100644 tests/wsgi.py
create mode 100644 tox.ini
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/drf-haystack.git
More information about the Python-modules-commits
mailing list