From: Zac Medico Date: Wed, 9 Apr 2008 20:50:26 +0000 (-0000) Subject: To avoid false positives during the transition X-Git-Tag: v2.1.5~217 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2b4b77b67851e9a6de1852de6c080a55f97d0336;p=portage.git To avoid false positives during the transition period, don't show ? if the installed package is missing a repository label. Stages starting with 2008.0 will come with repository labels. svn path=/main/branches/2.1.2/; revision=9783 --- diff --git a/bin/emerge b/bin/emerge index ccfaf5844..cbaf1cd1d 100755 --- a/bin/emerge +++ b/bin/emerge @@ -4012,7 +4012,13 @@ class depgraph(object): if repo_name_prev: repo_path_prev = portdb.getRepositoryPath( repo_name_prev) - if repo_path_prev == repo_path_real: + # To avoid false positives during the transition + # period, don't show ? if the installed package + # is missing a repository label. Stages starting + # with 2008.0 will come with repository labels. + ignore_missing_labels = True + if (ignore_missing_labels and not repo_path_prev) or \ + repo_path_prev == repo_path_real: repoadd = repo_display.repoStr(repo_path_real) else: repoadd = "%s=>%s" % (