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.77) (envelope-from ) id 1SojGr-0002IP-WE for garchives@archives.gentoo.org; Tue, 10 Jul 2012 22:51:06 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31092E08A0; Tue, 10 Jul 2012 22:50:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 01E40E08A0 for ; Tue, 10 Jul 2012 22:50:47 +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 72EF81B4017 for ; Tue, 10 Jul 2012 22:50:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3C9E2E5433 for ; Tue, 10 Jul 2012 22:50:46 +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: <1341960636.fdda543b51dde02483a40b9f867a35fc3521a135.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: fdda543b51dde02483a40b9f867a35fc3521a135 X-VCS-Branch: master Date: Tue, 10 Jul 2012 22:50:46 +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: 06d3bee6-7c9e-42c5-9059-5af70a303ca3 X-Archives-Hash: bb114de81111f2fda2eae7d9bd5cd716 commit: fdda543b51dde02483a40b9f867a35fc3521a135 Author: Zac Medico gentoo org> AuthorDate: Tue Jul 10 22:50:36 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Jul 10 22:50:36 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dfdda543b Fix --complete-graph-if-new-use for --autounmask. --- 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 703720c..552d578 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -4679,8 +4679,8 @@ class depgraph(object): # to use.mask/force changes in the profile. if complete_if_new_use and \ (node.iuse.all !=3D inst_pkg.iuse.all or - node.use.enabled.intersection(node.iuse.all) !=3D - inst_pkg.use.enabled.intersection(inst_pkg.iuse.all)): + self._pkg_use_enabled(node).intersection(node.iuse.all) !=3D + self._pkg_use_enabled(inst_pkg).intersection(inst_pkg.iuse.all)): use_change =3D True break =20