Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-argcomplete for openSUSE:Factory checked in at 2023-06-03 00:06:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-argcomplete (Old) and /work/SRC/openSUSE:Factory/.python-argcomplete.new.15902 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-argcomplete" Sat Jun 3 00:06:30 2023 rev:25 rq:1090044 version:3.0.8 Changes: -------- --- /work/SRC/openSUSE:Factory/python-argcomplete/python-argcomplete.changes 2023-05-09 13:06:51.928852293 +0200 +++ /work/SRC/openSUSE:Factory/.python-argcomplete.new.15902/python-argcomplete.changes 2023-06-03 00:06:37.661777781 +0200 @@ -1,0 +2,5 @@ +Tue May 30 16:02:49 UTC 2023 - Andreas Schwab <sch...@suse.de> + +- bash-repl.patch: Use correct place for auxiliary bashrc.sh file from pexpect + +------------------------------------------------------------------- New: ---- bash-repl.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-argcomplete.spec ++++++ --- /var/tmp/diff_new_pack.8T7pl8/_old 2023-06-03 00:06:38.285781466 +0200 +++ /var/tmp/diff_new_pack.8T7pl8/_new 2023-06-03 00:06:38.289781490 +0200 @@ -30,6 +30,8 @@ Patch1: trim-test-deps.patch # Don't fail the test suite when zsh is not available Patch2: without_zsh.patch +# Use correct place for auxiliary bashrc.sh file from pexpect +Patch3: bash-repl.patch BuildRequires: %{python_module coverage} BuildRequires: %{python_module pexpect} BuildRequires: %{python_module pip} ++++++ bash-repl.patch ++++++ Index: argcomplete-3.0.8/test/test.py =================================================================== --- argcomplete-3.0.8.orig/test/test.py +++ argcomplete-3.0.8/test/test.py @@ -65,7 +65,7 @@ def _repl_sh(command, args, non_printabl def bash_repl(command="bash"): - bashrc = os.path.join(os.path.dirname(pexpect.__file__), "replwrap", "bashrc.sh") + bashrc = os.path.join(os.path.dirname(pexpect.__file__), "bashrc.sh") sh = _repl_sh(command, ["--rcfile", bashrc], non_printable_insert="\\[\\]") return sh