proj/portage:master commit in: lib/_emerge/

"Sam James" <[email protected]> Mon, 03 Aug 2026 18:21:57 +0000 (UTC)
Newsgroups gmane.linux.gentoo.cvs
Message-ID <1785781305.c1caa6a9ebba7b532bb7564fb265b0e574075750.sam@gentoo>
commit:     c1caa6a9ebba7b532bb7564fb265b0e574075750
Author:     Vincent de Phily <vdephily <AT> redhat <DOT> com>
AuthorDate: Sun Apr 19 14:41:27 2026 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug  3 18:21:45 2026 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=c1caa6a9

_emerge/actions.py: Homogenize output format

Signed-off-by: Vincent de Phily <moltonel <AT> gmail.com>
Part-of: https://github.com/gentoo/portage/pull/1575
Closes: https://github.com/gentoo/portage/pull/1575
Signed-off-by: Sam James <sam <AT> gentoo.org>

 lib/_emerge/actions.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/_emerge/actions.py b/lib/_emerge/actions.py
index eaac12b1e..0b2ec77c3 100644
--- a/lib/_emerge/actions.py
+++ b/lib/_emerge/actions.py
@@ -2029,7 +2029,7 @@ def action_info(settings, trees, myopts, myfiles):
     else:
         sh_str = basename
 
-    append(f"sh {sh_str}")
+    append(f"sh: {sh_str}")
 
     try:
         proc = subprocess.Popen(
@@ -2068,7 +2068,7 @@ def action_info(settings, trees, myopts, myfiles):
         else:
             output = proc.communicate()[0].splitlines()
             if proc.wait() == os.EX_OK and output:
-                append(f"ld {output[0]}")
+                append(f"ld: {output[0]}")
                 break
 
     try: