Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 56641 | Differences between
and this patch

Collapse All | Expand All

(-)gaphor-0.9.2/setup.py (-9 / +2 lines)
Lines 139-144 Link Here
139
        except ImportError:
139
        except ImportError:
140
            print "!!! Required module '%s' not found." % module
140
            print "!!! Required module '%s' not found." % module
141
            self.config_failed.append(module)
141
            self.config_failed.append(module)
142
        except RuntimeError:
143
            print "Warning: import of module '%s' failed; assuming OK" % module
142
        else:
144
        else:
143
            print "Module '%s' found." % module
145
            print "Module '%s' found." % module
144
            for key, ver in version_checks:
146
            for key, ver in version_checks:
Lines 214-228 Link Here
214
                'gaphor.actions',
216
                'gaphor.actions',
215
                'gaphor.actions.tests',
217
                'gaphor.actions.tests',
216
                'gaphas',
218
                'gaphas',
217
                'zope',
218
                'zope.interface',
219
                'zope.component.bbb',
220
                'zope.component.bbb.tests',
221
                'zope.interface.common',
222
                'zope.component',
223
                'zope.exceptions',
224
                'zope.deprecation',
225
                'zope.testing',
226
                
219
                
227
      ],
220
      ],
228
#      ext_modules=ext_modules,
221
#      ext_modules=ext_modules,
(-)gaphor-0.9.2/utils/command/install_mo.py (-1 / +1 lines)
Lines 51-54 Link Here
51
            self.copy_file(mofile, outfile)
51
            self.copy_file(mofile, outfile)
52
52
53
from distutils.command.install import install
53
from distutils.command.install import install
54
install.sub_commands.append(('install_mo', None))
54
#install.sub_commands.append(('install_mo', None))

Return to bug 56641