Redirect all build output to logs alone, and do not
display it on stdout.
.TP
+.BR \-\-quiet\-unmerge\-warn
+Disable the warning message that's shown prior to
+\fB\-\-unmerge\fR actions. This option is intended
+to be set in the \fBmake.conf\fR(5)
+\fBEMERGE_DEFAULT_OPTS\fR variable.
+.TP
.BR "\-\-rebuilt\-binaries[=n]"
Replace installed packages with binary packages that have
been rebuilt. Rebuilds are detected by comparison of
if files and not valid_atoms:
return 1
- if action == 'unmerge' and '--quiet' not in opts:
+ if action == 'unmerge' and \
+ '--quiet' not in opts and \
+ '--quiet-unmerge-warn' not in opts:
msg = "This action can remove important packages! " + \
"In order to be safer, use " + \
"`emerge -pv --depclean <atom>` to check for " + \
for line in wrap(desc, desc_width):
print(desc_indent + line)
print()
+ print(" "+green("--quiet-unmerge-warn"))
+ desc = "Disable the warning message that's shown prior to " + \
+ "--unmerge actions. This option is intended " + \
+ "to be set in the make.conf(5) " + \
+ "EMERGE_DEFAULT_OPTS variable."
+ for line in wrap(desc, desc_width):
+ print(desc_indent + line)
+ print()
print(" "+green("--rebuilt-binaries") + "[=%s]" % turquoise("n"))
desc = "Replace installed packages with binary packages that have " + \
"been rebuilt. Rebuilds are detected by comparison of " + \
"--onlydeps", "--pretend",
"--quiet",
"--quiet-build",
+"--quiet-unmerge-warn",
"--resume",
"--searchdesc",
"--skipfirst",