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 84636158089 for ; Sat, 11 Nov 2023 07:23:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 725802BC01B; Sat, 11 Nov 2023 07:23:23 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F3032BC01A for ; Sat, 11 Nov 2023 07:23:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3FEEF335D60 for ; Sat, 11 Nov 2023 07:23:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 818FDD5E for ; Sat, 11 Nov 2023 07:23:20 +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: <1699687388.37ee6ef700f4512999dc2e3bd8fcd8a8d9d36315.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: lib/_emerge/Package.py X-VCS-Directories: lib/_emerge/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 37ee6ef700f4512999dc2e3bd8fcd8a8d9d36315 X-VCS-Branch: master Date: Sat, 11 Nov 2023 07:23:20 +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: 5b1cc059-4ba8-4f42-9c02-f11c8c332f61 X-Archives-Hash: fd17290da9c9455c14b11ce1267de387 commit: 37ee6ef700f4512999dc2e3bd8fcd8a8d9d36315 Author: Sam James gentoo org> AuthorDate: Sat Nov 11 03:03:29 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 11 07:23:08 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=37ee6ef7 _emerge: fix _eval_visiblity typo Signed-off-by: Sam James gentoo.org> lib/_emerge/Package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/_emerge/Package.py b/lib/_emerge/Package.py index 873edbf81d..79011380d5 100644 --- a/lib/_emerge/Package.py +++ b/lib/_emerge/Package.py @@ -222,7 +222,7 @@ class Package(Task): @property def visible(self): if self._visible is None: - self._visible = self._eval_visiblity(self.masks) + self._visible = self._eval_visibility(self.masks) return self._visible @property @@ -473,7 +473,7 @@ class Package(Task): return masks - def _eval_visiblity(self, masks): + def _eval_visibility(self, masks): if masks is not False: if "EAPI.unsupported" in masks: return False