Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-aexpect for openSUSE:Factory 
checked in at 2022-01-10 23:53:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-aexpect (Old)
 and      /work/SRC/openSUSE:Factory/.python-aexpect.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-aexpect"

Mon Jan 10 23:53:00 2022 rev:4 rq:945165 version:1.6.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-aexpect/python-aexpect.changes    
2021-08-18 08:56:49.246910786 +0200
+++ /work/SRC/openSUSE:Factory/.python-aexpect.new.1892/python-aexpect.changes  
2022-01-10 23:53:06.056777916 +0100
@@ -1,0 +2,8 @@
+Mon Jan 10 01:14:20 UTC 2022 - Steve Kowalik <steven.kowa...@suse.com>
+
+- Update to 1.6.4:
+  * No changelog available.
+- Refresh helper-version-in-cmdline.patch.
+- Add missing {Build,}Requires on six. 
+
+-------------------------------------------------------------------

Old:
----
  aexpect-1.6.2.tar.gz

New:
----
  aexpect-1.6.4.tar.gz

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

Other differences:
------------------
++++++ python-aexpect.spec ++++++
--- /var/tmp/diff_new_pack.VT03Yj/_old  2022-01-10 23:53:06.804778572 +0100
+++ /var/tmp/diff_new_pack.VT03Yj/_new  2022-01-10 23:53:06.808778575 +0100
@@ -1,7 +1,7 @@
 #
 # spec file
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %define         skip_python2 1
 %global         pkgname aexpect
 Name:           python-%{pkgname}
-Version:        1.6.2
+Version:        1.6.4
 Release:        0
 Summary:        Python library to control interactive applications
 License:        GPL-2.0-only
@@ -30,10 +30,12 @@
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  %{python_module six}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires(post): update-alternatives
 Requires(postun):update-alternatives
+Requires:       python-six
 BuildArch:      noarch
 %python_subpackages
 

++++++ aexpect-1.6.2.tar.gz -> aexpect-1.6.4.tar.gz ++++++
++++ 2074 lines of diff (skipped)

++++++ helper-version-in-cmdline.patch ++++++
--- /var/tmp/diff_new_pack.VT03Yj/_old  2022-01-10 23:53:06.880778638 +0100
+++ /var/tmp/diff_new_pack.VT03Yj/_new  2022-01-10 23:53:06.884778642 +0100
@@ -1,7 +1,7 @@
-Index: aexpect-1.6.2/aexpect/client.py
+Index: aexpect-1.6.4/aexpect/client.py
 ===================================================================
---- aexpect-1.6.2.orig/aexpect/client.py
-+++ aexpect-1.6.2/aexpect/client.py
+--- aexpect-1.6.4.orig/aexpect/client.py
++++ aexpect-1.6.4/aexpect/client.py
 @@ -25,6 +25,7 @@ import threading
  import shutil
  import select
@@ -10,14 +10,14 @@
  import locale
  import logging
  
-@@ -178,7 +179,8 @@ class Spawn(object):
+@@ -179,7 +180,8 @@ class Spawn:
  
          # Start the server (which runs the command)
          if command:
 -            helper_cmd = utils_path.find_command('aexpect_helper')
 +            minor = sys.version_info.minor
-+            helper_cmd = utils_path.find_command('aexpect_helper-3.%s' % 
minor)
-             self._aexpect_helper = subprocess.Popen([helper_cmd],   # pylint: 
disable=R1732
++            helper_cmd = utils_path.find_command(f'aexpect_helper-3.{minor}')
+             self._aexpect_helper = subprocess.Popen([helper_cmd],  # pylint: 
disable=R1732
                                                      shell=True,
                                                      stdin=subprocess.PIPE,
 

Reply via email to