From: Zac Medico Date: Mon, 24 Nov 2008 02:20:49 +0000 (-0000) Subject: Add back the --depclean warning about "link level dependencies" since the X-Git-Tag: v2.1.6_rc1~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=34a5449d4fcaf702623f1eba23c3a8d6a72a20c7;p=portage.git Add back the --depclean warning about "link level dependencies" since the 2.1.6 branch doesn't have lib awareness. svn path=/main/branches/2.1.6/; revision=12074 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index ff24576b2..9e0867197 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -12088,6 +12088,10 @@ def action_depclean(settings, trees, ldpath_mtimes, allow_missing_deps = len(myfiles) > 0 msg = [] + msg.append("Depclean may break link level dependencies. Thus, it is\n") + msg.append("recommended to use a tool such as " + good("`revdep-rebuild`") + " (from\n") + msg.append("app-portage/gentoolkit) in order to detect such breakage.\n") + msg.append("\n") msg.append("Always study the list of packages to be cleaned for any obvious\n") msg.append("mistakes. Packages that are part of the world set will always\n") msg.append("be kept. They can be manually added to this set with\n")