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

(-)setup.py (-10 / +3 lines)
Lines 130-135 Link Here
130
        except ImportError:
130
        except ImportError:
131
            print "!!! Required module '%s' not found." % module
131
            print "!!! Required module '%s' not found." % module
132
            self.config_failed.append(module)
132
            self.config_failed.append(module)
133
        except RuntimeError:
134
            print "Warning: import of module '%s' failed; assuming OK" % module
133
        else:
135
        else:
134
            print "Module '%s' found." % module
136
            print "Module '%s' found." % module
135
            for key, ver in version_checks:
137
            for key, ver in version_checks:
Lines 230-236 class install_lib_Gaphor(install_lib, ve Link Here
230
        print 'self', dir(self)
230
        print 'self', dir(self)
231
        print 'self.get_finalized_command("install")', dir(self.get_finalized_command('install'))
231
        print 'self.get_finalized_command("install")', dir(self.get_finalized_command('install'))
232
        
232
        
233
        skip = len(self.get_finalized_command('install').root or '')
233
        skip = len((self.get_finalized_command('install').root or '').rstrip('/'))
234
234
235
        self.generate_version(self.install_dir, self.install_data[skip:])
235
        self.generate_version(self.install_dir, self.install_data[skip:])
236
        install_lib.run(self)
236
        install_lib.run(self)
Lines 430-444 Link Here
430
                'gaphor.actions',
432
                'gaphor.actions',
431
                'gaphor.actions.tests',
433
                'gaphor.actions.tests',
432
                'gaphas',
434
                'gaphas',
433
                'zope',
434
                'zope.interface',
435
                'zope.component.bbb',
436
                'zope.component.bbb.tests',
437
                'zope.interface.common',
438
                'zope.component',
439
                'zope.exceptions',
440
                'zope.deprecation',
441
                'zope.testing',
442
                
435
                
443
      ],
436
      ],
444
#      ext_modules=ext_modules,
437
#      ext_modules=ext_modules,

Return to bug 56641