commit python-django-auth-ldap for openSUSE:Factory

2020-06-09 Thread root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2020-06-10 00:50:52

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.3606 (New)


Package is "python-django-auth-ldap"

Wed Jun 10 00:50:52 2020 rev:15 rq:812852 version:2.2.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2020-04-04 12:27:20.872046793 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.3606/python-django-auth-ldap.changes
2020-06-10 00:50:56.371341064 +0200
@@ -1,0 +2,6 @@
+Tue Jun  9 10:06:39 UTC 2020 - Ondřej Súkup 
+
+- Update to 2.2.0
+ * Added support for the escape argument in LDAPSearchUnion.execute()
+
+---

Old:

  django-auth-ldap-2.1.1.tar.gz

New:

  django-auth-ldap-2.2.0.tar.gz



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.PzHjND/_old  2020-06-10 00:50:57.283343450 +0200
+++ /var/tmp/diff_new_pack.PzHjND/_new  2020-06-10 00:50:57.283343450 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-django-auth-ldap
-Version:2.1.1
+Version:2.2.0
 Release:0
 Summary:Django LDAP authentication backend
 License:BSD-2-Clause

++ django-auth-ldap-2.1.1.tar.gz -> django-auth-ldap-2.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.1/CHANGES 
new/django-auth-ldap-2.2.0/CHANGES
--- old/django-auth-ldap-2.1.1/CHANGES  2020-03-26 18:52:03.0 +0100
+++ new/django-auth-ldap-2.2.0/CHANGES  2020-06-03 01:45:40.0 +0200
@@ -1,3 +1,8 @@
+2.2.0 - 2020-06-02
+--
+
+- Added support for the escape argument in ``LDAPSearchUnion.execute()``.
+
 2.1.1 - 2020-03-26
 
 - Removed drepecated ``providing_args`` from ``Signal`` instances.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.1/PKG-INFO 
new/django-auth-ldap-2.2.0/PKG-INFO
--- old/django-auth-ldap-2.1.1/PKG-INFO 2020-03-26 18:54:27.0 +0100
+++ new/django-auth-ldap-2.2.0/PKG-INFO 2020-06-03 01:49:56.901470400 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: django-auth-ldap
-Version: 2.1.1
+Version: 2.2.0
 Summary: Django LDAP authentication backend.
 Home-page: https://github.com/django-auth-ldap/django-auth-ldap
 Author: Peter Sagerson
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.1/django_auth_ldap/__init__.py 
new/django-auth-ldap-2.2.0/django_auth_ldap/__init__.py
--- old/django-auth-ldap-2.1.1/django_auth_ldap/__init__.py 2020-03-26 
18:52:33.0 +0100
+++ new/django-auth-ldap-2.2.0/django_auth_ldap/__init__.py 2020-06-03 
01:44:51.0 +0200
@@ -1,4 +1,4 @@
-VERSION = (2, 1, 1)
+VERSION = (2, 2, 0)
 __version__ = ".".join(str(i) for i in VERSION)
 
 # Deprecated. Use VERSION and __version__ instead.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.1/django_auth_ldap/config.py 
new/django-auth-ldap-2.2.0/django_auth_ldap/config.py
--- old/django-auth-ldap-2.1.1/django_auth_ldap/config.py   2020-01-25 
13:32:59.0 +0100
+++ new/django-auth-ldap-2.2.0/django_auth_ldap/config.py   2020-06-03 
01:35:55.0 +0200
@@ -270,8 +270,10 @@
 
 return type(self)(*searches)
 
-def execute(self, connection, filterargs=()):
-msgids = [search._begin(connection, filterargs) for search in 
self.searches]
+def execute(self, connection, filterargs=(), escape=True):
+msgids = [
+search._begin(connection, filterargs, escape) for search in 
self.searches
+]
 results = {}
 
 for search, msgid in zip(self.searches, msgids):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/django-auth-ldap-2.1.1/django_auth_ldap.egg-info/PKG-INFO 
new/django-auth-ldap-2.2.0/django_auth_ldap.egg-info/PKG-INFO
--- old/django-auth-ldap-2.1.1/django_auth_ldap.egg-info/PKG-INFO   
2020-03-26 18:54:26.0 +0100
+++ new/django-auth-ldap-2.2.0/django_auth_ldap.egg-info/PKG-INFO   
2020-06-03 01:49:56.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: django-auth-ldap
-Version: 2.1.1
+Version: 2.2.0
 Summary: Django LDAP authentication backend.
 Home-page: https://github.com/django-auth-ldap/django-auth-ldap
 Author: Peter Sagerson
diff 

commit python-django-auth-ldap for openSUSE:Factory

2020-04-04 Thread root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2020-04-04 12:26:35

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.3248 (New)


Package is "python-django-auth-ldap"

Sat Apr  4 12:26:35 2020 rev:14 rq:791170 version:2.1.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2020-01-07 23:54:53.680079312 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.3248/python-django-auth-ldap.changes
2020-04-04 12:27:20.872046793 +0200
@@ -1,0 +2,6 @@
+Fri Apr  3 10:52:11 UTC 2020 - Tomáš Chvátal 
+
+- Update to 2.1.1:
+  * Removed drepecated ``providing_args`` from ``Signal`` instances.
+
+---

Old:

  django-auth-ldap-2.1.0.tar.gz

New:

  django-auth-ldap-2.1.1.tar.gz



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.ucv1Rj/_old  2020-04-04 12:27:22.084048046 +0200
+++ /var/tmp/diff_new_pack.ucv1Rj/_new  2020-04-04 12:27:22.084048046 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-django-auth-ldap
-Version:2.1.0
+Version:2.1.1
 Release:0
 Summary:Django LDAP authentication backend
 License:BSD-2-Clause

++ django-auth-ldap-2.1.0.tar.gz -> django-auth-ldap-2.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.0/CHANGES 
new/django-auth-ldap-2.1.1/CHANGES
--- old/django-auth-ldap-2.1.0/CHANGES  2019-12-04 05:06:11.0 +0100
+++ new/django-auth-ldap-2.1.1/CHANGES  2020-03-26 18:52:03.0 +0100
@@ -1,3 +1,7 @@
+2.1.1 - 2020-03-26
+
+- Removed drepecated ``providing_args`` from ``Signal`` instances.
+
 2.1.0 - 2019-12-03
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.0/PKG-INFO 
new/django-auth-ldap-2.1.1/PKG-INFO
--- old/django-auth-ldap-2.1.0/PKG-INFO 2019-12-04 05:08:08.0 +0100
+++ new/django-auth-ldap-2.1.1/PKG-INFO 2020-03-26 18:54:27.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: django-auth-ldap
-Version: 2.1.0
+Version: 2.1.1
 Summary: Django LDAP authentication backend.
 Home-page: https://github.com/django-auth-ldap/django-auth-ldap
 Author: Peter Sagerson
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.0/django_auth_ldap/__init__.py 
new/django-auth-ldap-2.1.1/django_auth_ldap/__init__.py
--- old/django-auth-ldap-2.1.0/django_auth_ldap/__init__.py 2019-12-04 
05:06:11.0 +0100
+++ new/django-auth-ldap-2.1.1/django_auth_ldap/__init__.py 2020-03-26 
18:52:33.0 +0100
@@ -1,4 +1,4 @@
-VERSION = (2, 1, 0)
+VERSION = (2, 1, 1)
 __version__ = ".".join(str(i) for i in VERSION)
 
 # Deprecated. Use VERSION and __version__ instead.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.0/django_auth_ldap/backend.py 
new/django-auth-ldap-2.1.1/django_auth_ldap/backend.py
--- old/django-auth-ldap-2.1.0/django_auth_ldap/backend.py  2019-12-04 
05:06:11.0 +0100
+++ new/django-auth-ldap-2.1.1/django_auth_ldap/backend.py  2020-03-26 
18:48:55.0 +0100
@@ -74,11 +74,13 @@
 # Exported signals
 
 # Allows clients to perform custom user population.
-populate_user = django.dispatch.Signal(providing_args=["user", "ldap_user"])
+# Passed arguments: user, ldap_user
+populate_user = django.dispatch.Signal()
 
 # Allows clients to inspect and perform special handling of LDAPError
 # exceptions. Exceptions raised by handlers will be propagated out.
-ldap_error = django.dispatch.Signal(providing_args=["context", "user", 
"exception"])
+# Passed arguments: context, user, exception
+ldap_error = django.dispatch.Signal()
 
 
 class LDAPBackend:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/django-auth-ldap-2.1.0/django_auth_ldap.egg-info/PKG-INFO 
new/django-auth-ldap-2.1.1/django_auth_ldap.egg-info/PKG-INFO
--- old/django-auth-ldap-2.1.0/django_auth_ldap.egg-info/PKG-INFO   
2019-12-04 05:08:08.0 +0100
+++ new/django-auth-ldap-2.1.1/django_auth_ldap.egg-info/PKG-INFO   
2020-03-26 18:54:26.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: django-auth-ldap
-Version: 2.1.0
+Version: 2.1.1
 Summary: Django LDAP authentication backend.
 Home-page: 

commit python-django-auth-ldap for openSUSE:Factory

2020-01-07 Thread root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2020-01-07 23:54:40

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.6675 (New)


Package is "python-django-auth-ldap"

Tue Jan  7 23:54:40 2020 rev:13 rq:761500 version:2.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2019-09-17 13:38:45.685829922 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.6675/python-django-auth-ldap.changes
2020-01-07 23:54:53.680079312 +0100
@@ -1,0 +2,8 @@
+Tue Jan  7 09:58:21 UTC 2020 - Tomáš Chvátal 
+
+- Update to 2.1.0:
+  - Reject authentication requests without a username.
+  - Added support for Django 3.0 and Python 3.8.
+  - Removed support for Django end of life Django 2.1.
+
+---

Old:

  django-auth-ldap-2.0.0.tar.gz

New:

  django-auth-ldap-2.1.0.tar.gz



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.SvpQV6/_old  2020-01-07 23:54:55.040080018 +0100
+++ /var/tmp/diff_new_pack.SvpQV6/_new  2020-01-07 23:54:55.088080043 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-auth-ldap
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,14 +19,13 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-django-auth-ldap
-Version:2.0.0
+Version:2.1.0
 Release:0
 Summary:Django LDAP authentication backend
 License:BSD-2-Clause
-Group:  Development/Languages/Python
 URL:https://github.com/django-auth-ldap/django-auth-ldap
 Source: 
https://files.pythonhosted.org/packages/source/d/django-auth-ldap/django-auth-ldap-%{version}.tar.gz
-BuildRequires:  %{python_module Django >= 1.11}
+BuildRequires:  %{python_module Django >= 2.2}
 BuildRequires:  %{python_module ldap >= 3.1}
 BuildRequires:  %{python_module mock >= 2.0.0}
 BuildRequires:  %{python_module setuptools}
@@ -35,7 +34,7 @@
 BuildRequires:  openldap2
 # needed for ldapadd binary in tests
 BuildRequires:  openldap2-client
-Requires:   python-Django >= 1.11
+Requires:   python-Django >= 2.2
 Requires:   python-ldap >= 3.1
 BuildArch:  noarch
 %python_subpackages

++ django-auth-ldap-2.0.0.tar.gz -> django-auth-ldap-2.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.0.0/CHANGES 
new/django-auth-ldap-2.1.0/CHANGES
--- old/django-auth-ldap-2.0.0/CHANGES  2019-06-06 04:14:14.0 +0200
+++ new/django-auth-ldap-2.1.0/CHANGES  2019-12-04 05:06:11.0 +0100
@@ -1,3 +1,10 @@
+2.1.0 - 2019-12-03
+--
+
+- Reject authentication requests without a username.
+- Added support for Django 3.0 and Python 3.8.
+- Removed support for Django end of life Django 2.1.
+
 2.0.0 - 2019-06-05
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.0.0/PKG-INFO 
new/django-auth-ldap-2.1.0/PKG-INFO
--- old/django-auth-ldap-2.0.0/PKG-INFO 2019-06-06 04:15:55.0 +0200
+++ new/django-auth-ldap-2.1.0/PKG-INFO 2019-12-04 05:08:08.0 +0100
@@ -1,12 +1,10 @@
 Metadata-Version: 1.2
 Name: django-auth-ldap
-Version: 2.0.0
-Summary: Django LDAP authentication backend
+Version: 2.1.0
+Summary: Django LDAP authentication backend.
 Home-page: https://github.com/django-auth-ldap/django-auth-ldap
 Author: Peter Sagerson
 Author-email: psag...@ignorare.net
-Maintainer: Jon Dufresne
-Maintainer-email: jon.dufre...@gmail.com
 License: BSD
 Project-URL: Documentation, https://django-auth-ldap.readthedocs.io/
 Project-URL: Source, https://github.com/django-auth-ldap/django-auth-ldap
@@ -38,8 +36,8 @@
 * Tests: http://travis-ci.org/django-auth-ldap/django-auth-ldap
 * License: BSD 2-Clause
 
-This version is supported on Python 2.7 and 3.4+; and Django 1.11+. It 
requires
-`python-ldap`_ >= 3.0.
+This version is supported on Python 3.5+; and Django 1.11+. It requires
+`python-ldap`_ >= 3.1.
 
 .. _`python-ldap`: https://pypi.org/project/python-ldap/
 
@@ -53,7 +51,7 @@
 
 $ pip install django-auth-ldap
 
-It requires `python-ldap`_ >= 3.0. You'll need the 

commit python-django-auth-ldap for openSUSE:Factory

2019-09-17 Thread root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2019-09-17 13:38:35

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.7948 (New)


Package is "python-django-auth-ldap"

Tue Sep 17 13:38:35 2019 rev:12 rq:731233 version:2.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2019-01-21 10:52:17.399878351 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.7948/python-django-auth-ldap.changes
2019-09-17 13:38:45.685829922 +0200
@@ -1,0 +2,15 @@
+Mon Sep 16 10:01:16 UTC 2019 - Tomáš Chvátal 
+
+- Update to 2.0.0:
+  - Removed support for Python 2 and 3.4.
+  - Removed support for end of life Django 2.0.
+  - Added support for Django 2.2.
+  - Add testing and support for Python 3.7 with Django 1.11 and 2.1.
+  - When :setting:`AUTH_LDAP_SERVER_URI` is set to a callable, it is now 
passed a
+positional ``request`` argument. Support for no arguments will continue for
+backwards compatibility but will be removed in a future version.
+  - Added new :setting:`AUTH_LDAP_NO_NEW_USERS` to prevent the creation of new
+users during authentication. Any users not already in the Django user
+database will not be able to login.
+
+---

Old:

  django-auth-ldap-1.7.0.tar.gz

New:

  django-auth-ldap-2.0.0.tar.gz



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.GMDqVZ/_old  2019-09-17 13:38:47.085829699 +0200
+++ /var/tmp/diff_new_pack.GMDqVZ/_new  2019-09-17 13:38:47.089829698 +0200
@@ -17,8 +17,9 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
 Name:   python-django-auth-ldap
-Version:1.7.0
+Version:2.0.0
 Release:0
 Summary:Django LDAP authentication backend
 License:BSD-2-Clause

++ django-auth-ldap-1.7.0.tar.gz -> django-auth-ldap-2.0.0.tar.gz ++
 4324 lines of diff (skipped)




commit python-django-auth-ldap for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2019-01-21 10:52:13

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.28833 (New)


Package is "python-django-auth-ldap"

Mon Jan 21 10:52:13 2019 rev:11 rq:665650 version:1.7.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2018-08-24 17:04:21.878089945 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.28833/python-django-auth-ldap.changes
   2019-01-21 10:52:17.399878351 +0100
@@ -1,0 +2,5 @@
+Mon Jan 14 08:09:56 UTC 2019 - Tomáš Chvátal 
+
+- Add few more test dependencies
+
+---



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.XDsyz1/_old  2019-01-21 10:52:18.731876738 +0100
+++ /var/tmp/diff_new_pack.XDsyz1/_new  2019-01-21 10:52:18.731876738 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-auth-ldap
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -30,6 +30,10 @@
 BuildRequires:  %{python_module mock >= 2.0.0}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  python-rpm-macros
+# needed for slapd binary in tests
+BuildRequires:  openldap2
+# needed for ldapadd binary in tests
+BuildRequires:  openldap2-client
 Requires:   python-Django >= 1.11
 Requires:   python-ldap >= 3.1
 BuildArch:  noarch




commit python-django-auth-ldap for openSUSE:Factory

2018-08-24 Thread root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2018-08-24 17:04:20

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new (New)


Package is "python-django-auth-ldap"

Fri Aug 24 17:04:20 2018 rev:10 rq:629180 version:1.7.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2018-07-06 10:44:49.551052607 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new/python-django-auth-ldap.changes
 2018-08-24 17:04:21.878089945 +0200
@@ -1,0 +2,8 @@
+Tue Aug 14 06:55:04 UTC 2018 - tchva...@suse.com
+
+- Version update to 1.7.0:
+  * Support for Django 2.1, oldest supported is 1.11
+  * Support for python 3.7
+  * Many of bugfixes see CHANGES file
+
+---

Old:

  django-auth-ldap-1.2.6.tar.gz

New:

  django-auth-ldap-1.7.0.tar.gz



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.xKyD6E/_old  2018-08-24 17:04:22.322090472 +0200
+++ /var/tmp/diff_new_pack.xKyD6E/_new  2018-08-24 17:04:22.322090472 +0200
@@ -18,21 +18,21 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-django-auth-ldap
-Version:1.2.6
+Version:1.7.0
 Release:0
-Url:http://bitbucket.org/psagers/django-auth-ldap/
 Summary:Django LDAP authentication backend
 License:BSD-2-Clause
 Group:  Development/Languages/Python
-Source: 
https://pypi.python.org/packages/source/d/django-auth-ldap/django-auth-ldap-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  %{python_module devel}
+URL:https://github.com/django-auth-ldap/django-auth-ldap
+Source: 
https://files.pythonhosted.org/packages/source/d/django-auth-ldap/django-auth-ldap-%{version}.tar.gz
+BuildRequires:  %{python_module Django >= 1.11}
+BuildRequires:  %{python_module ldap >= 3.1}
+BuildRequires:  %{python_module mock >= 2.0.0}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  python-rpm-macros
-Requires:   python-django
-Requires:   python-ldap
+Requires:   python-Django >= 1.11
+Requires:   python-ldap >= 3.1
 BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -49,9 +49,13 @@
 %install
 %python_install
 
+%check
+export LANG=en_US.UTF8
+%python_exec -m django test --settings tests.settings
+
 %files %{python_files}
-%defattr(-,root,root,-)
-%doc CHANGES LICENSE README
+%license LICENSE
+%doc CHANGES README.rst
 %{python_sitelib}/*
 
 %changelog

++ django-auth-ldap-1.2.6.tar.gz -> django-auth-ldap-1.7.0.tar.gz ++
 14791 lines of diff (skipped)




commit python-django-auth-ldap for openSUSE:Factory

2018-07-06 Thread root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2018-07-06 10:44:49

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new (New)


Package is "python-django-auth-ldap"

Fri Jul  6 10:44:49 2018 rev:9 rq:620967 version:1.2.6

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2015-04-25 11:25:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new/python-django-auth-ldap.changes
 2018-07-06 10:44:49.551052607 +0200
@@ -1,0 +2,5 @@
+Tue Jan 23 10:47:15 UTC 2018 - mimi...@gmail.com
+
+- convert to singlespec 
+
+---



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.Kau4hz/_old  2018-07-06 10:44:49.931052154 +0200
+++ /var/tmp/diff_new_pack.Kau4hz/_new  2018-07-06 10:44:49.935052150 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-auth-ldap
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,9 +16,7 @@
 #
 
 
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
-
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-django-auth-ldap
 Version:1.2.6
 Release:0
@@ -28,16 +26,14 @@
 Group:  Development/Languages/Python
 Source: 
https://pypi.python.org/packages/source/d/django-auth-ldap/django-auth-ldap-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
-BuildRequires:  python-setuptools
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  python-rpm-macros
 Requires:   python-django
 Requires:   python-ldap
-%if 0%{?suse_version}
-%py_requires
-%if 0%{?suse_version} > 1110
 BuildArch:  noarch
-%endif
-%endif
+
+%python_subpackages
 
 %description
 This is a Django authentication backend that authenticates against an LDAP 
service.
@@ -48,12 +44,12 @@
 %setup -q -n django-auth-ldap-%{version}
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%python_install
 
-%files
+%files %{python_files}
 %defattr(-,root,root,-)
 %doc CHANGES LICENSE README
 %{python_sitelib}/*




commit python-django-auth-ldap for openSUSE:Factory

2015-04-25 Thread h_root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2015-04-25 09:52:51

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new (New)


Package is python-django-auth-ldap

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2014-10-09 12:52:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new/python-django-auth-ldap.changes
 2015-04-25 11:25:37.0 +0200
@@ -1,0 +2,17 @@
+Thu Apr 23 06:54:50 UTC 2015 - mci...@suse.cz
+
+- Update to 1.2.6:
+  - Performance improvements to group mirroring (from
+`Denver Janke https://bitbucket.org/denverjanke`_).
+  - Add :data:`django_auth_ldap.backend.ldap_error` signal for custom handling 
of
+:exc:`~ldap.LDAPError` exceptions.
+  - Add :data:`django_auth_ldap.backend.LDAPBackend.default_settings` for
+per-subclass default settings.
+  - Fix interaction between :setting:`AUTH_LDAP_AUTHORIZE_ALL_USERS` and
+:setting:`AUTH_LDAP_USER_SEARCH`.
+  - Add support for nisNetgroup groups (thanks to Christopher Bartz).
+  - Fix `#50`_: Improved escaping for filter strings.
+  - Accept (and ignore) arbitrary keyword arguments to
+:meth:`~django_auth_ldap.backend.LDAPBackend.authenticate`.
+
+---

Old:

  django-auth-ldap-1.2.2.tar.gz

New:

  django-auth-ldap-1.2.6.tar.gz



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.mTk6hO/_old  2015-04-25 11:25:37.0 +0200
+++ /var/tmp/diff_new_pack.mTk6hO/_new  2015-04-25 11:25:37.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-auth-ldap
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib(1))}
 
 Name:   python-django-auth-ldap
-Version:1.2.2
+Version:1.2.6
 Release:0
 Url:http://bitbucket.org/psagers/django-auth-ldap/
 Summary:Django LDAP authentication backend

++ django-auth-ldap-1.2.2.tar.gz - django-auth-ldap-1.2.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-1.2.2/CHANGES 
new/django-auth-ldap-1.2.6/CHANGES
--- old/django-auth-ldap-1.2.2/CHANGES  2014-09-22 17:34:33.0 +0200
+++ new/django-auth-ldap-1.2.6/CHANGES  2015-03-29 20:23:50.0 +0200
@@ -1,3 +1,40 @@
+v1.2.6 - 2015-03-29
+---
+
+- Performance improvements to group mirroring (from
+  `Denver Janke https://bitbucket.org/denverjanke`_).
+
+- Add :data:`django_auth_ldap.backend.ldap_error` signal for custom handling of
+  :exc:`~ldap.LDAPError` exceptions.
+
+- Add :data:`django_auth_ldap.backend.LDAPBackend.default_settings` for
+  per-subclass default settings.
+
+
+v1.2.5 - 2015-01-30
+---
+
+- Fix interaction between :setting:`AUTH_LDAP_AUTHORIZE_ALL_USERS` and
+  :setting:`AUTH_LDAP_USER_SEARCH`.
+
+
+v1.2.4 - 2014-12-28
+---
+
+- Add support for nisNetgroup groups (thanks to Christopher Bartz).
+
+
+v1.2.3 - 2014-11-18
+---
+
+- Fix `#50`_: Improved escaping for filter strings.
+
+- Accept (and ignore) arbitrary keyword arguments to
+  :meth:`~django_auth_ldap.backend.LDAPBackend.authenticate`.
+
+.. _#50: https://bitbucket.org/psagers/django-auth-ldap/issue/50/
+
+
 v1.2.2 - 2014-09-22
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-1.2.2/PKG-INFO 
new/django-auth-ldap-1.2.6/PKG-INFO
--- old/django-auth-ldap-1.2.2/PKG-INFO 2014-09-22 17:42:05.0 +0200
+++ new/django-auth-ldap-1.2.6/PKG-INFO 2015-03-29 20:25:36.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: django-auth-ldap
-Version: 1.2.2
+Version: 1.2.6
 Summary: Django LDAP authentication backend
 Home-page: http://bitbucket.org/psagers/django-auth-ldap/
 Author: Peter Sagerson
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-1.2.2/django_auth_ldap/__init__.py 
new/django-auth-ldap-1.2.6/django_auth_ldap/__init__.py
--- old/django-auth-ldap-1.2.2/django_auth_ldap/__init__.py 2014-09-22 
17:33:16.0 +0200
+++ 

commit python-django-auth-ldap for openSUSE:Factory

2014-10-09 Thread h_root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2014-10-09 12:52:22

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new (New)


Package is python-django-auth-ldap

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2014-04-26 10:10:48.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new/python-django-auth-ldap.changes
 2014-10-09 12:52:38.0 +0200
@@ -1,0 +2,8 @@
+Wed Oct  8 12:47:59 UTC 2014 - mci...@suse.cz
+
+- Update to 1.2.2:
+  - Include test harness in source distribution. Some package maintainers find
+this helpful.
+  - More verbose log messages for authentication failures.
+
+---

Old:

  django-auth-ldap-1.2.0.tar.gz

New:

  django-auth-ldap-1.2.2.tar.gz



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.QhUSW1/_old  2014-10-09 12:52:39.0 +0200
+++ /var/tmp/diff_new_pack.QhUSW1/_new  2014-10-09 12:52:39.0 +0200
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib(1))}
 
 Name:   python-django-auth-ldap
-Version:1.2.0
+Version:1.2.2
 Release:0
 Url:http://bitbucket.org/psagers/django-auth-ldap/
 Summary:Django LDAP authentication backend

++ django-auth-ldap-1.2.0.tar.gz - django-auth-ldap-1.2.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-1.2.0/CHANGES 
new/django-auth-ldap-1.2.2/CHANGES
--- old/django-auth-ldap-1.2.0/CHANGES  2014-04-10 17:22:19.0 +0200
+++ new/django-auth-ldap-1.2.2/CHANGES  2014-09-22 17:34:33.0 +0200
@@ -1,3 +1,16 @@
+v1.2.2 - 2014-09-22
+---
+
+- Include test harness in source distribution. Some package maintainers find
+  this helpful.
+
+
+v1.2.1 - 2014-08-24
+---
+
+- More verbose log messages for authentication failures.
+
+
 v1.2 - 2014-04-10
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-1.2.0/MANIFEST.in 
new/django-auth-ldap-1.2.2/MANIFEST.in
--- old/django-auth-ldap-1.2.0/MANIFEST.in  2013-11-17 23:59:53.0 
+0100
+++ new/django-auth-ldap-1.2.2/MANIFEST.in  2014-09-22 17:40:06.0 
+0200
@@ -1,5 +1,7 @@
 include README LICENSE CHANGES
+include tox.ini
 
 recursive-include docs *
+recursive-include test *
 prune docs/build
 global-exclude *.pyc .DS_Store .workon
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-1.2.0/PKG-INFO 
new/django-auth-ldap-1.2.2/PKG-INFO
--- old/django-auth-ldap-1.2.0/PKG-INFO 2014-04-10 17:23:55.0 +0200
+++ new/django-auth-ldap-1.2.2/PKG-INFO 2014-09-22 17:42:05.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: django-auth-ldap
-Version: 1.2.0
+Version: 1.2.2
 Summary: Django LDAP authentication backend
 Home-page: http://bitbucket.org/psagers/django-auth-ldap/
 Author: Peter Sagerson
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-1.2.0/django_auth_ldap/__init__.py 
new/django-auth-ldap-1.2.2/django_auth_ldap/__init__.py
--- old/django-auth-ldap-1.2.0/django_auth_ldap/__init__.py 2014-04-10 
17:23:13.0 +0200
+++ new/django-auth-ldap-1.2.2/django_auth_ldap/__init__.py 2014-09-22 
17:33:16.0 +0200
@@ -1,2 +1,2 @@
-version = (1, 2, 0)
+version = (1, 2, 2)
 version_string = '.'.join(map(str, version))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-1.2.0/django_auth_ldap/backend.py 
new/django-auth-ldap-1.2.2/django_auth_ldap/backend.py
--- old/django-auth-ldap-1.2.0/django_auth_ldap/backend.py  2014-04-10 
17:14:20.0 +0200
+++ new/django-auth-ldap-1.2.2/django_auth_ldap/backend.py  2014-08-24 
17:46:09.0 +0200
@@ -331,7 +331,7 @@
 
 user = self._user
 except self.AuthenticationFailed as e:
-logger.debug(uAuthentication failed for %s % self._username)
+logger.debug(uAuthentication failed for %s: %s % 
(self._username, e))
 except ldap.LDAPError as e:
 logger.warning(uCaught LDAPError while authenticating %s: %s,
self._username, pprint.pformat(e))
@@ -426,14 +426,14 @@
 AuthenticationFailed on failure.
 

commit python-django-auth-ldap for openSUSE:Factory

2014-04-26 Thread h_root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2014-04-26 10:10:46

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new (New)


Package is python-django-auth-ldap

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2014-02-15 08:06:27.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new/python-django-auth-ldap.changes
 2014-04-26 10:10:48.0 +0200
@@ -1,0 +2,8 @@
+Fri Apr 25 09:06:17 UTC 2014 - mci...@suse.cz
+
+- Update to 1.2.0:
+   * django-auth-ldap now provides experimental Python 3 support. Python 2.5
+ was dropped.
+- Use pypi URL as source
+
+---

Old:

  django-auth-ldap-1.1.8.tar.bz2

New:

  django-auth-ldap-1.2.0.tar.gz



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.vmEpQC/_old  2014-04-26 10:10:48.0 +0200
+++ /var/tmp/diff_new_pack.vmEpQC/_new  2014-04-26 10:10:48.0 +0200
@@ -20,13 +20,13 @@
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib(1))}
 
 Name:   python-django-auth-ldap
-Version:1.1.8
+Version:1.2.0
 Release:0
 Url:http://bitbucket.org/psagers/django-auth-ldap/
 Summary:Django LDAP authentication backend
 License:BSD-2-Clause
 Group:  Development/Languages/Python
-Source: django-auth-ldap-%{version}.tar.bz2
+Source: 
https://pypi.python.org/packages/source/d/django-auth-ldap/django-auth-ldap-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-django-auth-ldap for openSUSE:Factory

2014-02-14 Thread h_root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2014-02-15 08:06:26

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new (New)


Package is python-django-auth-ldap

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2013-12-04 19:49:15.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new/python-django-auth-ldap.changes
 2014-02-15 08:06:27.0 +0100
@@ -1,0 +2,12 @@
+Fri Feb 14 07:43:34 UTC 2014 - mci...@suse.cz
+
+- Update to 1.1.8:
+  * Fix #43: Update django_auth_ldap.config.LDAPSearchUnion to work for
+group searches in addition to user searches.
+  * Tox no longer supports Python 2.5, so our tests now run on 2.6 and 2.7 
only.
+  * Bug fix: AUTH_LDAP_GLOBAL_OPTIONS could be ignored in some cases
+(such as django_auth_ldap.backend.LDAPBackend.populate_user.
+  * Fix #41: Support POSIX group permissions with no gidNumber attribute.
+  * Support multiple group DNs for *_FLAGS_BY_GROUP.
+
+---

Old:

  django-auth-ldap-1.1.4.tar.bz2

New:

  django-auth-ldap-1.1.8.tar.bz2



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.TCQtLy/_old  2014-02-15 08:06:28.0 +0100
+++ /var/tmp/diff_new_pack.TCQtLy/_new  2014-02-15 08:06:28.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-auth-ldap
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib(1))}
 
 Name:   python-django-auth-ldap
-Version:1.1.4
+Version:1.1.8
 Release:0
 Url:http://bitbucket.org/psagers/django-auth-ldap/
 Summary:Django LDAP authentication backend
@@ -29,6 +29,7 @@
 Source: django-auth-ldap-%{version}.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
+BuildRequires:  python-setuptools
 Requires:   python-django
 Requires:   python-ldap
 %if 0%{?suse_version}

++ django-auth-ldap-1.1.4.tar.bz2 - django-auth-ldap-1.1.8.tar.bz2 ++
 8147 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-django-auth-ldap for openSUSE:Factory

2013-12-04 Thread h_root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2013-12-04 19:49:14

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new (New)


Package is python-django-auth-ldap

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2013-06-07 07:07:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new/python-django-auth-ldap.changes
 2013-12-04 19:49:15.0 +0100
@@ -1,0 +2,5 @@
+Thu Nov 21 07:49:23 UTC 2013 - mci...@suse.cz
+
+- add missing dependency on python-ldap
+
+---



Other differences:
--
++ python-django-auth-ldap.spec ++
--- /var/tmp/diff_new_pack.WweUD8/_old  2013-12-04 19:49:15.0 +0100
+++ /var/tmp/diff_new_pack.WweUD8/_new  2013-12-04 19:49:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-auth-ldap
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -11,10 +11,11 @@
 # case the license is the MIT License). An Open Source License is a
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
-#
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib(1))}
 
@@ -29,6 +30,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 Requires:   python-django
+Requires:   python-ldap
 %if 0%{?suse_version}
 %py_requires
 %if 0%{?suse_version}  1110
@@ -36,7 +38,6 @@
 %endif
 %endif
 
-
 %description
 This is a Django authentication backend that authenticates against an LDAP 
service.
 Configuration can be as simple as a single distinguished name template, but 
there

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python-django-auth-ldap for openSUSE:Factory

2013-06-06 Thread h_root
Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2013-06-07 07:07:20

Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new (New)


Package is python-django-auth-ldap

Changes:

New Changes file:

--- /dev/null   2013-06-06 00:44:45.792030006 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new/python-django-auth-ldap.changes
 2013-06-07 07:07:21.0 +0200
@@ -0,0 +1,178 @@
+---
+Wed May 15 10:27:23 UTC 2013 - tchatzimic...@suse.com
+
+- Update to 1.1.4:
+  * Add support for Django 1.5's custom user models.
+  * Add %doc files
+
+---
+Mon Jan  7 00:49:46 UTC 2013 - alexan...@exatati.com.br
+
+- Update to 1.1.3:
+  * Fix #33: Reject empty passwords by default.
+Unless AUTH_LDAP_PERMIT_EMPTY_PASSWORD is set to True,
+LDAPBackend.authenticate() will immediately return None if the password is
+empty. This is technically backwards-incompatible, but it's a more secure
+default for those LDAP servers that are configured such that binds without
+passwords always succeed.
+  * Fix #39: Add support for pickling LDAP-authenticated users.
+
+---
+Thu Aug 30 22:18:25 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.1.2:
+  - Sorry, no changelog.
+
+---
+Mon Jul  9 18:51:36 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.1.1:
+  - Sorry, no changelog.
+
+---
+Mon May  7 22:24:54 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.1:
+  - Sorry, no changelog.
+
+---
+Mon Mar 26 15:44:39 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.0.19:
+  - Sorry, no changelog.
+
+---
+Thu Mar 15 23:19:39 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.0.18:
+  - Sorry, no changelog.
+
+---
+Fri Mar  9 15:11:44 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.0.17:
+   - Sorry, no changelog atm.
+
+---
+Sun Feb  5 01:53:32 UTC 2012 - alexan...@exatati.com.br
+
+- Update to 1.0.15:
+  - Sorry, no changelog atm.
+
+---
+Thu Dec 29 23:36:12 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.0.14:
+  - Sorry, no changelog atm.
+
+---
+Thu Dec 15 11:33:49 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.0.13:
+  - Sorry, no changelog atm.
+
+---
+Fri Sep 30 11:29:17 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.0.12:
+  - Sorry, no changelog.
+
+---
+Mon Aug 29 00:55:24 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.0.11:
+  - Sorry, no changelog.
+
+---
+Fri Jun 24 11:16:20 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.0.10:
+  - Sorry, no changelog.
+- Regenerate spec file with py2pack.
+
+---
+Tue Mar 29 12:54:23 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.0.9.
+
+---
+Sun Mar 13 01:55:40 UTC 2011 - alexan...@exatati.com.br
+
+- Update to 1.0.8;
+- Regenerated spec file with py2pack.
+
+---
+Sat Dec  4 09:25:11 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.0.7.
+
+---
+Fri Jul 30 17:36:58 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.0.6.
+
+---
+Tue Jun 22 02:20:46 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.0.5.
+
+---
+Mon Jun  7 01:38:50 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.0.4.
+
+---
+Sat Apr  3 02:45:07 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.0.3;
+- Spec file cleaned with spec-cleaner.
+
+---
+Sun Mar 28 15:27:21 UTC 2010 - alexan...@exatati.com.br
+
+- Update to 1.0.2.
+