summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-13 18:38:50 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-13 18:38:50 +0000
commit6a2fa8f0d5fa1d1a25b6fecfdd450307d0b91415 (patch)
tree94f39311247b69276e2457d317554eaff36e29c9 /pym/_emerge
parentb524939cd01e6a907ee96eb78872c93dd77458e4 (diff)
downloadportage-6a2fa8f0d5fa1d1a25b6fecfdd450307d0b91415.tar.gz
portage-6a2fa8f0d5fa1d1a25b6fecfdd450307d0b91415.tar.bz2
portage-6a2fa8f0d5fa1d1a25b6fecfdd450307d0b91415.zip
Update docs to not prefix system and world sets with the @ symbol.
svn path=/main/branches/2.1.6/; revision=11885
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/__init__.py2
-rw-r--r--pym/_emerge/help.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py
index 00f963a93..75b9bbe75 100644
--- a/pym/_emerge/__init__.py
+++ b/pym/_emerge/__init__.py
@@ -12036,7 +12036,7 @@ def action_depclean(settings, trees, ldpath_mtimes,
msg.append("unless *all* required dependencies have been resolved. As a\n")
msg.append("consequence, it is often necessary to run %s\n" % \
good("`emerge --update"))
- msg.append(good("--newuse --deep @system @world`") + \
+ msg.append(good("--newuse --deep world`") + \
" prior to depclean.\n")
if action == "depclean" and "--quiet" not in myopts and not myfiles:
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index 05a9803c9..1dd17df68 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -69,8 +69,8 @@ def help(myaction,myopts,havecolor=1):
paragraph = "Cleans the system by removing packages that are " + \
"not associated with explicitly merged packages. Depclean works " + \
- "by creating the full dependency tree from the @system and " + \
- "@world sets, then comparing it to installed packages. Packages " + \
+ "by creating the full dependency tree from the system and " + \
+ "world sets, then comparing it to installed packages. Packages " + \
"installed, but not part of the dependency tree, will be " + \
"uninstalled by depclean. See --with-bdeps for behavior with " + \
"respect to build time dependencies that are not strictly " + \
@@ -79,7 +79,7 @@ def help(myaction,myopts,havecolor=1):
"emerge --noreplace <atom>. As a safety measure, depclean " + \
"will not remove any packages unless *all* required dependencies " + \
"have been resolved. As a consequence, it is often necessary to " + \
- "run emerge --update --newuse --deep @system @world " + \
+ "run emerge --update --newuse --deep world " + \
"prior to depclean."
for line in wrap(paragraph, desc_width):