diff options
Diffstat (limited to '')
-rw-r--r-- | portato/gui/queue.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/portato/gui/queue.py b/portato/gui/queue.py index f203920..78a4b41 100644 --- a/portato/gui/queue.py +++ b/portato/gui/queue.py @@ -290,7 +290,7 @@ class EmergeQueue: # open tty if self.console: self.console.reset() - + def pre (): os.setsid() # new session if self.console: @@ -300,6 +300,9 @@ class EmergeQueue: os.dup2(self.pty[1], 1) os.dup2(self.pty[1], 2) + # get all categories that are being touched during the emerge process + cats = set(map(lambda x: x.split("/")[0], it.iterkeys())) + # start emerge self.process = Popen(command+options+packages, shell = False, env = system.get_environment(), preexec_fn = pre) @@ -342,7 +345,7 @@ class EmergeQueue: @plugin.hook("after_emerge", packages = packages, retcode = ret) def update_packages(): if self.db: - for cat in unique_array([system.split_cpv(p)[0] for p in packages if p not in ["world", "system"]]): + for cat in cats: self.db.reload(cat) debug("Category %s refreshed", cat) |