Hello community,
here is the log from the commit of package python-pure-sasl for
openSUSE:Factory checked in at 2019-10-22 15:45:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pure-sasl (Old)
and /work/SRC/openSUSE:Factory/.python-pure-sasl.new.2352 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pure-sasl"
Tue Oct 22 15:45:27 2019 rev:6 rq:741632 version:0.6.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pure-sasl/python-pure-sasl.changes
2019-02-24 17:20:24.300397063 +0100
+++
/work/SRC/openSUSE:Factory/.python-pure-sasl.new.2352/python-pure-sasl.changes
2019-10-22 15:45:28.673718921 +0200
@@ -1,0 +2,6 @@
+Mon Oct 21 23:24:32 UTC 2019 - Martin Herkt <[email protected]>
+
+- Update to 0.6.2
+ * Fix GSSAPI wrapping using in Python 3
+
+-------------------------------------------------------------------
Old:
----
pure-sasl-0.6.1.tar.gz
New:
----
pure-sasl-0.6.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pure-sasl.spec ++++++
--- /var/tmp/diff_new_pack.fKaCB3/_old 2019-10-22 15:45:29.329719668 +0200
+++ /var/tmp/diff_new_pack.fKaCB3/_new 2019-10-22 15:45:29.345719687 +0200
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-pure-sasl
-Version: 0.6.1
+Version: 0.6.2
Release: 0
Summary: Pure Python client SASL implementation
License: MIT
++++++ pure-sasl-0.6.1.tar.gz -> pure-sasl-0.6.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pure-sasl-0.6.1/CHANGES.rst
new/pure-sasl-0.6.2/CHANGES.rst
--- old/pure-sasl-0.6.1/CHANGES.rst 2019-02-21 22:49:12.000000000 +0100
+++ new/pure-sasl-0.6.2/CHANGES.rst 2019-10-14 23:40:23.000000000 +0200
@@ -1,3 +1,10 @@
+0.6.2
+=====
+October 14th, 2019
+
+* Fix GSSAPI wrapping using in Python 3 (#31)
+* Remove Python 2.6 from testing matrix
+
0.6.1
=====
February 21st, 2019
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pure-sasl-0.6.1/PKG-INFO new/pure-sasl-0.6.2/PKG-INFO
--- old/pure-sasl-0.6.1/PKG-INFO 2019-02-21 22:52:32.000000000 +0100
+++ new/pure-sasl-0.6.2/PKG-INFO 2019-10-14 23:43:53.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: pure-sasl
-Version: 0.6.1
+Version: 0.6.2
Summary: Pure Python client SASL implementation
Home-page: http://github.com/thobbs/pure-sasl
Author: Tyler Hobbs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pure-sasl-0.6.1/pure_sasl.egg-info/PKG-INFO
new/pure-sasl-0.6.2/pure_sasl.egg-info/PKG-INFO
--- old/pure-sasl-0.6.1/pure_sasl.egg-info/PKG-INFO 2019-02-21
22:52:32.000000000 +0100
+++ new/pure-sasl-0.6.2/pure_sasl.egg-info/PKG-INFO 2019-10-14
23:43:53.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: pure-sasl
-Version: 0.6.1
+Version: 0.6.2
Summary: Pure Python client SASL implementation
Home-page: http://github.com/thobbs/pure-sasl
Author: Tyler Hobbs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pure-sasl-0.6.1/puresasl/__init__.py
new/pure-sasl-0.6.2/puresasl/__init__.py
--- old/pure-sasl-0.6.1/puresasl/__init__.py 2019-02-21 22:49:58.000000000
+0100
+++ new/pure-sasl-0.6.2/puresasl/__init__.py 2019-10-14 23:40:47.000000000
+0200
@@ -1,5 +1,5 @@
-__version__ = '0.6.1'
-__version_info__ = (0, 6, 1)
+__version__ = '0.6.2'
+__version_info__ = (0, 6, 2)
class SASLError(Exception):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pure-sasl-0.6.1/puresasl/mechanisms.py
new/pure-sasl-0.6.2/puresasl/mechanisms.py
--- old/pure-sasl-0.6.1/puresasl/mechanisms.py 2019-02-21 21:11:00.000000000
+0100
+++ new/pure-sasl-0.6.2/puresasl/mechanisms.py 2019-10-14 23:38:05.000000000
+0200
@@ -562,7 +562,7 @@
protect = 1
else:
protect = 0
- kerberos.authGSSClientWrap(self.context, outgoing, None, protect)
+ kerberos.authGSSClientWrap(self.context, outgoing.decode('utf8'),
None, protect)
return
base64.b64decode(kerberos.authGSSClientResponse(self.context))
else:
return outgoing