summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/__init__.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-24 02:20:49 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-24 02:20:49 +0000
commit34a5449d4fcaf702623f1eba23c3a8d6a72a20c7 (patch)
tree41fe92b37216d0e2db016829e2e41d955b6c2480 /pym/_emerge/__init__.py
parentf85428042974bbd95c920e0dd7a52f72630494cf (diff)
downloadportage-34a5449d4fcaf702623f1eba23c3a8d6a72a20c7.tar.gz
portage-34a5449d4fcaf702623f1eba23c3a8d6a72a20c7.tar.bz2
portage-34a5449d4fcaf702623f1eba23c3a8d6a72a20c7.zip
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
Diffstat (limited to 'pym/_emerge/__init__.py')
-rw-r--r--pym/_emerge/__init__.py4
1 files changed, 4 insertions, 0 deletions
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")