summaryrefslogtreecommitdiff
path: root/plugins/reload_portage.py
blob: 280bd9231ab1564fd491c2de5a9882443c0dfa26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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)