Hello community, here is the log from the commit of package python-ldap for openSUSE:Factory checked in at 2017-02-09 11:18:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-ldap (Old) and /work/SRC/openSUSE:Factory/.python-ldap.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ldap" Changes: -------- --- /work/SRC/openSUSE:Factory/python-ldap/python-ldap.changes 2017-02-03 18:57:46.874304914 +0100 +++ /work/SRC/openSUSE:Factory/.python-ldap.new/python-ldap.changes 2017-02-09 11:18:33.494097843 +0100 @@ -1,0 +2,6 @@ +Wed Feb 8 09:52:17 UTC 2017 - [email protected] + +- Update to upstream release 2.4.30 + (with compability fix for pyasn1 0.2.x) + +------------------------------------------------------------------- Old: ---- python-ldap-2.4.29.tar.gz python-ldap-2.4.29.tar.gz.asc New: ---- python-ldap-2.4.30.tar.gz python-ldap-2.4.30.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-ldap.spec ++++++ --- /var/tmp/diff_new_pack.KQNsv3/_old 2017-02-09 11:18:33.942034462 +0100 +++ /var/tmp/diff_new_pack.KQNsv3/_new 2017-02-09 11:18:33.942034462 +0100 @@ -17,7 +17,7 @@ Name: python-ldap -Version: 2.4.29 +Version: 2.4.30 Release: 0 Summary: Python LDAP interface License: Python-2.0 ++++++ python-ldap-2.4.29.tar.gz -> python-ldap-2.4.30.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-ldap-2.4.29/CHANGES new/python-ldap-2.4.30/CHANGES --- old/python-ldap-2.4.29/CHANGES 2017-01-25 20:44:01.000000000 +0100 +++ new/python-ldap-2.4.30/CHANGES 2017-02-08 10:45:16.000000000 +0100 @@ -1,4 +1,13 @@ ---------------------------------------------------------------- +Released 2.4.30 2017-02-08 + +Changes since 2.4.29: + +Lib/ +* compability fix in ldap.controls.deref to be compatible to + recent pyasn1 0.2.x (thanks to Ilya Etingof) + +---------------------------------------------------------------- Released 2.4.29 2017-01-25 Changes since 2.4.28: @@ -1307,4 +1316,4 @@ ---------------------------------------------------------------- Released 1.10alpha3 2000-09-19 -$Id: CHANGES,v 1.402 2017/01/25 19:43:39 stroeder Exp $ +$Id: CHANGES,v 1.403 2017/02/08 09:44:18 stroeder Exp $ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-ldap-2.4.29/Lib/dsml.py new/python-ldap-2.4.30/Lib/dsml.py --- old/python-ldap-2.4.29/Lib/dsml.py 2017-01-06 16:22:28.000000000 +0100 +++ new/python-ldap-2.4.30/Lib/dsml.py 2017-02-08 10:45:16.000000000 +0100 @@ -4,13 +4,13 @@ See http://www.python-ldap.org/ for details. -$Id: dsml.py,v 1.46 2017/01/06 15:07:57 stroeder Exp $ +$Id: dsml.py,v 1.47 2017/02/08 09:44:18 stroeder Exp $ Python compability note: Tested with Python 2.0+. """ -__version__ = '2.4.29' +__version__ = '2.4.30' import string,base64 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-ldap-2.4.29/Lib/ldap/__init__.py new/python-ldap-2.4.30/Lib/ldap/__init__.py --- old/python-ldap-2.4.29/Lib/ldap/__init__.py 2017-01-06 16:22:28.000000000 +0100 +++ new/python-ldap-2.4.30/Lib/ldap/__init__.py 2017-02-08 10:45:16.000000000 +0100 @@ -3,12 +3,12 @@ See http://www.python-ldap.org/ for details. -$Id: __init__.py,v 1.107 2017/01/06 15:07:57 stroeder Exp $ +$Id: __init__.py,v 1.108 2017/02/08 09:44:18 stroeder Exp $ """ # This is also the overall release version number -__version__ = '2.4.29' +__version__ = '2.4.30' import sys diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-ldap-2.4.29/Lib/ldap/controls/deref.py new/python-ldap-2.4.30/Lib/ldap/controls/deref.py --- old/python-ldap-2.4.29/Lib/ldap/controls/deref.py 2015-09-19 15:41:01.000000000 +0200 +++ new/python-ldap-2.4.30/Lib/ldap/controls/deref.py 2017-02-08 10:45:16.000000000 +0100 @@ -5,7 +5,7 @@ See http://www.python-ldap.org/ for project details. -$Id: deref.py,v 1.2 2015/09/19 13:41:01 stroeder Exp $ +$Id: deref.py,v 1.3 2017/02/08 09:44:18 stroeder Exp $ """ __all__ = [ @@ -108,15 +108,14 @@ decodedValue,_ = decoder.decode(encodedControlValue,asn1Spec=DerefResultControlValue()) self.derefRes = {} for deref_res in decodedValue: - deref_attr,deref_val,deref_vals = deref_res + deref_attr,deref_val,deref_vals = deref_res[0],deref_res[1],deref_res[2] partial_attrs_dict = dict([ - (str(t),map(str,v)) - for t,v in deref_vals or [] + (str(tv[0]),map(str,tv[1])) + for tv in deref_vals or [] ]) try: self.derefRes[str(deref_attr)].append((str(deref_val),partial_attrs_dict)) except KeyError: self.derefRes[str(deref_attr)] = [(str(deref_val),partial_attrs_dict)] - KNOWN_RESPONSE_CONTROLS[DereferenceControl.controlType] = DereferenceControl diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-ldap-2.4.29/Lib/ldapurl.py new/python-ldap-2.4.30/Lib/ldapurl.py --- old/python-ldap-2.4.29/Lib/ldapurl.py 2017-01-06 16:22:28.000000000 +0100 +++ new/python-ldap-2.4.30/Lib/ldapurl.py 2017-02-08 10:45:16.000000000 +0100 @@ -3,7 +3,7 @@ See http://www.python-ldap.org/ for details. -\$Id: ldapurl.py,v 1.82 2017/01/06 15:07:57 stroeder Exp $ +\$Id: ldapurl.py,v 1.83 2017/02/08 09:44:18 stroeder Exp $ Python compability note: This module only works with Python 2.0+ since @@ -11,7 +11,7 @@ 2. list comprehensions are used. """ -__version__ = '2.4.29' +__version__ = '2.4.30' __all__ = [ # constants diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-ldap-2.4.29/Lib/ldif.py new/python-ldap-2.4.30/Lib/ldif.py --- old/python-ldap-2.4.29/Lib/ldif.py 2017-01-06 16:22:28.000000000 +0100 +++ new/python-ldap-2.4.30/Lib/ldif.py 2017-02-08 10:45:16.000000000 +0100 @@ -3,13 +3,13 @@ See http://www.python-ldap.org/ for details. -$Id: ldif.py,v 1.102 2017/01/06 15:07:57 stroeder Exp $ +$Id: ldif.py,v 1.103 2017/02/08 09:44:18 stroeder Exp $ Python compability note: Tested with Python 2.0+, but should work with Python 1.5.2+. """ -__version__ = '2.4.29' +__version__ = '2.4.30' __all__ = [ # constants diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-ldap-2.4.29/Lib/python_ldap.egg-info/PKG-INFO new/python-ldap-2.4.30/Lib/python_ldap.egg-info/PKG-INFO --- old/python-ldap-2.4.29/Lib/python_ldap.egg-info/PKG-INFO 2017-01-25 21:00:23.000000000 +0100 +++ new/python-ldap-2.4.30/Lib/python_ldap.egg-info/PKG-INFO 2017-02-08 10:45:44.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: python-ldap -Version: 2.4.29 +Version: 2.4.30 Summary: Python modules for implementing LDAP clients Home-page: https://www.python-ldap.org/ Author: python-ldap project diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-ldap-2.4.29/PKG-INFO new/python-ldap-2.4.30/PKG-INFO --- old/python-ldap-2.4.29/PKG-INFO 2017-01-25 21:00:23.000000000 +0100 +++ new/python-ldap-2.4.30/PKG-INFO 2017-02-08 10:45:44.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: python-ldap -Version: 2.4.29 +Version: 2.4.30 Summary: Python modules for implementing LDAP clients Home-page: https://www.python-ldap.org/ Author: python-ldap project
