Bug #337465 - Enable EbuildIpcDaemon on Darwin and FreeBSD since it
authorZac Medico <zmedico@gentoo.org>
Sun, 19 Sep 2010 22:42:08 +0000 (15:42 -0700)
committerZac Medico <zmedico@gentoo.org>
Sun, 19 Sep 2010 22:42:08 +0000 (15:42 -0700)
seems fixed since commit 81fc303212b8379219cf5d463c8717359b972dba.

pym/_emerge/AbstractEbuildProcess.py

index abd5a325302b940b5b6e1de58677acdbc1d93e08..d711c05857b41d1c5ac09645f433bef54dc32cee 100644 (file)
@@ -36,14 +36,6 @@ class AbstractEbuildProcess(SpawnProcess):
        # is left so we can temporarily disable it if any issues arise.
        _enable_ipc_daemon = True
 
-       # EbuildIpcDaemon does not work on these platforms yet:
-       # | Bug #  | Platform
-       # |--------|------------
-       # | 337465 | FreeBSD
-       # |        | Darwin
-       if platform.system() in ('Darwin', 'FreeBSD',):
-               _enable_ipc_daemon = False
-
        def __init__(self, **kwargs):
                SpawnProcess.__init__(self, **kwargs)
                if self.phase is None: