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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3CFBC158091 for ; Sun, 12 Jun 2022 18:25:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6DD15E086C; Sun, 12 Jun 2022 18:25:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4DC09E086C for ; Sun, 12 Jun 2022 18:25:43 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 757A4341709 for ; Sun, 12 Jun 2022 18:25:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D97801E for ; Sun, 12 Jun 2022 18:25:40 +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: <1655058333.e0c1a5badef219cc2247c0fd6548776e753c073b.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/config.py 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: e0c1a5badef219cc2247c0fd6548776e753c073b X-VCS-Branch: master Date: Sun, 12 Jun 2022 18:25:40 +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: 82f18a75-19c8-4d97-acb9-1a22e047c694 X-Archives-Hash: 95e5ca5ca035ffdc63b014c56d9705d0 commit: e0c1a5badef219cc2247c0fd6548776e753c073b Author: Rin Cat (鈴猫) protonmail com> AuthorDate: Sun Jun 12 18:18:07 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 12 18:25:33 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e0c1a5ba Fix variable typo Signed-off-by: Sheng Yu protonmail.com> Closes: https://github.com/gentoo/portage/pull/839 Signed-off-by: Sam James gentoo.org> lib/portage/package/ebuild/config.py | 2 +- lib/portage/package/ebuild/doebuild.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/portage/package/ebuild/config.py b/lib/portage/package/ebuild/config.py index f35fcdf65..49a906559 100644 --- a/lib/portage/package/ebuild/config.py +++ b/lib/portage/package/ebuild/config.py @@ -1510,7 +1510,7 @@ class config: if binpkg_format not in SUPPORTED_GENTOO_BINPKG_FORMATS: writemsg( "!!! BINPKG_FORMAT contains invalid or " - "unsupported format: %s" % binpkg_fotmat, + "unsupported format: %s" % binpkg_format, noiselevel=-1, ) diff --git a/lib/portage/package/ebuild/doebuild.py b/lib/portage/package/ebuild/doebuild.py index 2251cdb8d..8ee9f73c6 100644 --- a/lib/portage/package/ebuild/doebuild.py +++ b/lib/portage/package/ebuild/doebuild.py @@ -647,7 +647,7 @@ def doebuild_environment( if binpkg_format not in portage.const.SUPPORTED_GENTOO_BINPKG_FORMATS: writemsg( "!!! BINPKG_FORMAT contains invalid or " - "unsupported format: %s" % binpkg_fotmat, + "unsupported format: %s" % binpkg_format, noiselevel=-1, ) binpkg_format = "xpak"