Re: [Pythonmac-SIG] Help with Py2app

2012-04-30 Thread Chris Barker
(dont' forget to include pythonmac-sig -- it's not doen with a standard reply.) On Mon, Apr 30, 2012 at 2:07 PM, Charlie Clark wrote: >> That's a setuptools (or distribute) feature, and should be in the >> primary setup.py that the main developer uses on other platforms. > > Well, where should i

Re: [Pythonmac-SIG] Help with Py2app

2012-04-30 Thread Charlie Clark
Am 30.04.2012, 20:08 Uhr, schrieb Chris Barker : I'd go farther with this... I don't know that py2app reslies on setuptools for anything. Maybe it doesn't but I got an error when I moved the relevant part of setup.py over to a new file generated by py2applet. It was complaining about the

Re: [Pythonmac-SIG] Help with Py2app

2012-04-30 Thread Chris Barker
On Mon, Apr 30, 2012 at 10:20 AM, Charlie Clark >>> tried to break out the py2app part into a separate script. I'd go farther with this... >> I don't know that py2app reslies on setuptools for anything. > > Maybe it doesn't but I got an error when I moved the relevant part of > setup.py over to

Re: [Pythonmac-SIG] Help with Py2app

2012-04-30 Thread Charlie Clark
Am 30.04.2012, 18:59 Uhr, schrieb Chris Barker : darn... Yeah, well I least I bumped the MacPorts port and that works like a charm. It'll even give you DMG if you ask nicely. Unfortunately the DMG contains symlinks to the libraries and binaries so it isn't redistributable. I am hoping t

Re: [Pythonmac-SIG] Help with Py2app

2012-04-30 Thread Chris Barker
On Mon, Apr 30, 2012 at 4:26 AM, Charlie Clark > I'm trying to update the setup script for the LinkChecker project > http://linkchecker.sourceforge.net/ because it no longer builds the app and > does not work reliably in a virtualenv. darn... > I am hoping to build a standalone > app and package

Re: [Pythonmac-SIG] py2app strips symlinks in frameworks, need to keep them

2012-04-30 Thread Kevin Walzer
On 4/30/12 9:35 AM, Charlie Clark wrote: --semi-standalone (-s) depend on an existing installation of Python Not an option in my case, alas, but thanks for the suggestion. --K -- Kevin Walzer Code by Kevin http://www.codebykevin.com ___ Pythonmac-

Re: [Pythonmac-SIG] py2app strips symlinks in frameworks, need to keep them

2012-04-30 Thread Charlie Clark
Am 30.04.2012, 15:25 Uhr, schrieb Kevin Walzer : Is there a flag I can pass to py2app to retain these symlinks? I can try to add them manually later in my build script, but it's a pain and I'd rather have py2app not strip them out in the first place. You might try: --semi-standalone (-s)

[Pythonmac-SIG] py2app strips symlinks in frameworks, need to keep them

2012-04-30 Thread Kevin Walzer
I've had an app rejected from the Mac App Store because required symlinks were not present in the bundled Python framework: Malformed Framework - The framework bundle Python (QuickWho.app/Contents/Frameworks/Python.framework/Versions/2.7) must contain a symbolic link 'Python' -> 'Versions/Curr

[Pythonmac-SIG] Help with Py2app

2012-04-30 Thread Charlie Clark
Hi, I'm trying to update the setup script for the LinkChecker project http://linkchecker.sourceforge.net/ because it no longer builds the app and does not work reliably in a virtualenv. I am hoping to build a standalone app and package it as a DMG as the project author no longer has acces