Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-scp for openSUSE:Factory 
checked in at 2022-01-04 19:37:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-scp (Old)
 and      /work/SRC/openSUSE:Factory/.python-scp.new.1896 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-scp"

Tue Jan  4 19:37:39 2022 rev:10 rq:943598 version:0.14.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-scp/python-scp.changes    2021-11-01 
18:36:05.757348944 +0100
+++ /work/SRC/openSUSE:Factory/.python-scp.new.1896/python-scp.changes  
2022-01-04 19:37:50.277957406 +0100
@@ -1,0 +2,6 @@
+Mon Jan  3 12:34:19 UTC 2022 - Dirk M??ller <[email protected]>
+
+- update to 0.14.2:
+  * Don't fail if the remote path is a PurePath not a Path
+
+-------------------------------------------------------------------

Old:
----
  scp-0.14.1.tar.gz

New:
----
  scp-0.14.2.tar.gz

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

Other differences:
------------------
++++++ python-scp.spec ++++++
--- /var/tmp/diff_new_pack.iWUh6X/_old  2022-01-04 19:37:50.877958190 +0100
+++ /var/tmp/diff_new_pack.iWUh6X/_new  2022-01-04 19:37:50.881958196 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-scp
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 # Copyright (c) 2017-2021, Martin Hauke <[email protected]>
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,7 +19,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-scp
-Version:        0.14.1
+Version:        0.14.2
 Release:        0
 Summary:        SSH scp module for paramiko
 License:        LGPL-2.1-or-later

++++++ scp-0.14.1.tar.gz -> scp-0.14.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scp.py-0.14.1/CHANGELOG.md 
new/scp.py-0.14.2/CHANGELOG.md
--- old/scp.py-0.14.1/CHANGELOG.md      2021-09-10 19:13:50.000000000 +0200
+++ new/scp.py-0.14.2/CHANGELOG.md      2021-12-15 15:59:16.000000000 +0100
@@ -1,5 +1,9 @@
 # Changelog
 
+## 0.14.2 (2021-12-15)
+
+- Don't fail if the remote path is a PurePath not a Path
+
 ## 0.14.1 (2021-09-10)
 
 - Don't fail if 'pathlib' doesn't import (Python 2)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scp.py-0.14.1/README.rst new/scp.py-0.14.2/README.rst
--- old/scp.py-0.14.1/README.rst        2021-09-10 19:13:50.000000000 +0200
+++ new/scp.py-0.14.2/README.rst        2021-12-15 15:59:16.000000000 +0100
@@ -1,7 +1,7 @@
 Pure python scp module
 ======================
 
-The scp.py module uses a paramiko transport to send and recieve files via the
+The scp.py module uses a paramiko transport to send and receive files via the
 scp1 protocol. This is the protocol as referenced from the openssh scp program,
 and has only been tested with this implementation.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scp.py-0.14.1/scp.py new/scp.py-0.14.2/scp.py
--- old/scp.py-0.14.1/scp.py    2021-09-10 19:13:50.000000000 +0200
+++ new/scp.py-0.14.2/scp.py    2021-12-15 15:59:16.000000000 +0100
@@ -5,7 +5,7 @@
 Utilities for sending files over ssh using the scp1 protocol.
 """
 
-__version__ = '0.14.1'
+__version__ = '0.14.2'
 
 import locale
 import os
@@ -53,7 +53,7 @@
     """
     if isinstance(s, bytes):
         return s
-    elif pathlib and isinstance(s, pathlib.Path):
+    elif pathlib and isinstance(s, pathlib.PurePath):
         return bytes(s)
     else:
         return s.encode('utf-8')
@@ -402,7 +402,7 @@
             # wait for command as long as we're open
             self.channel.sendall('\x00')
             msg = self.channel.recv(1024)
-            if not msg:  # chan closed while recving
+            if not msg:  # chan closed while receiving
                 break
             assert msg[-1:] == b'\n'
             msg = msg[:-1]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scp.py-0.14.1/setup.py new/scp.py-0.14.2/setup.py
--- old/scp.py-0.14.1/setup.py  2021-09-10 19:13:50.000000000 +0200
+++ new/scp.py-0.14.2/setup.py  2021-12-15 15:59:16.000000000 +0100
@@ -10,7 +10,7 @@
     description = fp.read()
 setup(
         name = 'scp',
-        version = '0.14.1',
+        version = '0.14.2',
         author = 'James Bardin',
         author_email = '[email protected]',
         maintainer="Remi Rampin",

Reply via email to