[PyKDE] PyQt / sipdistutils

2005-11-30 Thread Jasper R. Plaisier
Hello all, I am trying to package an extension module that works with qt objects. I therefore wrapped the code using sip and everything seems to work fine when i build in the documented using a .sip file and configuration.py. Now I am trying to package everything for distribution using

Re: [PyKDE] PyQt / sipdistutils

2005-11-30 Thread Giovanni Bajo
Jasper R. Plaisier [EMAIL PROTECTED] wrote: I have now worked around the problem in a quick and dirty way by copying sipdistutils.py to pyqtdistutils.py and changing the code in _sip_compile to the following def _sip_compile(self, sip_bin, source, sbf) : import pyqtconfig

Re: [PyKDE] PyQt / sipdistutils

2005-11-30 Thread Giovanni Bajo
[EMAIL PROTECTED] wrote: I have now worked around the problem in a quick and dirty way by copying You could also derive a new class and re-implement just the _sip_compile method. I realize that, but I was more looking for a generic solution that was already implemented and that i maybe