From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1348192-garchives=archives.gentoo.org@lists.gentoo.org>
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 C1469158086
	for <garchives@archives.gentoo.org>; Sat, 11 Dec 2021 02:54:14 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 7FE2FE07C5;
	Sat, 11 Dec 2021 02:54:13 +0000 (UTC)
Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id AA4D7E0101
	for <gentoo-commits@lists.gentoo.org>; Sat, 11 Dec 2021 02:54:12 +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) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id C3DC8343065
	for <gentoo-commits@lists.gentoo.org>; Sat, 11 Dec 2021 02:54:10 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A362A5
	for <gentoo-commits@lists.gentoo.org>; Sat, 11 Dec 2021 02:54:09 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1639191239.80a90acd3da4f24df4d6f66b070c785616c1ee34.sam@gentoo>
Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/package/ebuild/
X-VCS-Repository: proj/portage
X-VCS-Files: lib/portage/package/ebuild/doebuild.py
X-VCS-Directories: lib/portage/package/ebuild/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 80a90acd3da4f24df4d6f66b070c785616c1ee34
X-VCS-Branch: master
Date: Sat, 11 Dec 2021 02:54:09 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: eef88b8e-ded8-4a6c-9624-1d867e55b643
X-Archives-Hash: 89cfb4cff705acea908c91f8f2111ac4

commit:     80a90acd3da4f24df4d6f66b070c785616c1ee34
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 10 22:50:05 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 11 02:53:59 2021 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=80a90acd

lib/portage/package/ebuild/doebuild.py: fix undefined self

Fixes: 98a8a4af2c77477c327b22621b8a0aed6d15f574
Signed-off-by: Sam James <sam <AT> gentoo.org>

 lib/portage/package/ebuild/doebuild.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/package/ebuild/doebuild.py b/lib/portage/package/ebuild/doebuild.py
index 34720c7c6..0ff64e275 100644
--- a/lib/portage/package/ebuild/doebuild.py
+++ b/lib/portage/package/ebuild/doebuild.py
@@ -3096,7 +3096,7 @@ def _post_src_install_soname_symlinks(mysettings, out):
             f.write(soname_deps.provides)
     else:
         if check_dyn_libs_inconsistent(image_dir, soname_deps.provides):
-            self._writemsg_level(
+            portage.util._writemsg_level(
                 colorize(
                     "BAD",
                     "!!! Error! Installing dynamic libraries (.so) with blank PROVIDES!",