Re: [Pythonmac-SIG] py2app error

2010-08-01 Thread Christopher Barker
Ronald Oussoren wrote: This is a problem in general with all ctypes uses. In fact, ctypes reminds me a bit of py2app in the sense that it has some built-in algorithms for searching for dynamic libs, and that these fail fairly often. Please file bugs for that, I'm pretty sure that ctypes is supp

Re: [Pythonmac-SIG] py2app error

2010-08-01 Thread Nathan Lemoine
I'm using the most recent 1.1.4 version of pyglet, which I installed from the binary and I'm using the 2.5.1 version of Python that shipped with OS X 10.5. Would updating python fix the problem? On Aug 1, 2010, at 2:55 AM, Ronald Oussoren wrote: On 31 Jul, 2010, at 23:02, Nathan Lemoine w

Re: [Pythonmac-SIG] py2app error

2010-08-01 Thread Ronald Oussoren
On 1 Aug, 2010, at 19:08, Christopher Barker wrote: > Ronald Oussoren wrote: >> the pyglet sources explicitly load /usr/local/lib/libavbin.dylib using >> ctypes. I could create a py2app recipe that copies libavbin.dylib into the >> application bundle, but that will probably not be used without

Re: [Pythonmac-SIG] Py2app too complex?

2010-08-01 Thread Christopher Barker
Greg Ewing wrote: I've been thinking for a while about creating something simpler that doesn't attempt any automatic module discovery at all. You would be required to construct a project file that explicitly lists all the required modules and libraries, including standard library modules. I've

Re: [Pythonmac-SIG] py2app error

2010-08-01 Thread Christopher Barker
Ronald Oussoren wrote: the pyglet sources explicitly load /usr/local/lib/libavbin.dylib using ctypes. I could create a py2app recipe that copies libavbin.dylib into the application bundle, but that will probably not be used without patching the pyglet sources. This is a problem in general w

[Pythonmac-SIG] Py2app too complex?

2010-08-01 Thread Greg Ewing
Virgil Dupras wrote: Is it possible that py2app is a little too complex for what it does? I think a lot of the complexity of py2app and py2exe come from trying to automatically figure out what modules and libraries need to be included. I've been thinking for a while about creating something si

Re: [Pythonmac-SIG] [Pyobjc-dev] Py2app too complex?

2010-08-01 Thread Ronald Oussoren
On 1 Aug, 2010, at 13:59, Ronald Oussoren wrote: >> >> I'm not sure I agree that no dependency finding would be a good thing. >> Importing a stdlib modules often imports tons of other ones you don't >> know about and manually figuring these dependencies out can be really >> tedious. However, I th

Re: [Pythonmac-SIG] [Pyobjc-dev] Py2app too complex?

2010-08-01 Thread Ronald Oussoren
On 31 Jul, 2010, at 10:56, Virgil Dupras wrote: > On Sat, Jul 31, 2010 at 10:26 AM, Ronald Oussoren > wrote: >> >> On 31 Jul, 2010, at 3:09, Greg Ewing wrote: >> >>> Virgil Dupras wrote: Is it possible that py2app is a little too complex for what it does? >>> >>> I think a lot of th