diff options
author | necoro <> | 2007-05-14 18:52:04 +0000 |
---|---|---|
committer | necoro <> | 2007-05-14 18:52:04 +0000 |
commit | 48a4f88747307ce41a07b4fa55411b44b9269eb7 (patch) | |
tree | b5d978867f74aedb2183d862758075f6ce255f49 /portato/backend/system_interface.py | |
parent | be5997284de46af17f1e169dc94beb9e85462dd3 (diff) | |
download | portato-48a4f88747307ce41a07b4fa55411b44b9269eb7.tar.gz portato-48a4f88747307ce41a07b4fa55411b44b9269eb7.tar.bz2 portato-48a4f88747307ce41a07b4fa55411b44b9269eb7.zip |
filtering "--ask" fron EMERGE_DEFAULT_OPTS
Diffstat (limited to '')
-rw-r--r-- | portato/backend/system_interface.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/portato/backend/system_interface.py b/portato/backend/system_interface.py index f37d0a0..40834f9 100644 --- a/portato/backend/system_interface.py +++ b/portato/backend/system_interface.py @@ -291,3 +291,11 @@ class SystemInterface: @rtype: string[]""" raise NotImplementedError + + def get_environment (self): + """Returns a dictionary of environment variables to set prior to do an emerge. + + @returns: environment variables + @rtype: dict{string : string}""" + + raise NotImplementedError |