[Python-modules-commits] r12466 - in packages/django-auth-ldap/trunk (10 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Fri Apr 2 18:50:36 UTC 2010


    Date: Friday, April 2, 2010 @ 18:50:33
  Author: fladi-guest
Revision: 12466

Maintain django-auth-ldap through PMPT, starting with 1.0.3.

Added:
  packages/django-auth-ldap/trunk/debian/
  packages/django-auth-ldap/trunk/debian/changelog
  packages/django-auth-ldap/trunk/debian/compat
  packages/django-auth-ldap/trunk/debian/control
  packages/django-auth-ldap/trunk/debian/copyright
  packages/django-auth-ldap/trunk/debian/pyversions
  packages/django-auth-ldap/trunk/debian/rules
  packages/django-auth-ldap/trunk/debian/source/
  packages/django-auth-ldap/trunk/debian/source/format
  packages/django-auth-ldap/trunk/debian/watch


Property changes on: packages/django-auth-ldap/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/django-auth-ldap/trunk/debian/changelog
===================================================================
--- packages/django-auth-ldap/trunk/debian/changelog	                        (rev 0)
+++ packages/django-auth-ldap/trunk/debian/changelog	2010-04-02 18:50:33 UTC (rev 12466)
@@ -0,0 +1,5 @@
+django-auth-ldap (1.0.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #575817)
+
+ -- Fladischer Michael <FladischerMichael at fladi.at>  Fri, 02 Apr 2010 08:48:43 +0200

Added: packages/django-auth-ldap/trunk/debian/compat
===================================================================
--- packages/django-auth-ldap/trunk/debian/compat	                        (rev 0)
+++ packages/django-auth-ldap/trunk/debian/compat	2010-04-02 18:50:33 UTC (rev 12466)
@@ -0,0 +1 @@
+7

Added: packages/django-auth-ldap/trunk/debian/control
===================================================================
--- packages/django-auth-ldap/trunk/debian/control	                        (rev 0)
+++ packages/django-auth-ldap/trunk/debian/control	2010-04-02 18:50:33 UTC (rev 12466)
@@ -0,0 +1,17 @@
+Source: django-auth-ldap
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.3), python-support, 
+ python-django, python-pysqlite2
+Standards-Version: 3.8.4
+Homepage: http://pypi.python.org/pypi/django-auth-ldap/
+
+Package: python-django-auth-ldap
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-django, python-ldap
+Description: Django LDAP authentication backend
+ Django authentication backend that authenticates against an LDAP 
+ service. Configuration can be as simple as a single distinguished 
+ name template, but there are many rich configuration options for 
+ working with users, groups, and permissions.

Added: packages/django-auth-ldap/trunk/debian/copyright
===================================================================
--- packages/django-auth-ldap/trunk/debian/copyright	                        (rev 0)
+++ packages/django-auth-ldap/trunk/debian/copyright	2010-04-02 18:50:33 UTC (rev 12466)
@@ -0,0 +1,48 @@
+This work was packaged for Debian by:
+
+    Fladischer Michael <FladischerMichael at fladi.at> on Mon, 08 Feb 2010 12:53:04 +0100
+
+It was downloaded from:
+
+    http://pypi.python.org/pypi/django-auth-ldap/
+
+Upstream Author:
+
+    Peter Sagerson <psagers at ignorare.net>
+
+Copyright:
+
+    2009, Peter Sagerson
+
+License:
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted provided that the following conditions are met:
+
+    - Redistributions of source code must retain the above copyright notice, this
+    list of conditions and the following disclaimer.
+
+    - 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.
+
+    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 HOLDER 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.
+
+On Debian systems, the complete text of the BSD License can be
+found in "/usr/share/common-licenses/BSD".
+
+The Debian packaging is:
+
+    Copyright (C) 2010 Fladischer Michael <FladischerMichael at fladi.at>
+
+and is licensed under the GPL version 3,
+see "/usr/share/common-licenses/GPL-3".

Added: packages/django-auth-ldap/trunk/debian/pyversions
===================================================================
--- packages/django-auth-ldap/trunk/debian/pyversions	                        (rev 0)
+++ packages/django-auth-ldap/trunk/debian/pyversions	2010-04-02 18:50:33 UTC (rev 12466)
@@ -0,0 +1 @@
+2.3-

Added: packages/django-auth-ldap/trunk/debian/rules
===================================================================
--- packages/django-auth-ldap/trunk/debian/rules	                        (rev 0)
+++ packages/django-auth-ldap/trunk/debian/rules	2010-04-02 18:50:33 UTC (rev 12466)
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+%:
+	dh $@
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+	django-admin startproject testproject
+	echo 'DATABASE_ENGINE = "sqlite3"' > testproject/settings.py
+	echo 'DATABASE_NAME = "testproject/test.db3"' >> testproject/settings.py
+	echo 'INSTALLED_APPS = ["django_auth_ldap","django.contrib.auth","django.contrib.contenttypes","django.contrib.admin","django.contrib.sites","django.contrib.sessions"]' >> testproject/settings.py
+	echo 'SITE_ID = 1' >> testproject/settings.py
+	echo 'ROOT_URLCONF = "testproject.urls"' >> testproject/settings.py
+	for python in $(shell pyversions -r); do \
+	  rm -f testproject/test.db3 ; \
+	  PYTHONPATH=".:src" $$python testproject/manage.py syncdb --settings=testproject.settings --noinput ;\
+	  PYTHONPATH=".:src" $$python testproject/manage.py test --settings=testproject.settings ; \
+	done
+	rm -rf testproject
+endif
+


Property changes on: packages/django-auth-ldap/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/django-auth-ldap/trunk/debian/source/format
===================================================================
--- packages/django-auth-ldap/trunk/debian/source/format	                        (rev 0)
+++ packages/django-auth-ldap/trunk/debian/source/format	2010-04-02 18:50:33 UTC (rev 12466)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/django-auth-ldap/trunk/debian/watch
===================================================================
--- packages/django-auth-ldap/trunk/debian/watch	                        (rev 0)
+++ packages/django-auth-ldap/trunk/debian/watch	2010-04-02 18:50:33 UTC (rev 12466)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/d/django-auth-ldap/django-auth-ldap-([\d\.]*)\.tar\.gz




More information about the Python-modules-commits mailing list