Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-22 Thread Bill Janssen
Here's the line I use to create new disk image copies of my package: /usr/bin/hdiutil create -srcfolder /tmp/my.pkg -volname "My Package version x.x" -ov /tmp/my-pkg-x.x.dmg Bill ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.pytho

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-22 Thread David M. Cooke
"Chris Barker" <[EMAIL PROTECTED]> writes: > Bob Ippolito wrote: > >> Actually, I'm not totally sure I trust the 10.3+ zip files for >> symlinks. Disk images are the popular solution. > > Thanks for the tip, I have had problems moving .app bundles around > through a Windows-based server. > > > S

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-22 Thread Chris Barker
Bob Ippolito wrote: Actually, I'm not totally sure I trust the 10.3+ zip files for symlinks. Disk images are the popular solution. Thanks for the tip, I have had problems moving .app bundles around through a Windows-based server. > Some later version of > py2app will probably have an option fo

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Charles Hartman
On Mar 18, 2005, at 5:46 PM, Bob Ippolito wrote: Actually, I'm not totally sure I trust the 10.3+ zip files for symlinks. Disk images are the popular solution. Some later version of py2app will probably have an option for creating a dmg out of your application. Yes please! Charles Hartman

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Bob Ippolito
On Mar 18, 2005, at 17:37, Dave Opstad wrote: ktrace/kdump is probably a good way to figure out what it wants. Yes, it was quite helpful -- I found the problem. TThe symbolic links within the framework (things like Resources -> Versions/Current/Resources) were all gone when I copied the applicati

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Dave Opstad
> ktrace/kdump is probably a good way to figure out what it wants. Yes, it was quite helpful -- I found the problem. TThe symbolic links within the framework (things like Resources -> Versions/Current/Resources) were all gone when I copied the application to another machine. The problem was I used

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Bob Ippolito
On Mar 18, 2005, at 4:45 PM, Robert Kern wrote: Robert Kern wrote: Dave Opstad wrote: Any ideas what could be causing it to not find the init.tcl bundled in the app? I have occasionally run into a similar problem with py2app'd Tkinter programs. Unfortunately I haven't had the time to track it

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Robert Kern
Robert Kern wrote: Dave Opstad wrote: Any ideas what could be causing it to not find the init.tcl bundled in the app? I have occasionally run into a similar problem with py2app'd Tkinter programs. Unfortunately I haven't had the time to track it down and submit a bug report. I believe the culp

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Bob Ippolito
On Mar 18, 2005, at 4:26 PM, Dave Opstad wrote: You'll have to ask the Tcl people.. it really has nothing to do with Python, and I don't know how Tcl bootstraps itself. This might be my misunderstanding; if so, I'm sorry. I thought that py2app was intended (among many other things) to make Python/

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Robert Kern
Dave Opstad wrote: Well, the good news is that I was able to build and launch my app with 0.1.8 where I wasn't with 0.1.7 (see my posting to this list on March 7). On my development system I double-click the app and it launches and runs fine. The bad news, though, is that the app doesn't launch on

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Dave Opstad
> You'll have to ask the Tcl people.. it really has nothing to do with > Python, and I don't know how Tcl bootstraps itself. This might be my misunderstanding; if so, I'm sorry. I thought that py2app was intended (among many other things) to make Python/Tkinter apps that could work on OS X systems

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Bob Ippolito
On Mar 18, 2005, at 3:59 PM, Dave Opstad wrote: Well, the good news is that I was able to build and launch my app with 0.1.8 where I wasn't with 0.1.7 (see my posting to this list on March 7). On my development system I double-click the app and it launches and runs fine. The bad news, though, i

Re: [Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-18 Thread Dave Opstad
Well, the good news is that I was able to build and launch my app with 0.1.8 where I wasn't with 0.1.7 (see my posting to this list on March 7). On my development system I double-click the app and it launches and runs fine. The bad news, though, is that the app doesn't launch on a system that does

[Pythonmac-SIG] ANN: py2app 0.1.8

2005-03-17 Thread Bob Ippolito
(see also: ) `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, extensions, and related data