[Pythonmac-SIG] py2app + pygame: how to exclude pygame icon?

2009-01-03 Thread Joel Gluck
Hi all, Am using py2app and hitting this problem: py2app's built-in recipe for pygame is causing the pygame icon to appear when I run the app from the dock. It goes something like this: 1) The icon file I provide for my app appears in the dock by default, thanks to python setup.py py2app

Re: [Pythonmac-SIG] python version confusion (continued)

2009-01-03 Thread Gary Church
Thanks DavidW for the very informative link! I think my python installations may be a bit "wonky." Here's what I get when I enter: Macintosh-4:~ gary$ ls -l /Library/Frameworks/Python.framework/Versions/ total 8 drwxr-xr-x 7 root wheel 238 Mar 11 2008 2.3 drwxr-xr-x 11 root wheel 374

Re: [Pythonmac-SIG] py2app: how to exclude pygame_icon.icns ?

2009-01-03 Thread Henning Hraban Ramm
Am 2009-01-03 um 21:54 schrieb Bob Ippolito: I think that just means that you have to install modulegraph==dev on its own. You're right, could have thought of that myself. Sorry for the noise. Greetlings from Lake Constance! Hraban --- http://www.fiee.net https://www.cacert.org (I'm an ass

Re: [Pythonmac-SIG] py2app: how to exclude pygame_icon.icns ?

2009-01-03 Thread Bob Ippolito
I think that just means that you have to install modulegraph==dev on its own. On Sat, Jan 3, 2009 at 11:56 AM, Henning Hraban Ramm wrote: > Am 2009-01-03 um 19:43 schrieb Chris.Barker: >> >> There have been some fixes for similar issues -- make sure you re using >> the latest py2app: >> easy_inst

Re: [Pythonmac-SIG] py2app: how to exclude pygame_icon.icns ?

2009-01-03 Thread Henning Hraban Ramm
Am 2009-01-03 um 19:43 schrieb Chris.Barker: There have been some fixes for similar issues -- make sure you re using the latest py2app: easy_install py2app==dev hraban$ easy_install py2app==dev Searching for py2app==dev Reading http://pypi.python.org/simple/py2app/ Reading http://undefined.or

Re: [Pythonmac-SIG] py2app: how to exclude pygame_icon.icns ?

2009-01-03 Thread Joel Gluck
Hi all -- It seems I have solved my frameworks problem for now -- I simply copied all the frameworks I needed and manually stuck them inside my app (deleting all the unnecessary header folders). Not an automated process, but at least my python app now seems to run on other Macs. Also, I s

Re: [Pythonmac-SIG] py2app: how to exclude pygame_icon.icns ?

2009-01-03 Thread Chris.Barker
Bob Ippolito wrote: Unknown load command: 27 means it's seeing a load command (low level Mach-O stuff) that it doesn't understand, which is reasonable because I don't think I've updated the code since 10.4 or so and there are probably some new ones. There have been some fixes for similar issues

Re: [Pythonmac-SIG] py2app: how to exclude pygame_icon.icns ?

2009-01-03 Thread Joel Gluck
Thanks, Bob -- and any idea why the frameworks are not adding as they should? One other question that should be easier to answer: I located the py2app source code on my machine, and tried to slightly modify it. How do I get my modified version to run when calling "python setup.py py2app"?