Update docs to not prefix system and world sets with the @ symbol.
authorZac Medico <zmedico@gentoo.org>
Thu, 13 Nov 2008 18:38:50 +0000 (18:38 -0000)
committerZac Medico <zmedico@gentoo.org>
Thu, 13 Nov 2008 18:38:50 +0000 (18:38 -0000)
svn path=/main/branches/2.1.6/; revision=11885

man/emerge.1
man/portage.5
pym/_emerge/__init__.py
pym/_emerge/help.py

index 4b8363eeb032ef38a4ea6e8ae5bc3e4ae1fb8022..6209832e7d9ad1fbee16a93f08efa0d9b6ffd179 100644 (file)
@@ -105,7 +105,7 @@ setups that the user may wish to run.
 .BR \-\-depclean
 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,
+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 \fB\-\-with\-bdeps\fR for behavior with respect to build time dependencies
@@ -114,7 +114,7 @@ always be kept. They can be manually added to this set with \fIemerge
 \-\-noreplace <atom>\fR. 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 \fIemerge \-\-update \-\-newuse
-\-\-deep @system @world\fR prior to depclean. 
+\-\-deep world\fR prior to depclean. 
 
 \fBWARNING:\fR
 Inexperienced users are advised to use \fB\-\-pretend\fR with this
index 986d6a626b6224de78e0e0a899435e274423a91e..016eaabe66badd6e989dc50ea31f60d8eaa83873 100644 (file)
@@ -737,16 +737,6 @@ games\-misc/fortune\-mod\-gentoo\-dev
 dev\-libs/uclibc
 app\-cdr/cdemu
 .fi
-.TP
-.BR world_sets
-This is like the world file but instead of package atoms it contains
-packages sets which always begin with the @ character.
-
-.I Example:
-.nf
-@system
-.fi
-.RE
 .SH "REPORTING BUGS"
 Please report bugs via http://bugs.gentoo.org/
 .SH "AUTHORS"
index 00f963a93dd97802e7c51a65e8c163084ebee3c1..75b9bbe7506b0c738157eeb8fd9111f0c5e71b13 100644 (file)
@@ -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:
index 05a9803c929e8bbfb6c4910332b9a4d3e43ea652..1dd17df68fd9f4bea06662978bc037c8a1239fa2 100644 (file)
@@ -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):