Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-paramiko-expect for openSUSE:Factory checked in at 2023-05-10 16:19:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-paramiko-expect (Old) and /work/SRC/openSUSE:Factory/.python-paramiko-expect.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-paramiko-expect" Wed May 10 16:19:40 2023 rev:6 rq:1085966 version:0.3.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-paramiko-expect/python-paramiko-expect.changes 2022-10-14 15:42:06.119874586 +0200 +++ /work/SRC/openSUSE:Factory/.python-paramiko-expect.new.1533/python-paramiko-expect.changes 2023-05-10 16:19:40.847385107 +0200 @@ -1,0 +2,7 @@ +Wed May 10 06:17:44 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 0.3.5: + * use license from tarball + * add term option to SSHClientInteraction and use to call invoke_shell + +------------------------------------------------------------------- Old: ---- LICENSE paramiko-expect-0.3.4.tar.gz New: ---- paramiko-expect-0.3.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-paramiko-expect.spec ++++++ --- /var/tmp/diff_new_pack.YzW4tf/_old 2023-05-10 16:19:41.339388017 +0200 +++ /var/tmp/diff_new_pack.YzW4tf/_new 2023-05-10 16:19:41.347388065 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-paramiko-expect # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,13 +19,12 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-paramiko-expect -Version: 0.3.4 +Version: 0.3.5 Release: 0 Summary: An expect-like extension for the Paramiko SSH library License: MIT URL: https://github.com/fgimian/paramiko-expect Source: https://files.pythonhosted.org/packages/source/p/paramiko-expect/paramiko-expect-%{version}.tar.gz -Source1: https://raw.githubusercontent.com/fgimian/paramiko-expect/master/LICENSE BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -47,7 +46,6 @@ %prep %setup -q -n paramiko-expect-%{version} -cp %{SOURCE1} . %build %python_build ++++++ paramiko-expect-0.3.4.tar.gz -> paramiko-expect-0.3.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/paramiko-expect-0.3.4/PKG-INFO new/paramiko-expect-0.3.5/PKG-INFO --- old/paramiko-expect-0.3.4/PKG-INFO 2022-09-19 20:26:16.785066100 +0200 +++ new/paramiko-expect-0.3.5/PKG-INFO 2022-11-19 21:21:04.000895500 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: paramiko-expect -Version: 0.3.4 +Version: 0.3.5 Summary: An expect-like extension for the Paramiko SSH library Home-page: https://github.com/fgimian/paramiko-expect Author: Fotis Gimian diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/paramiko-expect-0.3.4/paramiko_expect.egg-info/PKG-INFO new/paramiko-expect-0.3.5/paramiko_expect.egg-info/PKG-INFO --- old/paramiko-expect-0.3.4/paramiko_expect.egg-info/PKG-INFO 2022-09-19 20:26:16.000000000 +0200 +++ new/paramiko-expect-0.3.5/paramiko_expect.egg-info/PKG-INFO 2022-11-19 21:21:03.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: paramiko-expect -Version: 0.3.4 +Version: 0.3.5 Summary: An expect-like extension for the Paramiko SSH library Home-page: https://github.com/fgimian/paramiko-expect Author: Fotis Gimian diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/paramiko-expect-0.3.4/paramiko_expect.py new/paramiko-expect-0.3.5/paramiko_expect.py --- old/paramiko-expect-0.3.4/paramiko_expect.py 2022-09-19 20:21:34.000000000 +0200 +++ new/paramiko-expect-0.3.5/paramiko_expect.py 2022-11-19 21:15:49.000000000 +0100 @@ -60,14 +60,15 @@ :param encoding: The character encoding to use. :param lines_to_check: The number of last few lines of the output to look at, while matching regular expression(s) + :param term: terminal type used with invoke shell """ def __init__( self, client, timeout=60, newline='\r', buffer_size=1024, display=False, encoding='utf-8', output_callback=default_output_func, - tty_width=80, tty_height=24, lines_to_check=1 + tty_width=80, tty_height=24, lines_to_check=1, term='vt100' ): - self.channel = client.invoke_shell(width=tty_width, height=tty_height) + self.channel = client.invoke_shell(term=term, width=tty_width, height=tty_height) self.timeout = timeout self.newline = newline self.buffer_size = buffer_size diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/paramiko-expect-0.3.4/setup.py new/paramiko-expect-0.3.5/setup.py --- old/paramiko-expect-0.3.4/setup.py 2022-09-19 20:22:14.000000000 +0200 +++ new/paramiko-expect-0.3.5/setup.py 2022-11-19 21:16:12.000000000 +0100 @@ -8,7 +8,7 @@ setup( name='paramiko-expect', - version='0.3.4', + version='0.3.5', url='https://github.com/fgimian/paramiko-expect', license='MIT', author='Fotis Gimian',