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
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
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
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
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
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
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
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