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 A16D61389E2 for ; Mon, 15 Dec 2014 03:37:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CEACE097D; Mon, 15 Dec 2014 03:37:13 +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 DA0DDE097D for ; Mon, 15 Dec 2014 03:37:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E6F4E34059D for ; Mon, 15 Dec 2014 03:37:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FE82C752 for ; Mon, 15 Dec 2014 03:37:10 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1418597443.bee778e7fe62c238cb73eae46e762a4fa4afb579.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: bee778e7fe62c238cb73eae46e762a4fa4afb579 X-VCS-Branch: master Date: Mon, 15 Dec 2014 03:37:10 +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: 379e1f56-a465-4d59-a1f3-616b94de574b X-Archives-Hash: cfe3cb82a383130c0a5e337e4308b4e2 commit: bee778e7fe62c238cb73eae46e762a4fa4afb579 Author: Zac Medico gentoo org> AuthorDate: Sun Dec 14 22:50:43 2014 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Dec 14 22:50:43 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=bee778e7 _compute_abi_rebuild_info: fix bug #532594 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