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 CEBFB158094 for ; Mon, 18 Jul 2022 18:47:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C431E0AE7; Mon, 18 Jul 2022 18:47:44 +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 EA54FE0AE7 for ; Mon, 18 Jul 2022 18:47:43 +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 02904340D5D for ; Mon, 18 Jul 2022 18:47:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABBC8456 for ; Mon, 18 Jul 2022 18:47:41 +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: <1658170057.b3ddadeb9bc0d1cfadcde8c7abfc2cb2d7f545fc.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/_global_updates.py X-VCS-Directories: lib/portage/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b3ddadeb9bc0d1cfadcde8c7abfc2cb2d7f545fc X-VCS-Branch: master Date: Mon, 18 Jul 2022 18:47:41 +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: 21a99fa1-5c71-46ab-aa71-e53e356258d4 X-Archives-Hash: 19f521447d2295191d32b462791a5cb6 commit: b3ddadeb9bc0d1cfadcde8c7abfc2cb2d7f545fc Author: Sam James gentoo org> AuthorDate: Fri Jul 15 10:31:59 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jul 18 18:47:37 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b3ddadeb portage: drop obsolete fixpackages warning 18e5a8170c69aecd10f162918de571d85055ae81 exposed this but the support for fixpackages actually got removed in 7ab4d5722a828167dd1bf946b26cfa80808f59fc. The "if True" construct was just intended as a way of stubbing out the old stuff. Let's just drop the cruft instead. This fixes giving a completely harmless "fixpackages error" which is meaningless. See: https://forums.gentoo.org/viewtopic-t-1152818.html Bug: https://bugs.gentoo.org/858407 Signed-off-by: Sam James gentoo.org> Closes: https://github.com/gentoo/portage/pull/856 Signed-off-by: Sam James gentoo.org> lib/portage/_global_updates.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/portage/_global_updates.py b/lib/portage/_global_updates.py index 59e0b263e..05c13920f 100644 --- a/lib/portage/_global_updates.py +++ b/lib/portage/_global_updates.py @@ -261,13 +261,4 @@ def _do_global_updates(trees, prev_mtimes, quiet=False, if_mtime_changed=True): # what follows. writemsg_stdout("\n\n") - if bindb and bindb.cpv_all(): - writemsg_stdout( - _( - " ** Skipping packages. Run 'fixpackages' or set it in FEATURES to fix the tbz2's in the packages directory.\n" - ) - ) - writemsg_stdout(bold(_("Note: This can take a very long time."))) - writemsg_stdout("\n") - return retupd