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.60) (envelope-from ) id 1PlceG-0006pY-7s for garchives@archives.gentoo.org; Sat, 05 Feb 2011 07:33:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71302E08A2; Sat, 5 Feb 2011 07:33:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3DE3BE08A2 for ; Sat, 5 Feb 2011 07:33:28 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5BEB1B40CC for ; Sat, 5 Feb 2011 07:33:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 233118006A for ; Sat, 5 Feb 2011 07:33:27 +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: 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: a7c3400c1c8022b5b1b00e1d5b871bf902b25f48 Date: Sat, 5 Feb 2011 07:33:27 +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: X-Archives-Hash: e4b1a840572aa190a64401669c8c503a commit: a7c3400c1c8022b5b1b00e1d5b871bf902b25f48 Author: Zac Medico gentoo org> AuthorDate: Sat Feb 5 07:32:54 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Feb 5 07:32:54 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Da7c3400c backtrack_depgraph: get_best_run for last run It's essential to feed back autounmask config changes, especially USE changes, in order to make the last run as successful as possible. This fixes a regression in the master branch, since commit 2186f87c22e0c4bdb86065855c2034bdbb66fa45. --- pym/_emerge/depgraph.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 6e8ca31..c4d84ab 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -5771,7 +5771,8 @@ def _backtrack_depgraph(settings, trees, myopts, my= params, myaction, myfiles, sp =20 mydepgraph =3D depgraph(settings, trees, myopts, myparams, spinner, frozen_config=3Dfrozen_config, - allow_backtracking=3DFalse) + allow_backtracking=3DFalse, + backtrack_parameters=3Dbacktracker.get_best_run()) success, favorites =3D mydepgraph.select_files(myfiles) =20 return (success, mydepgraph, favorites)