aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-11-13 17:49:50 -0500
committerMike Frysinger <vapier@gentoo.org>2014-11-13 17:49:50 -0500
commitc2173483d8505ec8e89baef0266d308494fc2c36 (patch)
treedb3cd5b44deb419bc2eebb025b852fc8e0dd08cf /man/eclean.1
parentrevdep-rebuild.py: Fix recent changes to work with Python 3 (diff)
downloadgentoolkit-c2173483d8505ec8e89baef0266d308494fc2c36.tar.gz
gentoolkit-c2173483d8505ec8e89baef0266d308494fc2c36.tar.bz2
gentoolkit-c2173483d8505ec8e89baef0266d308494fc2c36.zip
eclean: fix typos in man page and line wrap long lines
Diffstat (limited to 'man/eclean.1')
-rw-r--r--man/eclean.122
1 files changed, 15 insertions, 7 deletions
diff --git a/man/eclean.1 b/man/eclean.1
index 4267047..1668b5e 100644
--- a/man/eclean.1
+++ b/man/eclean.1
@@ -21,7 +21,7 @@ whatever may still be useful, for instance to downgrade a package without downlo
its sources for the second time, or to reinstall a package you unmerge by mistake
without recompiling it. Sure, it's also a mode in which your DISTDIR and PKGDIR will
stay rather big (although still not growing infinitely). For the 'distfiles', this
-mode is also quite slow because it requiries some access to the whole Portage tree.
+mode is also quite slow because it requires some access to the whole Portage tree.
.PP
If you use the \-\-deep option, eclean will only protect files corresponding to
some currently installed package (taking their exact version into account). It will
@@ -78,7 +78,7 @@ Units are: y (years), m (months), w (weeks), d (days) and h (hours).
.TP
\fB\-v, \-\-verbose\fP display more verbose messages during processing
.TP
-\fB\-V, \-\-version\fP display version informations
+\fB\-V, \-\-version\fP display version information
.SS "Actions"
.TP
\fBdistfiles\fR
@@ -135,12 +135,12 @@ that do not have an ebuild in the tree or any currently installed overlays.
.IP o
eclean will also inform you of any unavailable installed packages that are on your system as well
as if it was able to locate the source filename(s) in order to protect them. If you want to protect
-all installed distfile sources, run elcelan in pretend mode first. Then check which sources it was
+all installed distfile sources, run eclean in pretend mode first. Then check which sources it was
not able to find the filename(s) for and add entries for them in the distfiles.exclude file before
running eclean again.
.LP
By default, if it exists, /etc/eclean/packages.exclude (resp. distfiles.exclude) will be use
-when action is "packages" (resp. "distfiles"). This can be overide with the \-\-exclude\-file
+when action is "packages" (resp. "distfiles"). This can be override with the \-\-exclude\-file
option.
.SH "EXAMPLES"
.LP
@@ -162,15 +162,23 @@ are less than one month old, bigger than 50MB, or fetch\-restricted:
.B # eclean\-dist \-d \-t1m \-s50M \-f
.LP
From a crontab, silently clean packages in the safest mode, and then distfiles in deep
-mode but protecting files less than a week old, every sunday at 1am:
+mode but protecting files less than a week old, every Sunday at 1am:
.br
.B 0 1 * * sun \ \ eclean \-C \-q packages ; eclean \-C \-q \-d \-t1w distfiles
.SH "NOTE"
.TP
-While running and searching distfiles for cleaning, elcean will report any unavailable packages it finds installed on your system. An unavailable package is a package that is installed on the system, but there is not a corresponding ebuild available. Those sources may not be protected if the SRC_URI is not recorded in the installed package database. The SRC_URI is no longer recorded by recent portage/pkgcore versions.
+While running and searching distfiles for cleaning, eclean will report any
+unavailable packages it finds installed on your system. An unavailable package
+is a package that is installed on the system, but there is not a corresponding
+ebuild available. Those sources may not be protected if the SRC_URI is not
+recorded in the installed package database. The SRC_URI is no longer recorded
+by recent portage/pkgcore versions.
.SH "BUGS"
.".TP
-."The policy used to decide if a distfile can be removed or not relies on the SRC_URI variables ."of ebuilds. It means that if an ebuild uses files that are not part of its SRC_URI, eclean will ."probably remove them. This are ebuilds bugs, please report them as such on ."http://bugs.gentoo.org.
+."The policy used to decide if a distfile can be removed or not relies on the
+SRC_URI variables ."of ebuilds. It means that if an ebuild uses files that are
+not part of its SRC_URI, eclean will ."probably remove them. This are ebuilds
+bugs, please report them as such on ."http://bugs.gentoo.org.
.".TP
."In safest mode (default, without the \-\-deep option), this script can be very slow. There
."is not much to do about it without hacking outside of the portage API.