diff options
author | necoro <> | 2007-06-15 08:11:48 +0000 |
---|---|---|
committer | necoro <> | 2007-06-15 08:11:48 +0000 |
commit | cf4e11cee2c98e1dee265e94b45d22039f9c91b9 (patch) | |
tree | b138b930307c3b2e06fd603f12476179a4c973bb /portato/gui | |
parent | 6d48d4caadc9a24628c4d9a0b97da7488bd7bc92 (diff) | |
download | portato-cf4e11cee2c98e1dee265e94b45d22039f9c91b9.tar.gz portato-cf4e11cee2c98e1dee265e94b45d22039f9c91b9.tar.bz2 portato-cf4e11cee2c98e1dee265e94b45d22039f9c91b9.zip |
added ability of passing "&&" to the sync command
Diffstat (limited to '')
-rw-r--r-- | portato/gui/gui_helper.py | 38 |
1 files changed, 34 insertions, 4 deletions
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py index a4d333c..1f368de 100644 --- a/portato/gui/gui_helper.py +++ b/portato/gui/gui_helper.py @@ -338,7 +338,13 @@ class EmergeQueue: pkg = pkg[0] elif unmask: # no pkg returned, but we are allowed to unmask it - pkg = system.find_packages("="+cpv, masked = True)[0] + pkg = system.find_packages("="+cpv, masked = True) + + if not pkg: + raise backend.PackageNotFoundException(cpv) # also not found + else: + pkg = pkg[0] + if pkg.is_testing(use_keywords = True): pkg.set_testing(True) if pkg.is_masked(): @@ -367,6 +373,7 @@ class EmergeQueue: if cpv in self.deps: return # in list already and therefore it's already in the tree too + # try to find an already installed instance update = False uVersion = None try: @@ -374,7 +381,7 @@ class EmergeQueue: if not pkg.is_installed(): old = system.find_installed_packages(pkg.get_slot_cp()) if old: - old = old[0] # assume we have only one there; FIXME: slotted packages + old = old[0] # assume we have only one there update = True uVersion = old.get_version() @@ -518,7 +525,8 @@ class EmergeQueue: self.process = Popen(command+options+packages, stdout = slave, stderr = STDOUT, shell = False, env = system.get_environment()) # start thread waiting for the stop of emerge - Thread(name="Emerge-Thread", target=self._update_packages, args=(packages+self.deps.keys(),)).start() + if packages: + Thread(name="Emerge-Thread", target=self._update_packages, args=(packages+self.deps.keys(),)).start() # remove for i in it: @@ -615,7 +623,29 @@ class EmergeQueue: if command is None: command = system.get_sync_command() - self._emerge([],[],[], command = command) + def threaded_sync (cmd): + ret = self.process.wait() + self.process = None + if ret == 0: + __sync(cmd, False) + + def __sync(cmd, startThread = True): + try: + idx = cmd.index("&&") + except ValueError: # no && in there -> normal behavior + debug("w/o &&", cmd) + self._emerge([],[],[], command = cmd) + else: + debug("with &&", cmd[:idx]) + self._emerge([],[],[], command = cmd[:idx]) + + if startThread: + Thread(name = "SyncThread", target = threaded_sync, args = (cmd[idx+1:],)).start() + else: + threaded_sync(cmd[idx+1:]) + + __sync(command) + def kill_emerge (self): """Kills the emerge process.""" |