summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Stubbs <jstubbs@gentoo.org>2005-11-13 00:27:44 +0000
committerJason Stubbs <jstubbs@gentoo.org>2005-11-13 00:27:44 +0000
commitb4dc76637c89a8382654efb64835e9930da6d67d (patch)
tree37711b44b787b058eba30467498ffe03eefac5ca
parent83a88f299ec4fa89eb2cac14960cc89833cf9c12 (diff)
downloadportage-b4dc76637c89a8382654efb64835e9930da6d67d.tar.gz
portage-b4dc76637c89a8382654efb64835e9930da6d67d.tar.bz2
portage-b4dc76637c89a8382654efb64835e9930da6d67d.zip
Recreated 2.0.53 branch and added documentation for `emerge --config`
and a description to `emaint --help` svn path=/main/branches/2.0.53/; revision=2300
-rwxr-xr-xbin/emaint7
-rw-r--r--man/emerge.154
-rw-r--r--pym/emergehelp.py5
3 files changed, 38 insertions, 28 deletions
diff --git a/bin/emaint b/bin/emaint
index 7f991d9b0..b5508652d 100755
--- a/bin/emaint
+++ b/bin/emaint
@@ -66,6 +66,12 @@ def exclusive(option, unused1, unused2, unused3, var=None):
usage = "usage: emaint [options] " + " | ".join(module_names)
+
+usage+= "\n\nCurrently emaint can only check and fix problems with one's world\n"
+usage+= "file. Future versions will integrate other portage check-and-fix\n"
+usage+= "tools and provide a single interface to system health checks."
+
+
parser = OptionParser(usage=usage)
parser.add_option("-c", "--check", help="check for problems",
action="callback", callback=exclusive, callback_kwargs={"var":"action"})
@@ -109,3 +115,4 @@ for task in tasks:
print "\n".join(result)
print "\n"
+print "Finished"
diff --git a/man/emerge.1 b/man/emerge.1
index ada61a98d..3623e1c1f 100644
--- a/man/emerge.1
+++ b/man/emerge.1
@@ -157,6 +157,11 @@ all matching packages. This does no checking of dependencies, so
it may remove packages necessary for the proper operation of your
system. Its arguments can be \fIebuilds\fR, \fIclasses\fR, or
\fIdependencies\fR \-\- see \fB\-\-clean\fR above for examples.
+.TP
+.BR "\-\-config "
+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.
.SH "OPTIONS"
.TP
.BR "\-\-ask " (\fB\-a\fR)
@@ -486,17 +491,16 @@ Please report any bugs you encounter through our website:
.LP
Please include the output of \fBemerge \-\-info\fR when you submit your
bug report.
-.SH "SEE ALSO"
-.BR "emerge \-\-help",
-.BR ebuild (1),
-.BR ebuild (5),
-.BR make.conf (5),
-.BR portage (5)
-.LP
-A number of helper applications reside in \fI/usr/lib/portage/bin\fR.
-.LP
-The \fBapp\-portage/gentoolkit\fR package contains useful scripts such as
-\fBequery\fR (a package query tool).
+.SH "AUTHORS"
+.nf
+Daniel Robbins <drobbins@gentoo.org>
+Geert Bevin <gbevin@gentoo.org>
+Achim Gottinger <achim@gentoo.org>
+Nicholas Jones <carpaski@gentoo.org>
+Phil Bordelon <phil@thenexusproject.org>
+Mike Frysinger <vapier@gentoo.org>
+Marius Mauch <genone@gentoo.org>
+.fi
.SH "FILES"
.TP
\fB/var/lib/portage/world\fR
@@ -536,20 +540,14 @@ and \fBworld\fR classes consult this file. \fBDo not edit this file\fR.
\fB/etc/make.globals\fR
Contains the default variables for the build process. \fBDo not edit
this file\fR.
-.SH "AUTHORS"
-Daniel Robbins <drobbins@gentoo.org>
-.br
-Geert Bevin <gbevin@gentoo.org>
-.br
-Achim Gottinger <achim@gentoo.org>
-.br
-Nicholas Jones <carpaski@gentoo.org>
-.br
-Phil Bordelon <phil@thenexusproject.org>
-.br
-Mike Frysinger <vapier@gentoo.org>
-.br
-Marius Mauch <genone@gentoo.org>
-.br
-.SH "CVS HEADER"
-$Id: /var/cvsroot/gentoo-src/portage/man/emerge.1,v 1.70.2.15 2005/08/20 03:56:50 vapier Exp $
+.SH "SEE ALSO"
+.BR "emerge \-\-help",
+.BR ebuild (1),
+.BR ebuild (5),
+.BR make.conf (5),
+.BR portage (5)
+.LP
+A number of helper applications reside in \fI/usr/lib/portage/bin\fR.
+.LP
+The \fBapp\-portage/gentoolkit\fR package contains useful scripts such as
+\fBequery\fR (a package query tool).
diff --git a/pym/emergehelp.py b/pym/emergehelp.py
index ed88eac03..19b30a6c5 100644
--- a/pym/emergehelp.py
+++ b/pym/emergehelp.py
@@ -113,6 +113,11 @@ def help(myaction,myopts,havecolor=1):
print " your system. Specify arguments using the dependency specification"
print " format described in the "+bold("--clean")+" action above."
print
+ print " "+green("--config")
+ print " Run package specific actions needed to be executed after the"
+ 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 turquoise("Options:")
print " "+green("--ask")+" ("+green("-a")+" short option)"
print " before performing the merge, display what ebuilds and tbz2s will"