From 2b4b77b67851e9a6de1852de6c080a55f97d0336 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 9 Apr 2008 20:50:26 +0000 Subject: 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 --- bin/emerge | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'bin') 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" % ( -- cgit v1.2.3-1-g7c22