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 A3AD2158008 for ; Wed, 14 Jun 2023 05:06:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0FFCE08AB; Wed, 14 Jun 2023 05:06:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C7F28E08AB for ; Wed, 14 Jun 2023 05:06:37 +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 C03BE33BE6C for ; Wed, 14 Jun 2023 05:06:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BE59A8B for ; Wed, 14 Jun 2023 05:06:35 +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: <1686719185.a5b4eb5a69be4b0abe0c0ee682c40f1881be084f.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: lib/_emerge/depgraph.py X-VCS-Directories: lib/_emerge/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a5b4eb5a69be4b0abe0c0ee682c40f1881be084f X-VCS-Branch: master Date: Wed, 14 Jun 2023 05:06:35 +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: cd64da2c-4ba8-4d76-98b1-d5f9a42ca4e7 X-Archives-Hash: 3fa8675e0ecf43318858e5f9f62a3297 commit: a5b4eb5a69be4b0abe0c0ee682c40f1881be084f Author: Sam James gentoo org> AuthorDate: Wed Jun 14 05:06:25 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 14 05:06:25 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a5b4eb5a depgraph: drop unnecessary spinner import Signed-off-by: Sam James gentoo.org> lib/_emerge/depgraph.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/_emerge/depgraph.py b/lib/_emerge/depgraph.py index 94a4fff3e..77133e99c 100644 --- a/lib/_emerge/depgraph.py +++ b/lib/_emerge/depgraph.py @@ -102,7 +102,6 @@ from _emerge.resolver.output import Display, format_unmatched_atom # Type annotation imports from typing import Any, Optional, Dict, List, Tuple, Union -from _emerge.stdout_spinner import stdout_spinner # Exposes a depgraph interface to dep_check. _dep_check_graph_interface = collections.namedtuple( @@ -11396,7 +11395,7 @@ def backtrack_depgraph( myparams: Dict[str, Union[int, str, bool]], myaction: Optional[str], myfiles: List[str], - spinner: stdout_spinner, + spinner: "_emerge.stdout_spinner.stdout_spinner", ) -> Tuple[Any, depgraph, List[str]]: """ @@ -11418,7 +11417,7 @@ def _backtrack_depgraph( myparams: Dict[str, Union[int, str, bool]], myaction: Optional[str], myfiles: List[str], - spinner: stdout_spinner, + spinner: "_emerge.stdout_spinner.stdout_spinner", ) -> Tuple[Any, depgraph, List[str]]: debug = "--debug" in myopts mydepgraph = None @@ -11521,7 +11520,7 @@ def resume_depgraph( mtimedb: Any, myopts: Dict[str, str], myparams: Dict[str, Any], - spinner: stdout_spinner, + spinner: "_emerge.stdout_spinner.stdout_spinner", ): """ Raises PackageSetNotFound if myfiles contains a missing package set. @@ -11539,7 +11538,7 @@ def _resume_depgraph( mtimedb: Any, myopts: Dict[str, str], myparams: Dict[str, Any], - spinner: stdout_spinner, + spinner: "_emerge.stdout_spinner.stdout_spinner", ): """ Construct a depgraph for the given resume list. This will raise