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 46419198005 for ; Sat, 2 Mar 2013 02:55:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C754CE044C; Sat, 2 Mar 2013 02:55:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5BE31E044C for ; Sat, 2 Mar 2013 02:55:49 +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 68A4333DBD9 for ; Sat, 2 Mar 2013 02:55:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A508BE41E2 for ; Sat, 2 Mar 2013 02:55:45 +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: <1362192925.d2fd1695b569ee8f6cf91dc012e4c0c7796ebe81.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: d2fd1695b569ee8f6cf91dc012e4c0c7796ebe81 X-VCS-Branch: master Date: Sat, 2 Mar 2013 02:55:45 +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: 992deee2-45ee-44ef-9213-ce5b69ffe631 X-Archives-Hash: b0a428db425f742a91073ea870293cb6 commit: d2fd1695b569ee8f6cf91dc012e4c0c7796ebe81 Author: Zac Medico gentoo org> AuthorDate: Sat Mar 2 02:55:25 2013 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Mar 2 02:55:25 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d2fd1695 depgraph._set_args: fix atom_arg_map for refs > 1 Due to an indentation error, atom_arg_map only preserved a single set reference, preventing slot-operator rebuilds from triggering for atoms that were also pulled in via another set such as world. --- pym/_emerge/depgraph.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 7e51d03..dddada0 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -3123,8 +3123,8 @@ class depgraph(object): if refs is None: refs = [] atom_arg_map[atom_key] = refs - if arg not in refs: - refs.append(arg) + if arg not in refs: + refs.append(arg) for root in self._dynamic_config.sets: depgraph_sets = self._dynamic_config.sets[root]