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 1SFuNT-0002bl-CJ for garchives@archives.gentoo.org; Thu, 05 Apr 2012 21:37:59 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3BEB4E0C24; Thu, 5 Apr 2012 21:37:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1020CE0C24 for ; Thu, 5 Apr 2012 21:37:51 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 799161B405E for ; Thu, 5 Apr 2012 21:37:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 43F7FE5403 for ; Thu, 5 Apr 2012 21:37:50 +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: <1333661855.f241cdb50b0f8a448216a1e5155dba8d0abddf56.zmedico@gentoo> 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: f241cdb50b0f8a448216a1e5155dba8d0abddf56 X-VCS-Branch: master Date: Thu, 5 Apr 2012 21:37:50 +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: 1ae72f82-09d9-4538-beac-20c2b7d6d0f0 X-Archives-Hash: a3df2d071f1f2e1eb4ae115dd803df60 commit: f241cdb50b0f8a448216a1e5155dba8d0abddf56 Author: Zac Medico gentoo org> AuthorDate: Thu Apr 5 21:37:35 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Apr 5 21:37:35 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Df241cdb5 depgraph._complete_graph: fix for --root-deps --- pym/_emerge/depgraph.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index e9cb22b..e77c0e8 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -4329,7 +4329,8 @@ class depgraph(object): args =3D self._dynamic_config._initial_arg_list[:] for root in self._frozen_config.roots: if root !=3D self._frozen_config.target_root and \ - "remove" in self._dynamic_config.myparams: + ("remove" in self._dynamic_config.myparams or + self._frozen_config.myopts.get("--root-deps") is not None): # Only pull in deps for the relevant root. continue depgraph_sets =3D self._dynamic_config.sets[root]