Take the -c option and make it mean --depclean instead of --clean, since
authorZac Medico <zmedico@gentoo.org>
Mon, 26 Oct 2009 19:36:27 +0000 (19:36 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 26 Oct 2009 19:36:27 +0000 (19:36 -0000)
--clean is pretty useless anyway.

svn path=/main/trunk/; revision=14731

man/emerge.1
pym/_emerge/help.py
pym/_emerge/main.py

index 8e40818d0094305b0807cb28bc349bc7f2b211d9..523c3197bed6894dddbaef58306db1402b465c31 100644 (file)
@@ -93,7 +93,7 @@ option if you want to install a tbz2\fR.  The packages are added
 to the \fBworld\fR file at the end, so that they are considered for
 later updating.
 .TP
-.BR "\-\-clean " (\fB\-c\fR)
+.BR \-\-clean
 Cleans up the system by examining the installed packages and removing older
 packages.  This is accomplished by looking at each installed package and separating
 the installed versions by \fBslot\fR.  Clean will \fBremove all but the most recently
@@ -105,7 +105,7 @@ Run package specific actions needed to be executed after the emerge process
 has completed.  This usually entails configuration file setup or other similar 
 setups that the user may wish to run.
 .TP
-.BR "\-\-depclean (-R)"
+.BR "\-\-depclean (-c)"
 Cleans the system by removing packages that are not associated
 with explicitly merged packages. Depclean works by creating the
 full dependency tree from the @world set,
index 7d7fe7792f9a4fdf630467835ca3026f19c3c98a..94dc17218bb48a31fd445c832ed91f3f6a3a123a 100644 (file)
@@ -14,7 +14,7 @@ def shorthelp():
        print("   "+turquoise("emerge")+" < "+turquoise("--sync")+" | "+turquoise("--metadata")+" | "+turquoise("--info")+" >")
        print("   "+turquoise("emerge")+" "+turquoise("--resume")+" [ "+green("--pretend")+" | "+green("--ask")+" | "+green("--skipfirst")+" ]")
        print("   "+turquoise("emerge")+" "+turquoise("--help")+" [ "+green("--verbose")+" ] ")
-       print(bold("Options:")+" "+green("-")+"["+green("abBcCdDefgGhjkKlnNoOpPqrRsStuvV")+"]")
+       print(bold("Options:")+" "+green("-")+"["+green("abBcCdDefgGhjkKlnNoOpPqrsStuvV")+"]")
        print("          [ " + green("--color")+" < " + turquoise("y") + " | "+ turquoise("n")+" >            ] [ "+green("--columns")+"    ]")
        print("          [ "+green("--complete-graph")+"             ] [ "+green("--deep")+"       ]")
        print("          [ "+green("--jobs") + " " + turquoise("JOBS")+" ] [ "+green("--keep-going")+" ] [ " + green("--load-average")+" " + turquoise("LOAD") + "            ]")
@@ -42,7 +42,7 @@ def help(myopts, havecolor=1):
                print("              emerge to display detailed help.")
                print()
                print(turquoise("Actions:"))
-               print("       "+green("--clean")+" ("+green("-c")+" short option)")
+               print("       "+green("--clean"))
                print("              Cleans the system by removing outdated packages which will not")
                print("              remove functionalities or prevent your system from working.")
                print("              The arguments can be in several different formats :")
@@ -66,7 +66,7 @@ def help(myopts, havecolor=1):
                print("              emerge process has completed.  This usually entails configuration")
                print("              file setup or other similar setups that the user may wish to run.")
                print()
-               print("       "+green("--depclean")+" ("+green("-R")+" short option)")
+               print("       "+green("--depclean")+" ("+green("-c")+" short option)")
 
                paragraph = "Cleans the system by removing packages that are " + \
                "not associated with explicitly merged packages. Depclean works " + \
index f8cb7677700d266d0a762fc0dbb647d4c998fdb5..71872112ed1fa27446eb9973f1b59a4fbaec4589 100644 (file)
@@ -76,7 +76,8 @@ shortmapping={
 "1":"--oneshot",
 "a":"--ask",
 "b":"--buildpkg",  "B":"--buildpkgonly",
-"c":"--clean",     "C":"--unmerge",
+"c":"--depclean",
+"C":"--unmerge",
 "d":"--debug",
 "e":"--emptytree",
 "f":"--fetchonly", "F":"--fetch-all-uri",
@@ -87,7 +88,6 @@ shortmapping={
 "p":"--pretend",   "P":"--prune",
 "q":"--quiet",
 "r":"--resume",
-"R":"--depclean",
 "s":"--search",    "S":"--searchdesc",
 "t":"--tree",
 "u":"--update",