From 5a0b850fb9bf99eb4dceee8454aa40bc0fb3ff5d Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 6 Nov 2009 23:14:08 +0000 Subject: Bug #291200 - Add a --quiet-build option to redirect all build output to logs alone, and do not display it on stdout. svn path=/main/trunk/; revision=14783 --- pym/_emerge/Scheduler.py | 3 ++- pym/_emerge/help.py | 6 ++++++ pym/_emerge/main.py | 4 +++- 3 files changed, 11 insertions(+), 2 deletions(-) (limited to 'pym') diff --git a/pym/_emerge/Scheduler.py b/pym/_emerge/Scheduler.py index f969f7105..1f37a5f0c 100644 --- a/pym/_emerge/Scheduler.py +++ b/pym/_emerge/Scheduler.py @@ -294,7 +294,8 @@ class Scheduler(PollScheduler): @returns: True if background mode is enabled, False otherwise. """ background = (self._max_jobs is True or \ - self._max_jobs > 1 or "--quiet" in self.myopts) and \ + self._max_jobs > 1 or "--quiet" in self.myopts \ + or "--quiet-build" in self.myopts) and \ not bool(self._opts_no_background.intersection(self.myopts)) if background: diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py index 422442fb4..82f0666c8 100644 --- a/pym/_emerge/help.py +++ b/pym/_emerge/help.py @@ -497,6 +497,12 @@ def help(myopts, havecolor=1): print(" Effects vary, but the general outcome is a reduced or condensed") print(" output from portage's displays.") print() + print(" "+green("--quiet-build")) + desc = "Redirect all build output to logs alone, and do not " + \ + "display it on stdout." + for line in wrap(desc, desc_width): + print(desc_indent + line) + print() print(" "+green("--reinstall ") + turquoise("changed-use")) print(" Tells emerge to include installed packages where USE flags have") print(" changed since installation. Unlike --newuse, this option does") diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index 8e69ad057..2a854fe05 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -63,7 +63,9 @@ options=[ "--nodeps", "--noreplace", "--nospinner", "--oneshot", "--onlydeps", "--pretend", -"--quiet", "--resume", +"--quiet", +"--quiet-build", +"--resume", "--searchdesc", "--skipfirst", "--tree", -- cgit v1.2.3-1-g7c22