[Python-modules-commits] [django-auth-ldap] branch debian/master updated (acb5e92 -> 93af52f)
Michael Fladischer
fladi at moszumanska.debian.org
Fri Nov 24 11:22:25 UTC 2017
This is an automated email from the git hooks/post-receive script.
fladi pushed a change to branch debian/master
in repository django-auth-ldap.
from acb5e92 New upstream release.
new 75fbddd New upstream version 1.3.0
new b00e6c0 Update upstream source from tag 'upstream/1.3.0'
new e0901cc Move upstream signing key to debian/upstream/signing-key.asc.
new 4aff6ca New upstream release.
new 7aede8f Refresh patches.
new aa02693 Fix KeyError in intersphinx patch.
new ee5cef8 Update test runner to work with upstream changes (no more manage.py).
new b8b8ec8 Bump Standards-Version to 4.1.1.
new 262ce6d Run wrap-and-sort -bast to reduce diff size of future changes.
new 199040a Enable autopkgtest-pkg-python testsuite.
new f616fd3 Use https:// for uscan URL.
new 93af52f Upload to unstable (Closes: #881332).
The 12 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:
CHANGES | 119 ++++--
MANIFEST.in | 5 +-
PKG-INFO | 17 +-
README | 67 ----
README.md | 168 ++++++++
debian/changelog | 14 +
debian/control | 75 ++--
...3-Use-pyldap-for-both-Python2-and-Python3.patch | 25 +-
.../docs-use_local_intersphinx_mapping.patch | 62 +--
debian/rules | 6 +-
debian/upstream-signing-key.pgp | Bin 6199 -> 0 bytes
debian/upstream/signing-key.asc | 135 +++++++
debian/watch | 2 +-
django_auth_ldap.egg-info/PKG-INFO | 17 +-
django_auth_ldap.egg-info/SOURCES.txt | 42 +-
django_auth_ldap.egg-info/requires.txt | 7 +-
django_auth_ldap/__init__.py | 8 +-
django_auth_ldap/backend.py | 364 ++++++++---------
django_auth_ldap/config.py | 81 ++--
django_auth_ldap/dn.py | 2 +
django_auth_ldap/models.py | 32 --
docs/.Makefile.swp | Bin 12288 -> 0 bytes
docs/Makefile | 99 +----
docs/_templates/globaltoc.html | 11 -
docs/ext/.daldocs.py.swp | Bin 12288 -> 0 bytes
docs/ext/__pycache__/daldocs.cpython-36.pyc | Bin 0 -> 415 bytes
docs/make.bat | 36 ++
docs/source/.authentication.rst.swp | Bin 16384 -> 0 bytes
docs/source/.changes.rst.swp | Bin 12288 -> 0 bytes
docs/source/.conf.py.swp | Bin 20480 -> 0 bytes
docs/source/.contributing.rst.swp | Bin 12288 -> 0 bytes
docs/source/.index.rst.swp | Bin 12288 -> 0 bytes
docs/source/.install.rst.swp | Bin 12288 -> 0 bytes
docs/source/authentication.rst | 25 ++
docs/source/conf.py | 238 +++++------
docs/source/contributing.rst | 29 --
docs/source/example.rst | 8 -
docs/source/index.rst | 7 +-
docs/source/install.rst | 39 +-
docs/source/performance.rst | 47 +--
docs/source/reference.rst | 119 +++---
docs/source/users.rst | 60 +--
setup.cfg | 6 +
setup.py | 89 ++++-
test/.coveragerc | 4 -
test/.settings.py.swp | Bin 12288 -> 0 bytes
test/manage.py | 12 -
test/urls.py | 7 -
tests/__init__.py | 0
tests/__init__.pyc | Bin 0 -> 148 bytes
tests/__pycache__/__init__.cpython-34.pyc | Bin 0 -> 144 bytes
tests/__pycache__/__init__.cpython-35.pyc | Bin 0 -> 144 bytes
tests/__pycache__/__init__.cpython-36.pyc | Bin 0 -> 144 bytes
tests/__pycache__/models.cpython-34.pyc | Bin 0 -> 1329 bytes
tests/__pycache__/models.cpython-35.pyc | Bin 0 -> 1329 bytes
tests/__pycache__/models.cpython-36.pyc | Bin 0 -> 1256 bytes
tests/__pycache__/settings.cpython-34.pyc | Bin 0 -> 880 bytes
tests/__pycache__/settings.cpython-35.pyc | Bin 0 -> 876 bytes
tests/__pycache__/settings.cpython-36.pyc | Bin 0 -> 836 bytes
tests/__pycache__/tests.cpython-34.pyc | Bin 0 -> 54907 bytes
tests/__pycache__/tests.cpython-35.pyc | Bin 0 -> 54753 bytes
tests/__pycache__/tests.cpython-36.pyc | Bin 0 -> 49947 bytes
tests/models.py | 25 ++
tests/models.pyc | Bin 0 -> 1631 bytes
{test => tests}/settings.py | 9 +-
tests/settings.pyc | Bin 0 -> 1074 bytes
{django_auth_ldap => tests}/tests.py | 445 ++++++++++++---------
tests/tests.pyc | Bin 0 -> 62783 bytes
tox.ini | 49 +--
69 files changed, 1466 insertions(+), 1146 deletions(-)
delete mode 100644 README
create mode 100644 README.md
delete mode 100644 debian/upstream-signing-key.pgp
create mode 100644 debian/upstream/signing-key.asc
delete mode 100644 django_auth_ldap/models.py
delete mode 100644 docs/.Makefile.swp
delete mode 100644 docs/_templates/globaltoc.html
delete mode 100644 docs/ext/.daldocs.py.swp
create mode 100644 docs/ext/__pycache__/daldocs.cpython-36.pyc
create mode 100644 docs/make.bat
delete mode 100644 docs/source/.authentication.rst.swp
delete mode 100644 docs/source/.changes.rst.swp
delete mode 100644 docs/source/.conf.py.swp
delete mode 100644 docs/source/.contributing.rst.swp
delete mode 100644 docs/source/.index.rst.swp
delete mode 100644 docs/source/.install.rst.swp
delete mode 100644 docs/source/contributing.rst
delete mode 100644 test/.coveragerc
delete mode 100644 test/.settings.py.swp
delete mode 100755 test/manage.py
delete mode 100644 test/urls.py
create mode 100644 tests/__init__.py
create mode 100644 tests/__init__.pyc
create mode 100644 tests/__pycache__/__init__.cpython-34.pyc
create mode 100644 tests/__pycache__/__init__.cpython-35.pyc
create mode 100644 tests/__pycache__/__init__.cpython-36.pyc
create mode 100644 tests/__pycache__/models.cpython-34.pyc
create mode 100644 tests/__pycache__/models.cpython-35.pyc
create mode 100644 tests/__pycache__/models.cpython-36.pyc
create mode 100644 tests/__pycache__/settings.cpython-34.pyc
create mode 100644 tests/__pycache__/settings.cpython-35.pyc
create mode 100644 tests/__pycache__/settings.cpython-36.pyc
create mode 100644 tests/__pycache__/tests.cpython-34.pyc
create mode 100644 tests/__pycache__/tests.cpython-35.pyc
create mode 100644 tests/__pycache__/tests.cpython-36.pyc
create mode 100644 tests/models.py
create mode 100644 tests/models.pyc
rename {test => tests}/settings.py (81%)
create mode 100644 tests/settings.pyc
rename {django_auth_ldap => tests}/tests.py (83%)
create mode 100644 tests/tests.pyc
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/django-auth-ldap.git
More information about the Python-modules-commits
mailing list