Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(347)

Unified Diff: shell/subcmds/portage_cmds.py

Issue 6626039: Revert "Plumb in crprocess instead of RunCommand to allow quiet operation." (Closed) Base URL: http://git.chromium.org/git/chromite.git@master
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « shell/subcmds/clean_cmd.py ('k') | shell/subcmds/shell_cmd.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/subcmds/portage_cmds.py
diff --git a/shell/subcmds/portage_cmds.py b/shell/subcmds/portage_cmds.py
index cd137323d627a766b2f90bedda32339bd8c4b48c..67b3e389bd924767f182fc31bbb7f2c3969a0863 100644
--- a/shell/subcmds/portage_cmds.py
+++ b/shell/subcmds/portage_cmds.py
@@ -15,7 +15,6 @@ class EbuildCmd(subcmd.WrappedChrootCmd):
"""EbuildCmd constructor."""
# Just call the WrappedChrootCmd superclass, which does most of the work.
super(EbuildCmd, self).__init__(
- 'EBUILD',
['ebuild-%s'], ['ebuild'],
need_args=True,
env_whitelist=['CHROME_ORIGIN', 'FEATURES', 'USE']
@@ -29,7 +28,6 @@ class EmergeCmd(subcmd.WrappedChrootCmd):
"""EmergeCmd constructor."""
# Just call the WrappedChrootCmd superclass, which does most of the work.
super(EmergeCmd, self).__init__(
- 'EMERGE',
['emerge-%s'], ['sudo', 'emerge'],
need_args=True,
env_whitelist=['CHROME_ORIGIN', 'FEATURES', 'USE']
@@ -43,7 +41,6 @@ class EqueryCmd(subcmd.WrappedChrootCmd):
"""EqueryCmd constructor."""
# Just call the WrappedChrootCmd superclass, which does most of the work.
super(EqueryCmd, self).__init__(
- 'EQUERY',
['equery-%s'], ['equery'],
need_args=True
)
@@ -56,7 +53,6 @@ class PortageqCmd(subcmd.WrappedChrootCmd):
"""PortageqCmd constructor."""
# Just call the WrappedChrootCmd superclass, which does most of the work.
super(PortageqCmd, self).__init__(
- 'PORTAGEEQ',
['portageq-%s'], ['portageq'],
need_args=True
)
« no previous file with comments | « shell/subcmds/clean_cmd.py ('k') | shell/subcmds/shell_cmd.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698