Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-15 Thread Ronald Oussoren
On 15 Oct, 2009, at 3:39, Chris Barker wrote: Ronald Oussoren wrote: Is anyone interested in helping to create a testsuite for py2app? The first priority would be to have some blackbox tests, unittests can be added later. good idea. The testcases would be simple applications with a setup

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-14 Thread Chris Barker
Ronald Oussoren wrote: Is anyone interested in helping to create a testsuite for py2app? The first priority would be to have some blackbox tests, unittests can be added later. good idea. The testcases would be simple applications with a setup.py and a verification script. Testcases should

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-13 Thread Ronald Oussoren
On 13 Oct, 2009, at 9:16, Ronald Oussoren wrote: On 8 Oct, 2009, at 21:40, Christopher Barker wrote: Ned Deily wrote: Looks like it was caused by a one-line patch that was just added to py2app. Try reverting it by changing line 911 of py2app-0.4.2-py2.6.egg/py2app/build_app.py from:

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-13 Thread Ronald Oussoren
On 8 Oct, 2009, at 21:40, Christopher Barker wrote: Ned Deily wrote: Looks like it was caused by a one-line patch that was just added to py2app. Try reverting it by changing line 911 of py2app-0.4.2- py2.6.egg/py2app/build_app.py from: pydir = 'python%d.%d'%(info['version']) back to:

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-12 Thread hari jayaram
I get the following error when I build with the newest svn version of py2app and python.org 2.6.3 on 32 bit OSX leopard , py2app svn build At revision 84. ImportError: '/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-dynload/wx/_core_.so' not found So I still cannot build a

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-11 Thread Kevin Walzer
On 10/11/09 3:36 PM, Ned Deily wrote: BTW, I see there is now a py2app 0.4.3 available which should have a proper fix for the "TypeError: int argument required" regression. Still can't build a four-way 64-bit universal binary of a Tkinter app with this new version... -- Kevin Walzer Code b

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-11 Thread Ned Deily
In article , Ned Deily wrote: > Looks like it was caused by a one-line patch that was just added to > py2app. Try reverting it by changing line 911 of > py2app-0.4.2-py2.6.egg/py2app/build_app.py from: > > pydir = 'python%d.%d'%(info['version']) > > back to: > > pydir = 'python%d.

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-09 Thread hari jayaram
I am running python.org 2.5.4 On mac OSX Leopard 10.5.9 so the py2applet is definitely "broken" in that it is not bundling python but symlinking to the framework on leopard Hari On Fri, Oct 9, 2009 at 6:49 PM, Luis A. Bastiao Silva wrote: > Yeap. > > It works at Snow Leopard. By the way it st

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-09 Thread Luis A. Bastiao Silva
Yeap. It works at Snow Leopard. By the way it still broken with macho lib headers. :( Nobody can fix it? On Fri, Oct 9, 2009 at 11:38 PM, Christopher Barker wrote: > hari jayaram wrote: > >> I looked at all my app bundles created with py2app . >> Inside App/Contents/MacOS >> The python is a link

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-09 Thread Christopher Barker
hari jayaram wrote: I looked at all my app bundles created with py2app . Inside App/Contents/MacOS The python is a link to the system python . harijaymac:MacOS hari$ ls -altrh total 208 drwxr-xr-x 7 hari harijay 238B Oct 8 16:20 .. lrwxr-xr-x 1 hari harijay92B Oct 8 16:20 python ->

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-08 Thread hari jayaram
Hi Chris , Ned and everyone else I looked at all my app bundles created with py2app . Inside App/Contents/MacOS The python is a link to the system python . ( for eg see below for the wxpython app I am trying to build) So I guess the question is why is that happening with my setup.py and py2app 0.

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-08 Thread Christopher Barker
hari jayaram wrote: My printto100.app ( hello world app) does output the numbers to console, so it works fine what is in: printo100.app/Contents/MacOS/ is should have: $ ls -l printo100.app/Contents/MacOS/ total 264 -rwxr-xr-x 1 cbarker cbarker 100276 Oct 8 12:38 printo100 -rwxr-xr-x

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-08 Thread hari jayaram
Hi Chris , Ned and everyone else . I fixed the line 911 in py2app/build_app.py as recommended by Ned , then reinstalled py2app My printto100.app ( hello world app) does output the numbers to console, so it works fine I however still cannot get the wxpython app to build correctly. I am trying it w

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-08 Thread Christopher Barker
Ned Deily wrote: Looks like it was caused by a one-line patch that was just added to py2app. Try reverting it by changing line 911 of py2app-0.4.2-py2.6.egg/py2app/build_app.py from: pydir = 'python%d.%d'%(info['version']) back to: pydir = 'python%d.%d'%(sys.version_info[:2]) yu

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-08 Thread Ned Deily
In article <277c20420910080947i564f41a2u2890e890767d5...@mail.gmail.com>, "Luis A. Bastiao Silva" wrote: > Just to say that It happens also with me. Using Snow Leopard and python2.6. > > File > "/Users/bastiao/Umit/svn/trunk/py2app-0.4.2-py2.6.egg/py2app/build_app.py", > line 60, in copy_fram

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-08 Thread Luis A. Bastiao Silva
Hi, Just to say that It happens also with me. Using Snow Leopard and python2.6. File "/Users/bastiao/Umit/svn/trunk/py2app-0.4.2-py2.6.egg/py2app/build_app.py", line 60, in copy_framework destfn = self.appbuilder.copy_framework(info, self.dest) File "/Users/bastiao/Umit/svn/trunk/py2app-

Re: [Pythonmac-SIG] Latest Py2app bug..

2009-10-08 Thread Christopher Barker
Christopher Barker wrote: I was trying to help this guy out, and updated by py2app to the dev version: easy_install py2app==dev Now it's broken for me, on OS-X 10.4, Python.org 2.5: Another note -- I just cleared it out, and did: $ easy_install py2app and got 0.4.2 Still the same bug, eve

[Pythonmac-SIG] Latest Py2app bug..

2009-10-08 Thread Christopher Barker
Hi folks, hari jayaram wrote: Just tried a "hello world " app to troubleshoot py2app as Chris Barker suggested. I was trying to help this guy out, and updated by py2app to the dev version: easy_install py2app==dev Now it's broken for me, on OS-X 10.4, Python.org 2.5: (tested in a very simpl