diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-08 14:52:57 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-08 14:52:57 +0200 |
commit | b21023ecc7dd95339f83ae044ad642b3a863ecef (patch) | |
tree | 5b9cd85283d759fbbeaffae87493a674062a9036 /plugins | |
parent | 7346ef212b6d4cb34182af7620df04e52c940fdb (diff) | |
download | portato-b21023ecc7dd95339f83ae044ad642b3a863ecef.tar.gz portato-b21023ecc7dd95339f83ae044ad642b3a863ecef.tar.bz2 portato-b21023ecc7dd95339f83ae044ad642b3a863ecef.zip |
Added the reload_portage plugin
Diffstat (limited to '')
-rw-r--r-- | plugins/reload_portage.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/reload_portage.py b/plugins/reload_portage.py new file mode 100644 index 0000000..280bd92 --- /dev/null +++ b/plugins/reload_portage.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# +# File: plugins/reload_portage.py +# This file is part of the Portato-Project, a graphical portage-frontend. +# +# Copyright (C) 2007-2008 René 'Necoro' Neumann +# This is free software. You may redistribute copies of it under the terms of +# the GNU General Public License version 2. +# There is NO WARRANTY, to the extent permitted by law. +# +# Written by René 'Necoro' Neumann <necoro@necoro.net> + +from portato.backend import system + +class ReloadPortage (Plugin): + __author__ = "René 'Necoro' Neumann" + __description__ = """Reloads portage when an emerge process has finished. +This can take some time, but sometimes it is necessairy.""" + + def init(self): + self.add_call("after_emerge", self.hook, type = "after", dep = "EtcProposals") + self.status = self.STAT_DISABLED # disable by default + + def hook (self, *args, **kwargs): + system.reload_settings() + +register(ReloadPortage) |