From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QVEPe-00041V-SA for garchives@archives.gentoo.org; Sat, 11 Jun 2011 02:59:02 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB44D1C002; Sat, 11 Jun 2011 02:58:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 74A3F1C002 for ; Sat, 11 Jun 2011 02:58:55 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EF50A1B4031 for ; Sat, 11 Jun 2011 02:58:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 562018003C for ; Sat, 11 Jun 2011 02:58:54 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/depgraph.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: c1ea850b40d48ac1610e203f517b008e6461865f Date: Sat, 11 Jun 2011 02:58:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 3dee25073423e6221286a528fa8eb3cc commit: c1ea850b40d48ac1610e203f517b008e6461865f Author: Zac Medico gentoo org> AuthorDate: Sat Jun 11 02:58:33 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Jun 11 02:58:33 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dc1ea850b depgraph._serialize_tasks: tweak last commit more --- pym/_emerge/depgraph.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 13152a7..baa40c4 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -5033,10 +5033,10 @@ class depgraph(object): continue # Make sure that we haven't selected a large runtime # cycle that is obviously sub-optimal. This will be - # obvious if any of selected_nodes is a leaf node - # when medium_soft deps are ignored. + # obvious if any of the non-asap selected_nodes is + # a leaf node when medium_soft deps are ignored. if len(selected_nodes) > 1: - for node in selected_nodes: + for node in selected_nodes.difference(asap_nodes): if not mygraph.child_nodes(node, ignore_priority =3D DepPriorityNormalRange.ignore_medium_soft):