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 D38D61389E2 for ; Sun, 14 Dec 2014 22:51:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13202E0971; Sun, 14 Dec 2014 22:51:42 +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 9CEB9E096E for ; Sun, 14 Dec 2014 22:51:41 +0000 (UTC) Received: from localhost.localdomain (ip70-181-96-121.oc.oc.cox.net [70.181.96.121]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: zmedico) by smtp.gentoo.org (Postfix) with ESMTPSA id 6FE193405EE; Sun, 14 Dec 2014 22:51:40 +0000 (UTC) From: Zac Medico To: gentoo-portage-dev@lists.gentoo.org Cc: Zac Medico Subject: [gentoo-portage-dev] [PATCH] _compute_abi_rebuild_info: fix bug #532594 Date: Sun, 14 Dec 2014 14:51:15 -0800 Message-Id: <1418597475-21044-1-git-send-email-zmedico@gentoo.org> X-Mailer: git-send-email 2.0.4 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-portage-dev@lists.gentoo.org Reply-to: gentoo-portage-dev@lists.gentoo.org X-Archives-Salt: 8c9edbe8-f1e4-43e4-8104-dd3a127e47e7 X-Archives-Hash: 57f40339d400539f70ef69cd11bc0249 Since commit 3f0799054b4e5ef88feb59d20d262668ca79df33, there has been a faulty variable assignment inside _compute_abi_rebuild_info which assigns a bool value to the inst_pkg variable which is intended to refer to a Package instance. Fix it to assign a correct value. Fixes: 3f0799054b4e ("_compute_abi_rebuild_info: fix bug #521990") X-Gentoo-Bug: 532594 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=532594 --- 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 4a42ed5..fcc1a90 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -713,7 +713,7 @@ class depgraph(object): if child is None: continue - inst_child = dep.child.installed + inst_child = dep.child else: child = dep.child -- 2.0.4