Re: [Pythonmac-SIG] simple setup.py-for-Windows question

2005-02-03 Thread Bob Ippolito
On Feb 4, 2005, at 2:09, Roger Binns wrote: If anyone wants a reference, have a look at makedist.py in the BitPim source. It produces a py2app application on Mac, a RPM via cx-Freeze on Linux and setup.exe via InnoSetup and py2exe on Windows. http://cvs.sf.net/viewcvs.py/bitpim/bitpim/makedist.py?

Re: [Pythonmac-SIG] simple setup.py-for-Windows question

2005-02-03 Thread Roger Binns
If anyone wants a reference, have a look at makedist.py in the BitPim source. It produces a py2app application on Mac, a RPM via cx-Freeze on Linux and setup.exe via InnoSetup and py2exe on Windows. http://cvs.sf.net/viewcvs.py/bitpim/bitpim/makedist.py?view=markup Auxiliary files such as help, im

Re: [Pythonmac-SIG] Zope py2app, some progress

2005-02-03 Thread Richard Jones
On 04/02/2005, at 12:05 PM, Bob Ippolito wrote: I'll see about adding an optional regular Python interpreter to the bundle, but that probably won't happen for a few weeks. No sweat - I've just introduced our target users to running Zope from the command-line which will suffice for now :) Ric

[Pythonmac-SIG] Re: [Matplotlib-users] matplotlib OS-X binary problems.

2005-02-03 Thread Robert Kern
Chris Barker wrote: However, that doesn't seem to work if I have libfreetype.dylib somewhere standard, and I certainly don't want to remove it! (Maybe I could temporarily, but that's hardly the robust solution I'm looking for) Change the paths that distutils will add to the link line. They're at

[Pythonmac-SIG] menu bar missing mac+py2app

2005-02-03 Thread Thomas
Yup that was it bob .. you got that right… now everything is in place ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/pythonmac-sig

Re: [Pythonmac-SIG] menu bar missing mac+py2app

2005-02-03 Thread Bob Ippolito
On Feb 3, 2005, at 14:08, Thomas wrote: I am using > Mac OS X 10.3 > Python  2.3 one shipped with panther > MacPython-Panther-2.3 > wxPythonOSX-2.4.2.4-py2.3-panther.dmg > py2app-0.1.7.mpkg When I run my app script using python my menu bar is missing. When I use pythonw it’s working fine. Using py2

[Pythonmac-SIG] menu bar missing mac+py2app

2005-02-03 Thread Thomas
Hi Bob,   I have simplified my script.   from wxPython.wx import * ID_LOGIN=101 ID_OPEN=102 ID_ABOUT=109 ID_EXIT=110   class MainWindow(wxFrame):     def __init__(self,parent,id,title):     wxFrame.__init__(self,parent,wxID_ANY, title, size = ( 800,600),    

Re: [Matplotlib-users] Re: [Pythonmac-SIG] matplotlib OS-X binary problems.

2005-02-03 Thread Bob Ippolito
On Feb 3, 2005, at 20:07, Chris Barker wrote: Bob Ippolito wrote: You have three options: - make sure the dylibs aren't sitting around in the same location as the .a, and make sure the .a's path is preferred (you could make a local dir, -L to it, symlink the archives in) I'm going to give this a

Re: [Matplotlib-users] Re: [Pythonmac-SIG] matplotlib OS-X binary problems.

2005-02-03 Thread Chris Barker
Bob Ippolito wrote: You have three options: - make sure the dylibs aren't sitting around in the same location as the .a, and make sure the .a's path is preferred (you could make a local dir, -L to it, symlink the archives in) I'm going to give this a try. - change the setup.py relatively signific

Re: [Pythonmac-SIG] Zope py2app, some progress

2005-02-03 Thread Bob Ippolito
On Feb 3, 2005, at 19:58, Richard Jones wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, 4 Feb 2005 01:34 am, Bob Ippolito wrote: No, py2app just doesn't give you a regular Python interpreter.. so, that's a problem I guess. I'm not sure what to suggest. Yep, looks like it's the killer

Re: [Pythonmac-SIG] Zope py2app, some progress

2005-02-03 Thread Richard Jones
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, 4 Feb 2005 01:34 am, Bob Ippolito wrote: > No, py2app just doesn't give you a regular Python interpreter.. so, > that's a problem I guess. I'm not sure what to suggest. Yep, looks like it's the killer for the py2app'ed Zope. I'm going to inv

Re: [Pythonmac-SIG] matplotlib OS-X binary problems.

2005-02-03 Thread Bob Ippolito
On Feb 3, 2005, at 19:07, Chris Barker wrote: I posted a note here the other day about a matplotlib binary. I've discovered a problem with it. Apparently, it has linked against the libfreetype in /usr/X11. That means it will work fine on a system with Apple's X11 installed (like mine or the firs

[Pythonmac-SIG] matplotlib OS-X binary problems.

2005-02-03 Thread Chris Barker
Hi all, I posted a note here the other day about a matplotlib binary. I've discovered a problem with it. Apparently, it has linked against the libfreetype in /usr/X11. That means it will work fine on a system with Apple's X11 installed (like mine or the first system I tested it on). So, the que

Re: [Pythonmac-SIG] menu bar missing mac+py2app

2005-02-03 Thread Bob Ippolito
On Feb 3, 2005, at 14:08, Thomas wrote: When I run my app script using python my menu bar is missing. When I use pythonw it’s working fine. Using py2app I created a standalone application, but menu bar is missing in it. I realize that macs menu bar has been an issue for quite a while. I had a cha

[Pythonmac-SIG] menu bar missing mac+py2app

2005-02-03 Thread Thomas
Hi All, I am using > Mac OS X 10.3 > Python  2.3 one shipped with panther > MacPython-Panther-2.3 > wxPythonOSX-2.4.2.4-py2.3-panther.dmg > py2app-0.1.7.mpkg When I run my app script using python my menu bar is missing. When I use pythonw it’s working fine. Using py2app I created

Re: [Pythonmac-SIG] simple setup.py-for-Windows question

2005-02-03 Thread Bob Ippolito
On Feb 3, 2005, at 14:21, Charles Hartman wrote: Sorry, simpleton time again! I've gotten the Mac app to build OK with py2app, but now I'm trying to get my newest project ready for first tests on Windows and running into a problem. My setup.py contains the line data_files = ['ScansionDictionar

[Pythonmac-SIG] simple setup.py-for-Windows question

2005-02-03 Thread Charles Hartman
Sorry, simpleton time again! I've gotten the Mac app to build OK with py2app, but now I'm trying to get my newest project ready for first tests on Windows and running into a problem. My setup.py contains the line data_files = ['ScansionDictionary'], and one of my modules contains the line se

[Pythonmac-SIG] Why does all threads block when doing I/O to unreachable network device on Mac OSX?

2005-02-03 Thread Read Roberts
In writing a replacement for tkDialog.askdirname() (needed because this is not Kanji -capable on Windows), I needed to work around a problem where os.listdir() will block indefinitely when a volume is not reachable. Looking for a cross-platform solution, I tried doing the os.lsitdir() within a

Re: [Pythonmac-SIG] Zope py2app, some progress

2005-02-03 Thread Bob Ippolito
On Feb 3, 2005, at 2:47, Richard Jones wrote: On 03/02/2005, at 6:12 PM, Bob Ippolito wrote: On Feb 2, 2005, at 19:08, Richard Jones wrote: OK, starting at it again this morning, I've made some progress getting things configured correctly to start up Zope. I've hit another roadblock though -- Zo

Re: [Pythonmac-SIG] Binary Matplotlib package

2005-02-03 Thread Louis Pecora
Chris Barker wrote: Hi all, I think I've successfully build a binary matplotlib package for use with Apple's Python on OS-X 10.3.* In theory the only other thing it requires is Numeric, and I have a package for that too (courtesy of Bob Ippolito). It's almost 5 MB, so I haven't included it here