Hello community,

here is the log from the commit of package python-paramiko for openSUSE:Factory 
checked in at 2018-11-18 23:21:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-paramiko (Old)
 and      /work/SRC/openSUSE:Factory/.python-paramiko.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-paramiko"

Sun Nov 18 23:21:24 2018 rev:40 rq:648723 version:2.4.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-paramiko/python-paramiko.changes  
2018-10-15 10:05:18.493931742 +0200
+++ /work/SRC/openSUSE:Factory/.python-paramiko.new/python-paramiko.changes     
2018-11-18 23:21:24.826262644 +0100
@@ -1,0 +2,5 @@
+Tue Nov 13 11:47:43 UTC 2018 - Ondřej Súkup <mimi...@gmail.com>
+
+- add disable-gssapi.patch - workaround for boo#1115769
+
+-------------------------------------------------------------------

New:
----
  disable-gssapi.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-paramiko.spec ++++++
--- /var/tmp/diff_new_pack.dpQ5ds/_old  2018-11-18 23:21:25.174262265 +0100
+++ /var/tmp/diff_new_pack.dpQ5ds/_new  2018-11-18 23:21:25.174262265 +0100
@@ -29,6 +29,7 @@
 # certificates needed by testsuite
 Source1:        cert_support.tar.gz
 Patch0:         paramiko-test_extend_timeout.patch
+Patch1:         disable-gssapi.patch
 BuildRequires:  %{python_module PyNaCl >= 1.0.1}
 BuildRequires:  %{python_module bcrypt >= 3.1.3}
 BuildRequires:  %{python_module cryptography >= 1.1}
@@ -71,6 +72,7 @@
 %prep
 %setup -q -n paramiko-%{version}
 %patch0 -p1
+%patch1 -p1
 # Fix non-executable script rpmlint issue:
 find demos -name "*.py" -exec sed -i "/#\!\/usr\/bin\/.*/d" {} \;
 tar xvzf %{SOURCE1} -C tests/

++++++ disable-gssapi.patch ++++++
Index: paramiko-2.4.2/paramiko/ssh_gss.py
===================================================================
--- paramiko-2.4.2.orig/paramiko/ssh_gss.py
+++ paramiko-2.4.2/paramiko/ssh_gss.py
@@ -53,7 +53,7 @@ try:
     import gssapi
 
     GSS_EXCEPTIONS = (gssapi.GSSException,)
-except (ImportError, OSError):
+except (ImportError, OSError, AttributeError):
     try:
         import pywintypes
         import sspicon

Reply via email to