From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B811B158094 for ; Sat, 13 Aug 2022 17:56:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A335E0798; Sat, 13 Aug 2022 17:56:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 93792E0798 for ; Sat, 13 Aug 2022 17:56:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F1D9340E4D for ; Sat, 13 Aug 2022 17:56:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 103CC326 for ; Sat, 13 Aug 2022 17:56:24 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1660413370.bb820e4a38cefdb552d02b1d6bcb97eccab38982.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: lib/_emerge/EbuildPhase.py X-VCS-Directories: lib/_emerge/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: bb820e4a38cefdb552d02b1d6bcb97eccab38982 X-VCS-Branch: master Date: Sat, 13 Aug 2022 17:56:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 823a980b-5544-470b-b011-2e4f9dfbe6aa X-Archives-Hash: 7b6da7c9be53e980cdd7c51408af7a45 commit: bb820e4a38cefdb552d02b1d6bcb97eccab38982 Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Mon Aug 8 11:24:48 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Aug 13 17:56:10 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=bb820e4a EbuildPhase: add SLOT to package version line Requested as a useful part in the output from tinderbox runs. Bug: https://bugs.gentoo.org/864382 Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> Closes: https://github.com/gentoo/portage/pull/885 Signed-off-by: Sam James gentoo.org> lib/_emerge/EbuildPhase.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/_emerge/EbuildPhase.py b/lib/_emerge/EbuildPhase.py index 9a04f9c1f..a1eaf86c1 100644 --- a/lib/_emerge/EbuildPhase.py +++ b/lib/_emerge/EbuildPhase.py @@ -135,7 +135,9 @@ class EbuildPhase(CompositeTask): maint_str = "" msg = [] - msg.append("Package: %s" % self.settings.mycpv) + msg.append( + "Package: %s:%s" % (self.settings.mycpv, self.settings["SLOT"]) + ) if self.settings.get("PORTAGE_REPO_NAME"): msg.append("Repository: %s" % self.settings["PORTAGE_REPO_NAME"]) if maint_str: