[Pythonmac-SIG] ANN: py2app 0.1.7

2004-12-30 Thread Bob Ippolito
This announcement is available in HTML at: http://bob.pythonmac.org/archives/2004/12/30/ann-py2app-017/ `py2app`_ is the bundlebuilder replacement we've all been waiting for. It is implemented as a distutils command, similar to `py2exe`_, that builds Mac OS X applications from Python scripts,

Re: [Pythonmac-SIG] Py2App 0.1.7

2004-12-30 Thread Bob Ippolito
On Dec 30, 2004, at 7:31 PM, Chris Barker wrote: Bob Ippolito wrote: py2app is not a package, it's just a directory pointed to by a pth. but couldn't be? I why isn't it in site-packages anyway? Though I imagine you have a good reason, I'd like to know what it is. The whole pth thing seems kind of

Re: [Pythonmac-SIG] Py2App 0.1.7

2004-12-30 Thread Chris Barker
Bob Ippolito wrote: My first question was: "where the heck is /purelib ?" That's an artifact of how the distutils install command compiles .py files under bdist_mpkg, eventually I'll fix that. Thanks. It made the error confusing enough that it took me a while to figure out what was going on. So,

Re: [Pythonmac-SIG] Py2App 0.1.7

2004-12-30 Thread Bob Ippolito
On Dec 30, 2004, at 5:25 PM, Chris Barker wrote: I just installed Py2App with the installer, but when I tried to use it I got: Traceback (most recent call last): File "setup.py", line 21, in ? import py2app File "/purelib/py2app/py2app/__init__.py", line 33, in ? File "/purelib/py2app/p

[Pythonmac-SIG] Py2App 0.1.7

2004-12-30 Thread Chris Barker
Hi all (but particularly Bob) I just installed Py2App with the installer, but when I tried to use it I got: Traceback (most recent call last): File "setup.py", line 21, in ? import py2app File "/purelib/py2app/py2app/__init__.py", line 33, in ? File "/purelib/py2app/py2app/install.py",

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Jack Jansen
On 30-dec-04, at 21:01, Bob Ippolito wrote: On Dec 30, 2004, at 2:52 PM, Ronald Oussoren wrote: On 30-dec-04, at 18:49, Bob Ippolito wrote: On Dec 30, 2004, at 11:44 AM, Jack Jansen wrote: On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simp

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Bob Ippolito
On Dec 30, 2004, at 2:52 PM, Ronald Oussoren wrote: On 30-dec-04, at 18:49, Bob Ippolito wrote: On Dec 30, 2004, at 11:44 AM, Jack Jansen wrote: On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simple shell-scripts that start the compiler wi

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Ronald Oussoren
On 30-dec-04, at 18:49, Bob Ippolito wrote: On Dec 30, 2004, at 11:44 AM, Jack Jansen wrote: On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simple shell-scripts that start the compiler with the right environment variables: run-cc: #!

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Bob Ippolito
On Dec 30, 2004, at 11:44 AM, Jack Jansen wrote: On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simple shell-scripts that start the compiler with the right environment variables: run-cc: #!/bin/sh env MACOSX_DEPLOYMENT_TARGET=10.

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Jack Jansen
On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simple shell-scripts that start the compiler with the right environment variables: run-cc: #!/bin/sh env MACOSX_DEPLOYMENT_TARGET=10.3 gcc "[EMAIL PROTECTED]" run-c++: #!/bin

[Pythonmac-SIG] wxDocsViewer

2004-12-30 Thread Charles Hartman
Somehow I seem to have broken wxDocsViewer -- the viewer program comes up but no files appear onscreen. (They seem to be stored as .zip files inside the app bundle's resources folder, but I can't open them from within wxDocsViewer.) I tried re-downloading it, but no good; apparently I did somet

[Pythonmac-SIG] ANN: pyobjc-1.2

2004-12-30 Thread Ronald Oussoren
PyObjC 1.2 is now available for download at http://pyobjc.sourceforge.net/ PyObjC is a bridge between Python and Objective-C. It allows full featured Cocoa applications to be written in pure Python. It is also easy to use other frameworks containing Objective-C class libraries from Python and t

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Ronald Oussoren
On 30-dec-04, at 0:25, Jack Jansen wrote: On 29-dec-04, at 11:40, Bob Ippolito wrote: [Bob notes that my PantherPythonFix installer will break C++ compilation because distutils simply replaces the first component of LDSHARED with "c++"] Any suggestions as to what to do to get c++ compilation fixe