From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A596F1391DB for ; Mon, 24 Mar 2014 18:28:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F268E0A96; Mon, 24 Mar 2014 18:28:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF326E0A87 for ; Mon, 24 Mar 2014 18:28:31 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CFCFF33FB60 for ; Mon, 24 Mar 2014 18:28:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id F0A26188F3 for ; Mon, 24 Mar 2014 18:28:28 +0000 (UTC) From: "Sebastian Luther" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Luther" Message-ID: <1395681646.a2b43472c6686def6ff92251fdfa8487acd03051.few@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: few X-VCS-Committer-Name: Sebastian Luther X-VCS-Revision: a2b43472c6686def6ff92251fdfa8487acd03051 X-VCS-Branch: master Date: Mon, 24 Mar 2014 18:28:28 +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-Archives-Salt: fff17867-c8b1-45d4-b735-030d777d99a0 X-Archives-Hash: a005cd61a01e7ff511fda524f05aa638 commit: a2b43472c6686def6ff92251fdfa8487acd03051 Author: Sebastian Luther gmx de> AuthorDate: Mon Mar 24 17:20:46 2014 +0000 Commit: Sebastian Luther gmx de > CommitDate: Mon Mar 24 17:20:46 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=a2b43472 _compute_abi_rebuild_info: deal with non-Package parents --- pym/_emerge/depgraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index f27e855..abb70a7 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -643,7 +643,7 @@ class depgraph(object): rebuild_atoms = atoms.get(root, set()) for dep in deps: - if dep.parent.installed or dep.child.installed or \ + if getattr(dep.parent, "installed", False) or dep.child.installed or \ dep.parent.slot_atom not in rebuild_atoms: continue