[Python-modules-commits] [django-python3-ldap] 03/03: Initial release (Closes: #809857).

Michael Fladischer fladi at moszumanska.debian.org
Tue Jan 5 12:39:37 UTC 2016


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

fladi pushed a commit to branch master
in repository django-python3-ldap.

commit eebacd5fa90c9a09eb29758072c94b87c68d2269
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Tue Jan 5 13:02:27 2016 +0100

    Initial release (Closes: #809857).
---
 debian/changelog                        |  5 ++++
 debian/clean                            |  1 +
 debian/compat                           |  1 +
 debian/control                          | 51 +++++++++++++++++++++++++++++++++
 debian/copyright                        | 38 ++++++++++++++++++++++++
 debian/python-django-python3-ldap.docs  |  1 +
 debian/python3-django-python3-ldap.docs |  1 +
 debian/rules                            | 10 +++++++
 debian/watch                            |  3 ++
 9 files changed, 111 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2ade32d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-python3-ldap (0.9.8-1) unstable; urgency=low
+
+  * Initial release (Closes: #809857).
+
+ -- Michael Fladischer <fladi at debian.org>  Tue, 05 Jan 2016 13:02:03 +0100
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..137c743
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+django_python3_ldap.egg-info/SOURCES.txt
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..cde1ee4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,51 @@
+Source: django-python3-ldap
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.2
+Homepage: https://github.com/etianen/django-python3-ldap
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-python3-ldap.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/django-python3-ldap.git
+
+Package: python-django-python3-ldap
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: Django LDAP user authentication backend (Python2 version)
+ django-python3-ldap provides a Django LDAP user authentication backend for
+ Python. It uses the pure Python ldap3 library for all LDAP related operations.
+ This makes it easier to deploy instead of solutions that depend on the OpenLDAP
+ library.
+ .
+ It provides the following features:
+  * Authenticate users with an LDAP server.
+  * Sync LDAP users with a local Django database.
+  * Supports custom Django user models.
+ .
+ This package contains the Python 2 version of the library.
+
+Package: python3-django-python3-ldap
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: Django LDAP user authentication backend (Python3 version)
+ django-python3-ldap provides a Django LDAP user authentication backend for
+ Python. It uses the pure Python ldap3 library for all LDAP related operations.
+ This makes it easier to deploy instead of solutions that depend on the OpenLDAP
+ library.
+ .
+ It provides the following features:
+  * Authenticate users with an LDAP server.
+  * Sync LDAP users with a local Django database.
+  * Supports custom Django user models.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ea065c8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-python3-ldap
+Upstream-Contact: Dave Hall <dave at etianen.com>
+Source: https://github.com/etianen/django-python3-ldap
+
+Files: *
+Copyright: 2015, David Hall <dave at etianen.com>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2016, Fladischer Michael <fladi at debian.org>
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without modification,
+ are permitted provided that the following conditions are met:
+ .
+     1. Redistributions of source code must retain the above copyright notice,
+        this list of conditions and the following disclaimer.
+ .
+     2. Redistributions in binary form must reproduce the above copyright
+        notice, this list of conditions and the following disclaimer in the
+        documentation and/or other materials provided with the distribution.
+ .
+     3. Neither the name of David Hall nor the names of its contributors may be
+        used to endorse or promote products derived from this software without
+        specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/debian/python-django-python3-ldap.docs b/debian/python-django-python3-ldap.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-django-python3-ldap.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-django-python3-ldap.docs b/debian/python3-django-python3-ldap.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-django-python3-ldap.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..f47b12c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=django-python3-ldap
+export PYBUILD_DISABLE=test
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..f0f60ef
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/django-python3-ldap/django-python3-ldap-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

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



More information about the Python-modules-commits mailing list