From mehgcap at gmail.com Sat Oct 1 16:28:29 2011 From: mehgcap at gmail.com (Alex Hall) Date: Sat, 1 Oct 2011 10:28:29 -0400 Subject: [Pythonmac-SIG] windll on Mac? Message-ID: Hi all, I just joined this list, so I am sorry if this is not the right place to ask. I have written an application in python, and one library I use relies on the ctypes.windll functions, specifically user32 and kernel32. I would like to use this library, but I also want to make my application cross-platform. Is there an equivalent to windll on the Mac? It looks like the library uses the dll for finding things like the current thread id, current window, and for functions like window/thread management (it is a dialog builder library built around wx). The library can be found here: http://www.empowermentzone.com/pylbc.zip Thanks in advance for any information you can provide. -- Have a great day, Alex (msg sent from GMail website) mehgcap at gmail.com; http://www.facebook.com/mehgcap From Chris.Barker at noaa.gov Sat Oct 1 18:02:21 2011 From: Chris.Barker at noaa.gov (Chris Barker) Date: Sat, 01 Oct 2011 09:02:21 -0700 Subject: [Pythonmac-SIG] windll on Mac? In-Reply-To: References: Message-ID: <4E87398D.20104@noaa.gov> On 10/1/11 7:28 AM, Alex Hall wrote: > I just joined this list, so I am sorry if this is not the right place to ask. > I have written an application in python, and one library I use relies > on the ctypes.windll functions, specifically user32 and kernel32. I > would like to use this library, but I also want to make my application > cross-platform. Is there an equivalent to windll on the Mac? In a word, no. > It looks > like the library uses the dll for finding things like the current > thread id, current window, and for functions like window/thread > management (it is a dialog builder library built around wx). These sorts of things will have to be done differently on the Mac. There is some chance that some of them may be done with the wx lib (which would wrap the Mac version), but most likely some will require Mac-specific methods. If you find out exactly what calls are made, and what they do, I'd ask on the wxPython list, and then here, to find out how to do it on the Mac. -Chris The > library can be found here: > http://www.empowermentzone.com/pylbc.zip > Thanks in advance for any information you can provide. > -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chris.Barker at noaa.gov From mehgcap at gmail.com Sat Oct 1 19:27:35 2011 From: mehgcap at gmail.com (Alex Hall) Date: Sat, 1 Oct 2011 13:27:35 -0400 Subject: [Pythonmac-SIG] windll on Mac? In-Reply-To: <4E87398D.20104@noaa.gov> References: <4E87398D.20104@noaa.gov> Message-ID: You said to find which windll functions are used. As far as I can tell, here are all of them: def ActivateWindow(hWindow): KERNEL32 = ctypes.windll.KERNEL32 GetCurrentThreadId = KERNEL32.GetCurrentThreadId USER32 = ctypes.windll.USER32 AttachThreadInput = USER32.AttachThreadInput BringWindowToTop = USER32.BringWindowToTop GetForegroundWindow = USER32.GetForegroundWindow GetWindowThreadProcessId = USER32.GetWindowThreadProcessId ShowWindow=USER32.ShowWindow #rest of function, using the above methods On 10/1/11, Chris Barker wrote: > On 10/1/11 7:28 AM, Alex Hall wrote: >> I just joined this list, so I am sorry if this is not the right place to >> ask. >> I have written an application in python, and one library I use relies >> on the ctypes.windll functions, specifically user32 and kernel32. I >> would like to use this library, but I also want to make my application >> cross-platform. Is there an equivalent to windll on the Mac? > > In a word, no. > >> It looks >> like the library uses the dll for finding things like the current >> thread id, current window, and for functions like window/thread >> management (it is a dialog builder library built around wx). > > These sorts of things will have to be done differently on the Mac. There > is some chance that some of them may be done with the wx lib (which > would wrap the Mac version), but most likely some will require > Mac-specific methods. > > If you find out exactly what calls are made, and what they do, I'd ask > on the wxPython list, and then here, to find out how to do it on the Mac. > > -Chris > > > > The >> library can be found here: >> http://www.empowermentzone.com/pylbc.zip >> Thanks in advance for any information you can provide. >> > > > -- > Christopher Barker, Ph.D. > Oceanographer > > Emergency Response Division > NOAA/NOS/OR&R (206) 526-6959 voice > 7600 Sand Point Way NE (206) 526-6329 fax > Seattle, WA 98115 (206) 526-6317 main reception > > Chris.Barker at noaa.gov > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG > -- Have a great day, Alex (msg sent from GMail website) mehgcap at gmail.com; http://www.facebook.com/mehgcap From Chris.Barker at noaa.gov Sun Oct 2 20:15:31 2011 From: Chris.Barker at noaa.gov (Chris Barker) Date: Sun, 02 Oct 2011 11:15:31 -0700 Subject: [Pythonmac-SIG] windll on Mac? In-Reply-To: References: <4E87398D.20104@noaa.gov> Message-ID: <4E88AA43.3050002@noaa.gov> On 10/1/11 10:27 AM, Alex Hall wrote: > You said to find which windll functions are used. As far as I can > tell, here are all of them: > def ActivateWindow(hWindow): > KERNEL32 = ctypes.windll.KERNEL32 > GetCurrentThreadId = KERNEL32.GetCurrentThreadId > USER32 = ctypes.windll.USER32 > AttachThreadInput = USER32.AttachThreadInput > BringWindowToTop = USER32.BringWindowToTop > GetForegroundWindow = USER32.GetForegroundWindow > GetWindowThreadProcessId = USER32.GetWindowThreadProcessId > ShowWindow=USER32.ShowWindow > #rest of function, using the above methods You may get help on this from the wx list, but on this list, you'll probably need to figure out what these functions actually do, and how the results are used, to know how you would accomplish the same thing on a Mac. -Chris > > > On 10/1/11, Chris Barker wrote: >> On 10/1/11 7:28 AM, Alex Hall wrote: >>> I just joined this list, so I am sorry if this is not the right place to >>> ask. >>> I have written an application in python, and one library I use relies >>> on the ctypes.windll functions, specifically user32 and kernel32. I >>> would like to use this library, but I also want to make my application >>> cross-platform. Is there an equivalent to windll on the Mac? >> >> In a word, no. >> >>> It looks >>> like the library uses the dll for finding things like the current >>> thread id, current window, and for functions like window/thread >>> management (it is a dialog builder library built around wx). >> >> These sorts of things will have to be done differently on the Mac. There >> is some chance that some of them may be done with the wx lib (which >> would wrap the Mac version), but most likely some will require >> Mac-specific methods. >> >> If you find out exactly what calls are made, and what they do, I'd ask >> on the wxPython list, and then here, to find out how to do it on the Mac. >> >> -Chris >> >> >> >> The >>> library can be found here: >>> http://www.empowermentzone.com/pylbc.zip >>> Thanks in advance for any information you can provide. >>> >> >> >> -- >> Christopher Barker, Ph.D. >> Oceanographer >> >> Emergency Response Division >> NOAA/NOS/OR&R (206) 526-6959 voice >> 7600 Sand Point Way NE (206) 526-6329 fax >> Seattle, WA 98115 (206) 526-6317 main reception >> >> Chris.Barker at noaa.gov >> _______________________________________________ >> Pythonmac-SIG maillist - Pythonmac-SIG at python.org >> http://mail.python.org/mailman/listinfo/pythonmac-sig >> unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG >> > > -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chris.Barker at noaa.gov From mehgcap at gmail.com Tue Oct 4 04:23:09 2011 From: mehgcap at gmail.com (Alex Hall) Date: Mon, 3 Oct 2011 22:23:09 -0400 Subject: [Pythonmac-SIG] dialog always busy, not titled right Message-ID: Hi all, It turns out that my last problem, with the ctypes.windll methods, was nothing; the library developer said they were no longer needed and could be removed. My app is now running on Lion, but with two major problems: 1. The app is based on a series of dialogs, and these do not seem to be titled correctly. At least, they are simply called "Python" when you switch to them. 2. Any key commands result in a minute or two of the dialog being "busy", rendering the whole thing all but unusable. One thing I have to mention: I am running VoiceOver with no monitor plugged in to my new (as of August) Mac Mini. I am not sure if turning VO off lets the app run normally (no busy messages) as I do not have a screen or a mouse for a sighted person to use; my only interaction with the machine has to be through VO since the DVI to VGA adapter I am using does not mate with the DVI to HJMI adapter to let the Mac display on the only monitor I could find. Anyway, thanks for any suggestions, and I understand if this is another thing I should ask the WX list about. I figured, though, that there may be mac-specific caveats, especially where VO is concerned, with how MacOS sees Python apps running from source. -- Have a great day, Alex (msg sent from GMail website) mehgcap at gmail.com; http://www.facebook.com/mehgcap From kw at codebykevin.com Tue Oct 4 16:20:06 2011 From: kw at codebykevin.com (Kevin Walzer) Date: Tue, 04 Oct 2011 10:20:06 -0400 Subject: [Pythonmac-SIG] dialog always busy, not titled right In-Reply-To: References: Message-ID: <4E8B1616.3050106@codebykevin.com> On 10/3/11 10:23 PM, Alex Hall wrote: > 1. The app is based on a series of dialogs, and these do not seem to > be titled correctly. At least, they are simply called "Python" when > you switch to them. I can't speak to the VoiceOver part of your question, but "Python" suggests to me that you are not running the code as an application wrapped by py2app, but just in the bare Python interpreter--that's why the title is "Python." If you want the app name, try wrapping it with py2app. -- Kevin Walzer Code by Kevin http://www.codebykevin.com From ronaldoussoren at mac.com Tue Oct 4 15:54:41 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Tue, 04 Oct 2011 15:54:41 +0200 Subject: [Pythonmac-SIG] py2app: ImportError In-Reply-To: <4E861A3A.5090203@sccmail.maricopa.edu> References: <4E861A3A.5090203@sccmail.maricopa.edu> Message-ID: <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> On 30 Sep, 2011, at 21:36, Sean Robinson wrote: > I have not yet been able to make a working stand-alone app bundle using py2app and I hope someone can point out what I'm missing. I am using py2app cloned from bitbucket (changeset 169:9d95dbc52431), but py2app 0.6.3 did not work, either. This is being done on OSX 10.6.8 with the Apple-provided python (v2.6.1). > > The app (quotidian) is a Tkinter python script that runs well from Terminal and partially from a py2app --alias app bundle. But the primary problem is that sub-modules with the project are not importing (see the stderr log below) on launch. The supposedly missing module is in site-packages.zip (as queue.pyc). I have verified that site-packages.zip is in sys.path. > > Does anyone have something else I can check? Can you reproduce this problem in a simple standalone application (using Tkinter is fine)? Ronald -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2224 bytes Desc: not available URL: From mehgcap at gmail.com Tue Oct 4 18:56:41 2011 From: mehgcap at gmail.com (Alex Hall) Date: Tue, 4 Oct 2011 12:56:41 -0400 Subject: [Pythonmac-SIG] dialog always busy, not titled right In-Reply-To: <4E8B1616.3050106@codebykevin.com> References: <4E8B1616.3050106@codebykevin.com> Message-ID: I am running from source. On windows, the program runs normally from source or as an application. Would this be why it is running so slowly? On 10/4/11, Kevin Walzer wrote: > On 10/3/11 10:23 PM, Alex Hall wrote: >> 1. The app is based on a series of dialogs, and these do not seem to >> be titled correctly. At least, they are simply called "Python" when >> you switch to them. > > I can't speak to the VoiceOver part of your question, but "Python" > suggests to me that you are not running the code as an application > wrapped by py2app, but just in the bare Python interpreter--that's why > the title is "Python." If you want the app name, try wrapping it with > py2app. > > -- > Kevin Walzer > Code by Kevin > http://www.codebykevin.com > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG > -- Have a great day, Alex (msg sent from GMail website) mehgcap at gmail.com; http://www.facebook.com/mehgcap From Chris.Barker at noaa.gov Tue Oct 4 20:09:10 2011 From: Chris.Barker at noaa.gov (Chris.Barker) Date: Tue, 04 Oct 2011 11:09:10 -0700 Subject: [Pythonmac-SIG] dialog always busy, not titled right In-Reply-To: References: <4E8B1616.3050106@codebykevin.com> Message-ID: <4E8B4BC6.4080309@noaa.gov> On 10/4/11 9:56 AM, Alex Hall wrote: > I am running from source. On windows, the program runs normally from > source or as an application. Would this be why it is running so > slowly? The Mac does some "special" stuff when running from an app -- nothing like this on Windows. But it effect window titles, drag and drop, etc, I doubt it has anything to do with performance. By the way, py2app as an "alias" mode that lets you run from source while inside an app -- it's very handy for development and testing. -Chris > > On 10/4/11, Kevin Walzer wrote: >> On 10/3/11 10:23 PM, Alex Hall wrote: >>> 1. The app is based on a series of dialogs, and these do not seem to >>> be titled correctly. At least, they are simply called "Python" when >>> you switch to them. >> >> I can't speak to the VoiceOver part of your question, but "Python" >> suggests to me that you are not running the code as an application >> wrapped by py2app, but just in the bare Python interpreter--that's why >> the title is "Python." If you want the app name, try wrapping it with >> py2app. >> >> -- >> Kevin Walzer >> Code by Kevin >> http://www.codebykevin.com >> _______________________________________________ >> Pythonmac-SIG maillist - Pythonmac-SIG at python.org >> http://mail.python.org/mailman/listinfo/pythonmac-sig >> unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG >> > > -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chris.Barker at noaa.gov From spam.wax at gmail.com Wed Oct 5 22:27:06 2011 From: spam.wax at gmail.com (Hamid M.) Date: Wed, 5 Oct 2011 16:27:06 -0400 Subject: [Pythonmac-SIG] Python 2.7 (Lion) and user site-packages folder problem Message-ID: Hello When I make Apple-supplied python-2.7 the default python on my system, it ignores my local site-packages folder in ~/Library/Python/2.7/site-packges This does not happen when using 2.6! Is this behavior expected ? How can I permanently add that folder to my sys.path? Thanks in advance, From nad at acm.org Thu Oct 6 01:42:32 2011 From: nad at acm.org (Ned Deily) Date: Wed, 05 Oct 2011 16:42:32 -0700 Subject: [Pythonmac-SIG] Python 2.7 (Lion) and user site-packages folder problem References: Message-ID: In article , "Hamid M." wrote: > When I make Apple-supplied python-2.7 the default python on my system, > it ignores my local site-packages folder in ~/Library/Python/2.7/site-packges > This does not happen when using 2.6! > Is this behavior expected ? How can I permanently add that folder to > my sys.path? For 2.7 (and 3.2), the location moved with the changes for Issue8084. Those changes proved somewhat controversial and so there is an as-yet unresolved issue about the location(s) for local site-packages on OS X (see also Issue7175). This will eventually get resolved before Python 3.3 releases. In the meantime, try: ~/Library/Python/2.7/lib/python/site-packages/ You should also be able to create a symlink to make the old and the new locations equivalent. http://bugs.python.org/issue8084 http://bugs.python.org/issue7175 -- Ned Deily, nad at acm.org From ronaldoussoren at mac.com Thu Oct 6 15:11:25 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Thu, 06 Oct 2011 15:11:25 +0200 Subject: [Pythonmac-SIG] py2app: ImportError In-Reply-To: <4E8B18E2.1090805@sccmail.maricopa.edu> References: <4E861A3A.5090203@sccmail.maricopa.edu> <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> <4E8B18E2.1090805@sccmail.maricopa.edu> Message-ID: On 4 Oct, 2011, at 16:32, Sean Robinson wrote: > On 10/04/2011 06:54 AM, Ronald Oussoren wrote: >> >> On 30 Sep, 2011, at 21:36, Sean Robinson wrote: >> >>> I have not yet been able to make a working stand-alone app bundle using py2app and I hope someone can point out what I'm missing. I am using py2app cloned from bitbucket (changeset 169:9d95dbc52431), but py2app 0.6.3 did not work, either. This is being done on OSX 10.6.8 with the Apple-provided python (v2.6.1). >>> >>> The app (quotidian) is a Tkinter python script that runs well from Terminal and partially from a py2app --alias app bundle. But the primary problem is that sub-modules with the project are not importing (see the stderr log below) on launch. The supposedly missing module is in site-packages.zip (as queue.pyc). I have verified that site-packages.zip is in sys.path. >>> >>> Does anyone have something else I can check? >> >> Can you reproduce this problem in a simple standalone application (using Tkinter is fine)? >> >> Ronald > > Attached is a minimal project (4 lines of Python in 3 files) that replicates the error I am seeing. Does your real project have the same structure? The test projects almost certainly fails because of implementation details in CPython. Your project has a module and a package named quot that are located in the same directory, which one gets loaded by CPython depends on the order they are seen by os.listdir. This happens to work fine on OSX because OSX sorts directories and therefore the package is found before the module. It doesn't work when the application is bundled by py2app because the module happens to be earlier in the zipfile directory than the package, and the "import quot.queue" in the main script fails because the import statement only looks at the quot module which doesn't have a submodule named queue. That said, the current behavior of py2app is still fishy at best. The 'quot.py' file is currently copied into quot.app/Contents/ (where is should be located for the bootstrap code) as well as the site-packages.zip file (and another location). The copy in the zipfile is not needed, and py2app shouldn't have copied it into that file. A quick workaround is to rename 'quot.py' to 'quot_script.py'. Ronald > > -- > Sean Robinson > Laboratory Technician > Physics Astronomy Geology > sean.robinson at sccmail.maricopa.edu > -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From sean.robinson at sccmail.maricopa.edu Thu Oct 6 16:51:04 2011 From: sean.robinson at sccmail.maricopa.edu (Sean Robinson) Date: Thu, 06 Oct 2011 07:51:04 -0700 Subject: [Pythonmac-SIG] py2app: ImportError In-Reply-To: References: <4E861A3A.5090203@sccmail.maricopa.edu> <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> <4E8B18E2.1090805@sccmail.maricopa.edu> Message-ID: <4E8DC058.50908@sccmail.maricopa.edu> On 10/06/2011 06:11 AM, Ronald Oussoren wrote: > > On 4 Oct, 2011, at 16:32, Sean Robinson wrote: > >> On 10/04/2011 06:54 AM, Ronald Oussoren wrote: >>> >>> On 30 Sep, 2011, at 21:36, Sean Robinson wrote: >>> >>>> I have not yet been able to make a working stand-alone app bundle using py2app and I hope someone can point out what I'm missing. I am using py2app cloned from bitbucket (changeset 169:9d95dbc52431), but py2app 0.6.3 did not work, either. This is being done on OSX 10.6.8 with the Apple-provided python (v2.6.1). >>>> >>>> The app (quotidian) is a Tkinter python script that runs well from Terminal and partially from a py2app --alias app bundle. But the primary problem is that sub-modules with the project are not importing (see the stderr log below) on launch. The supposedly missing module is in site-packages.zip (as queue.pyc). I have verified that site-packages.zip is in sys.path. >>>> >>>> Does anyone have something else I can check? >>> >>> Can you reproduce this problem in a simple standalone application (using Tkinter is fine)? >>> >>> Ronald >> >> Attached is a minimal project (4 lines of Python in 3 files) that replicates the error I am seeing. > > Does your real project have the same structure? The test projects almost certainly fails because of implementation details in CPython. Your project has a module and a package named quot that are located in the same directory, which one gets loaded by CPython depends on the order they are seen by os.listdir. This happens to work fine on OSX because OSX sorts directories and therefore the package is found before the module. > > It doesn't work when the application is bundled by py2app because the module happens to be earlier in the zipfile directory than the package, and the "import quot.queue" in the main script fails because the import statement only looks at the quot module which doesn't have a submodule named queue. > > That said, the current behavior of py2app is still fishy at best. The 'quot.py' file is currently copied into quot.app/Contents/ (where is should be located for the bootstrap code) as well as the site-packages.zip file (and another location). The copy in the zipfile is not needed, and py2app shouldn't have copied it into that file. > > A quick workaround is to rename 'quot.py' to 'quot_script.py'. > Yes, my actual project had the same structure with a module and package with the same name. This had not been a problem elsewhere, but I can see why it does not work with py2app. So, I'll make sure to avoid a name collision between my init module and all packages, which sounds like a good practice to follow anyway. Thank you for your help. My bundled app is running. Now to find why AppKit isn't importing... -- Sean Robinson Laboratory Technician Physics Astronomy Geology sean.robinson at sccmail.maricopa.edu From ronaldoussoren at mac.com Thu Oct 6 16:54:41 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Thu, 06 Oct 2011 16:54:41 +0200 Subject: [Pythonmac-SIG] py2app: ImportError In-Reply-To: <4E8DC058.50908@sccmail.maricopa.edu> References: <4E861A3A.5090203@sccmail.maricopa.edu> <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> <4E8B18E2.1090805@sccmail.maricopa.edu> <4E8DC058.50908@sccmail.maricopa.edu> Message-ID: <0E895460-C66D-46B5-BA3D-6E72CA724FAE@mac.com> On 6 Oct, 2011, at 16:51, Sean Robinson wrote: > On 10/06/2011 06:11 AM, Ronald Oussoren wrote: >> >> On 4 Oct, 2011, at 16:32, Sean Robinson wrote: >> >>> On 10/04/2011 06:54 AM, Ronald Oussoren wrote: >>>> >>>> On 30 Sep, 2011, at 21:36, Sean Robinson wrote: >>>> >>>>> I have not yet been able to make a working stand-alone app bundle using py2app and I hope someone can point out what I'm missing. I am using py2app cloned from bitbucket (changeset 169:9d95dbc52431), but py2app 0.6.3 did not work, either. This is being done on OSX 10.6.8 with the Apple-provided python (v2.6.1). >>>>> >>>>> The app (quotidian) is a Tkinter python script that runs well from Terminal and partially from a py2app --alias app bundle. But the primary problem is that sub-modules with the project are not importing (see the stderr log below) on launch. The supposedly missing module is in site-packages.zip (as queue.pyc). I have verified that site-packages.zip is in sys.path. >>>>> >>>>> Does anyone have something else I can check? >>>> >>>> Can you reproduce this problem in a simple standalone application (using Tkinter is fine)? >>>> >>>> Ronald >>> >>> Attached is a minimal project (4 lines of Python in 3 files) that replicates the error I am seeing. >> >> Does your real project have the same structure? The test projects almost certainly fails because of implementation details in CPython. Your project has a module and a package named quot that are located in the same directory, which one gets loaded by CPython depends on the order they are seen by os.listdir. This happens to work fine on OSX because OSX sorts directories and therefore the package is found before the module. >> >> It doesn't work when the application is bundled by py2app because the module happens to be earlier in the zipfile directory than the package, and the "import quot.queue" in the main script fails because the import statement only looks at the quot module which doesn't have a submodule named queue. >> >> That said, the current behavior of py2app is still fishy at best. The 'quot.py' file is currently copied into quot.app/Contents/ (where is should be located for the bootstrap code) as well as the site-packages.zip file (and another location). The copy in the zipfile is not needed, and py2app shouldn't have copied it into that file. >> >> A quick workaround is to rename 'quot.py' to 'quot_script.py'. >> > > Yes, my actual project had the same structure with a module and package with the same name. This had not been a problem elsewhere, but I can see why it does not work with py2app. So, I'll make sure to avoid a name collision between my init module and all packages, which sounds like a good practice to follow anyway. > > Thank you for your help. My bundled app is running. Now to find why AppKit isn't importing? I've just pushed a partial fix to the repository, this fixes the issue for regular builds but not yet for '--alias' builds. Your code was very helpful in finding the cause of the issue, and while writing a testcase for this problem. W.r.t. to AppKit not importing, does it import outside of the app bundle? Ronald > > > -- > Sean Robinson > Laboratory Technician > Physics Astronomy Geology > sean.robinson at sccmail.maricopa.edu -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From sean.robinson at sccmail.maricopa.edu Thu Oct 6 22:35:57 2011 From: sean.robinson at sccmail.maricopa.edu (Sean Robinson) Date: Thu, 06 Oct 2011 13:35:57 -0700 Subject: [Pythonmac-SIG] AppKit ImportError (was py2app: ImportError) In-Reply-To: <0E895460-C66D-46B5-BA3D-6E72CA724FAE@mac.com> References: <4E861A3A.5090203@sccmail.maricopa.edu> <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> <4E8B18E2.1090805@sccmail.maricopa.edu> <4E8DC058.50908@sccmail.maricopa.edu> <0E895460-C66D-46B5-BA3D-6E72CA724FAE@mac.com> Message-ID: <4E8E112D.4010803@sccmail.maricopa.edu> On 10/06/2011 07:54 AM, Ronald Oussoren wrote: > >> On 6 Oct, 2011, at 16:51, Sean Robinson wrote: >> >> >> Yes, my actual project had the same structure with a module and package with the same name. This had not been a problem elsewhere, but I can see why it does not work with py2app. So, I'll make sure to avoid a name collision between my init module and all packages, which sounds like a good practice to follow anyway. >> >> Thank you for your help. My bundled app is running. Now to find why AppKit isn't importing? > > I've just pushed a partial fix to the repository, this fixes the issue for regular builds but not yet for '--alias' builds. Your code was very helpful in finding the cause of the issue, and while writing a testcase for this problem. > > W.r.t. to AppKit not importing, does it import outside of the app bundle? > My script works as 'python quot.py' and now I am trying to bundle it up for my users to be able to click and run. So, yes, from Terminal, AppKit imports correctly and the AppKit.NSSound module works well. Looking at the various logs reported by py2app, it does not appear that the needed dirs are added to the app bundle's sys.path. The follow process creates a failing AppKit import from the app bundle for me and shows different sys.path for 'python quot.py' vs app bundle launch. I can provide much more detail (including modulegraph debug output) if requested, but the following steps in a Terminal window can reproduce the error for me every time. $ echo "import sys" >> quot.py $ echo "print sys.path" >> quot.py $ echo "import AppKit" >> quot.py $ cat quot.py import sys print sys.path import AppKit $ py2applet --make-setup quot.py Wrote setup.py $ python quot.py NOTE: list of dirs in path $ rm -rf build dist && python setup.py py2app running py2app $ open -a quot NOTE: Error window appears and output is captured in Console which can be condensed to "ImportError: No module named AppKit". I believe I can overcome this error by finding the right path(s) to append to the app bundle's sys.path, but I'm surprised that py2app does not do this automagically. -- Sean Robinson Laboratory Technician Physics Astronomy Geology sean.robinson at sccmail.maricopa.edu From ronaldoussoren at mac.com Sat Oct 8 16:36:04 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Sat, 08 Oct 2011 16:36:04 +0200 Subject: [Pythonmac-SIG] AppKit ImportError (was py2app: ImportError) In-Reply-To: <4E8E112D.4010803@sccmail.maricopa.edu> References: <4E861A3A.5090203@sccmail.maricopa.edu> <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> <4E8B18E2.1090805@sccmail.maricopa.edu> <4E8DC058.50908@sccmail.maricopa.edu> <0E895460-C66D-46B5-BA3D-6E72CA724FAE@mac.com> <4E8E112D.4010803@sccmail.maricopa.edu> Message-ID: <4D096628-2128-45B1-99A4-F674C5788F7E@mac.com> On 6 Oct, 2011, at 22:35, Sean Robinson wrote: > On 10/06/2011 07:54 AM, Ronald Oussoren wrote: >> >>> On 6 Oct, 2011, at 16:51, Sean Robinson wrote: >>> >>> >>> Yes, my actual project had the same structure with a module and package with the same name. This had not been a problem elsewhere, but I can see why it does not work with py2app. So, I'll make sure to avoid a name collision between my init module and all packages, which sounds like a good practice to follow anyway. >>> >>> Thank you for your help. My bundled app is running. Now to find why AppKit isn't importing? >> >> I've just pushed a partial fix to the repository, this fixes the issue for regular builds but not yet for '--alias' builds. Your code was very helpful in finding the cause of the issue, and while writing a testcase for this problem. >> >> W.r.t. to AppKit not importing, does it import outside of the app bundle? >> > > My script works as 'python quot.py' and now I am trying to bundle it up for my users to be able to click and run. So, yes, from Terminal, AppKit imports correctly and the AppKit.NSSound module works well. > > Looking at the various logs reported by py2app, it does not appear that the needed dirs are added to the app bundle's sys.path. The follow process creates a failing AppKit import from the app bundle for me and shows different sys.path for 'python quot.py' vs app bundle launch. I can provide much more detail (including modulegraph debug output) if requested, but the following steps in a Terminal window can reproduce the error for me every time. > > $ echo "import sys" >> quot.py > $ echo "print sys.path" >> quot.py > $ echo "import AppKit" >> quot.py > $ cat quot.py > import sys > print sys.path > import AppKit > > $ py2applet --make-setup quot.py > Wrote setup.py > > $ python quot.py > NOTE: list of dirs in path > > $ rm -rf build dist && python setup.py py2app > running py2app > > $ open -a quot > NOTE: Error window appears and output is captured in Console which can be condensed to "ImportError: No module named AppKit". > > > I believe I can overcome this error by finding the right path(s) to append to the app bundle's sys.path, but I'm surprised that py2app does not do this automagically. py2app should do this automaticly. What version of python do you use? Is that a custom install or the system version of python? And finally, which OSX version are you using? Ronald > > -- > Sean Robinson > Laboratory Technician > Physics Astronomy Geology > sean.robinson at sccmail.maricopa.edu -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From spam.wax at gmail.com Mon Oct 10 16:11:13 2011 From: spam.wax at gmail.com (Hamid M.) Date: Mon, 10 Oct 2011 10:11:13 -0400 Subject: [Pythonmac-SIG] Python 2.7 (Lion) and user site-packages folder problem In-Reply-To: References: Message-ID: On Wed, Oct 5, 2011 at 7:42 PM, Ned Deily wrote: > For 2.7 (and 3.2), the location moved with the changes for Issue8084. > Those changes proved somewhat controversial and so there is an as-yet > unresolved issue about the location(s) for local site-packages on OS X > (see also Issue7175). ?This will eventually get resolved before Python > 3.3 releases. ?In the meantime, try: > > ? ?~/Library/Python/2.7/lib/python/site-packages/ > Thanks Ned, this fixed the problem. From sean.robinson at sccmail.maricopa.edu Mon Oct 10 16:44:19 2011 From: sean.robinson at sccmail.maricopa.edu (Sean Robinson) Date: Mon, 10 Oct 2011 07:44:19 -0700 Subject: [Pythonmac-SIG] AppKit ImportError (was py2app: ImportError) In-Reply-To: <4D096628-2128-45B1-99A4-F674C5788F7E@mac.com> References: <4E861A3A.5090203@sccmail.maricopa.edu> <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> <4E8B18E2.1090805@sccmail.maricopa.edu> <4E8DC058.50908@sccmail.maricopa.edu> <0E895460-C66D-46B5-BA3D-6E72CA724FAE@mac.com> <4E8E112D.4010803@sccmail.maricopa.edu> <4D096628-2128-45B1-99A4-F674C5788F7E@mac.com> Message-ID: <4E9304C3.7050309@sccmail.maricopa.edu> On 10/08/2011 07:36 AM, Ronald Oussoren wrote: > > On 6 Oct, 2011, at 22:35, Sean Robinson wrote: > >> On 10/06/2011 07:54 AM, Ronald Oussoren wrote: >>> >>>> On 6 Oct, 2011, at 16:51, Sean Robinson wrote: >>>> >>>> >>>> Yes, my actual project had the same structure with a module and package with the same name. This had not been a problem elsewhere, but I can see why it does not work with py2app. So, I'll make sure to avoid a name collision between my init module and all packages, which sounds like a good practice to follow anyway. >>>> >>>> Thank you for your help. My bundled app is running. Now to find why AppKit isn't importing? >>> >>> I've just pushed a partial fix to the repository, this fixes the issue for regular builds but not yet for '--alias' builds. Your code was very helpful in finding the cause of the issue, and while writing a testcase for this problem. >>> >>> W.r.t. to AppKit not importing, does it import outside of the app bundle? >>> >> >> My script works as 'python quot.py' and now I am trying to bundle it up for my users to be able to click and run. So, yes, from Terminal, AppKit imports correctly and the AppKit.NSSound module works well. >> >> Looking at the various logs reported by py2app, it does not appear that the needed dirs are added to the app bundle's sys.path. The follow process creates a failing AppKit import from the app bundle for me and shows different sys.path for 'python quot.py' vs app bundle launch. I can provide much more detail (including modulegraph debug output) if requested, but the following steps in a Terminal window can reproduce the error for me every time. >> >> $ echo "import sys">> quot.py >> $ echo "print sys.path">> quot.py >> $ echo "import AppKit">> quot.py >> $ cat quot.py >> import sys >> print sys.path >> import AppKit >> >> $ py2applet --make-setup quot.py >> Wrote setup.py >> >> $ python quot.py >> NOTE: list of dirs in path >> >> $ rm -rf build dist&& python setup.py py2app >> running py2app >> >> $ open -a quot >> NOTE: Error window appears and output is captured in Console which can be condensed to "ImportError: No module named AppKit". >> >> >> I believe I can overcome this error by finding the right path(s) to append to the app bundle's sys.path, but I'm surprised that py2app does not do this automagically. > > py2app should do this automaticly. What version of python do you use? Is that a custom install or the system version of python? And finally, which OSX version are you using? > This is on OSX 10.6.8, using the system version of Python 2.6.1. The only non-standard packages/modules are py2app (0.6.4 pre-release and its requirements) installed local to the user account. I am developing as vanilla as I can get. -- Sean Robinson Laboratory Technician Physics Astronomy Geology sean.robinson at sccmail.maricopa.edu From spam.wax at gmail.com Mon Oct 10 21:22:49 2011 From: spam.wax at gmail.com (Hamid M.) Date: Mon, 10 Oct 2011 15:22:49 -0400 Subject: [Pythonmac-SIG] py2app with 64-bit argv emulation support Message-ID: Hello, Lack of 64-bit argv_emulation is causing a lot of headache for me as I have to build all libraries that my application relies on in 32-bit, which hasn't been successful. I was wondering if there is a new update to py2app that supports argv_emulation in 64-bit. I have tried the svn repository version of py2app with no success. Any hints is greatly appreciated. thanks From sean.robinson at sccmail.maricopa.edu Mon Oct 10 23:07:32 2011 From: sean.robinson at sccmail.maricopa.edu (Sean Robinson) Date: Mon, 10 Oct 2011 14:07:32 -0700 Subject: [Pythonmac-SIG] py2app with 64-bit argv emulation support In-Reply-To: References: Message-ID: <4E935E94.1070608@sccmail.maricopa.edu> On 10/10/2011 12:22 PM, Hamid M. wrote: > Lack of 64-bit argv_emulation is causing a lot of headache for me as I > have to build all libraries that my application relies on in 32-bit, > which hasn't been successful. > I was wondering if there is a new update to py2app that supports > argv_emulation in 64-bit. > I have tried the svn repository version of py2app with no success. > > Any hints is greatly appreciated. > Have you tried the 0.6.4 pre-release version from https://bitbucket.org/ronaldoussoren/py2app ? In that version, argv_emulation works for me in 64-bit. -- Sean Robinson Laboratory Technician Physics Astronomy Geology sean.robinson at sccmail.maricopa.edu From spam.wax at gmail.com Tue Oct 11 04:57:23 2011 From: spam.wax at gmail.com (Hamid M.) Date: Mon, 10 Oct 2011 22:57:23 -0400 Subject: [Pythonmac-SIG] py2app with 64-bit argv emulation support In-Reply-To: <4E935E94.1070608@sccmail.maricopa.edu> References: <4E935E94.1070608@sccmail.maricopa.edu> Message-ID: On Mon, Oct 10, 2011 at 5:07 PM, Sean Robinson wrote: > ?Have you tried the 0.6.4 pre-release version from > https://bitbucket.org/ronaldoussoren/py2app ? ?In that version, > argv_emulation works for me in 64-bit. > Thanks for the link, I wasn't aware of that. It worked, will test the .app on other machines tomorrow and post back results here. From spam.wax at gmail.com Tue Oct 11 21:12:15 2011 From: spam.wax at gmail.com (Hamid M.) Date: Tue, 11 Oct 2011 15:12:15 -0400 Subject: [Pythonmac-SIG] py2app with 64-bit argv emulation support In-Reply-To: References: <4E935E94.1070608@sccmail.maricopa.edu> Message-ID: On Mon, Oct 10, 2011 at 10:57 PM, Hamid M. wrote: > On Mon, Oct 10, 2011 at 5:07 PM, Sean Robinson > wrote: >> ?Have you tried the 0.6.4 pre-release version from >> https://bitbucket.org/ronaldoussoren/py2app ? ?In that version, >> argv_emulation works for me in 64-bit. >> > > Thanks for the link, I wasn't aware of that. > It worked, will test the .app on other machines tomorrow and post back > results here. > The resulting app workined on Lion 10.7.1 Thanks again for your help. From rowen at uw.edu Wed Oct 12 23:29:36 2011 From: rowen at uw.edu (Russell E. Owen) Date: Wed, 12 Oct 2011 14:29:36 -0700 Subject: [Pythonmac-SIG] Trouble building against Tkinter on 64-bit python.org python Message-ID: I'm on MacOS X 10.6.8 using 64-bit Python 2.7.2 from python.org (the 10.6 version) and ActiveState Tcl/Tk 8.5.10. I would like to build matplotlib 1.1.0 (in fact I'd like to build an official binary installer) and am running into problems. The build and install goes fine, though with a few odd messages (see appended log). But importing pylab rusults in: objc[1083]: Class TKApplication is implemented in both /Library/Frameworks/Tk.framework/Versions/8.5/Tk and /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk. One of the two will be used. Which one is undefined. objc[1083]: Class TKMenu is implemented in both /Library/Frameworks/Tk.framework/Versions/8.5/Tk and /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk. One of the two will be used. Which one is undefined. objc[1083]: Class TKContentView is implemented in both /Library/Frameworks/Tk.framework/Versions/8.5/Tk and /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk. One of the two will be used. Which one is undefined. objc[1083]: Class TKWindow is implemented in both /Library/Frameworks/Tk.framework/Versions/8.5/Tk and /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk. One of the two will be used. Which one is undefined. Any idea how to deal with this? Google turned up others with this problem but no obvious solution. -- Russell P.S. partial log of build (not install) of matplotlib: Edit setupext.py to point it to Apple's built-in libraries, plus include /usr/local (which doesn't have a lot in it --nothing in lib or includes): 'darwin' : ['/usr/local', '/usr', '/usr/X11'], $ python setup.py build BUILDING MATPLOTLIB ???????????matplotlib: 1.1.0 ???????????????python: 2.7.2 (v2.7.2:8527427914a2, Jun 11 2011, 15:22:34) ???????????????????????[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] ?????????????platform: darwin REQUIRED DEPENDENCIES ????????????????numpy: 1.6.1 ????????????freetype2: found, but unknown version (no pkg-config) OPTIONAL BACKEND DEPENDENCIES ???????????????libpng: found, but unknown version (no pkg-config) ??????????????Tkinter: Tkinter: version not identified, Tk: 8.5, Tcl: 8.5 ?????????????????Gtk+: no ???????????????????????* Building for Gtk+ requires pygtk; you must be able ???????????????????????* to "import gtk" in your build/install environment ??????Mac OS X native: yes ???????????????????Qt: no ??????????????????Qt4: no ????????????????Cairo: no OPTIONAL DATE/TIMEZONE DEPENDENCIES ?????????????datetime: present, version unknown ?????????????dateutil: matplotlib will provide ?????????????????pytz: matplotlib will provide adding pytz OPTIONAL USETEX DEPENDENCIES ???????????????dvipng: no ??????????ghostscript: /bin/sh: gs: command not found ????????????????latex: no [Edit setup.cfg to suppress the above messages] ========================================================================= === pymods ['pylab'] packages ['matplotlib', 'matplotlib.backends', 'matplotlib.backends.qt4_editor', 'matplotlib.projections', 'matplotlib.testing', 'matplotlib.testing.jpl_units', 'matplotlib.tests', 'mpl_toolkits', 'mpl_toolkits.mplot3d', 'mpl_toolkits.axes_grid', 'mpl_toolkits.axes_grid1', 'mpl_toolkits.axisartist', 'matplotlib.sphinxext', 'matplotlib.tri', 'matplotlib.delaunay', 'pytz', 'dateutil', 'dateutil.zoneinfo'] running build running build_py ... gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -DPYCXX_ISO_CPP_LIB=1 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders -I/Library/Frameworks/Tk.framework/Headers -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Tcl.framework/Headers/freetype2 -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders/freet ype2 -I/Library/Frameworks/Tk.framework/Headers/freetype2 -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders/freety pe2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -Isrc/freetype2 -Iagg24/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/agg_py_transforms.cpp -o build/temp.macosx-10.6-intel-2.7/src/agg_py_transforms.o -framework Tcl -framework Tk i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -DPYCXX_ISO_CPP_LIB=1 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders -I/Library/Frameworks/Tk.framework/Headers -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Tcl.framework/Headers/freetype2 -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders/freet ype2 -I/Library/Frameworks/Tk.framework/Headers/freetype2 -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders/freety pe2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -Isrc/freetype2 -Iagg24/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/_tkagg.cpp -o build/temp.macosx-10.6-intel-2.7/src/_tkagg.o -framework Tcl -framework Tk i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -DPYCXX_ISO_CPP_LIB=1 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders -I/Library/Frameworks/Tk.framework/Headers -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Tcl.framework/Headers/freetype2 -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders/freet ype2 -I/Library/Frameworks/Tk.framework/Headers/freetype2 -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders/freety pe2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -Isrc/freetype2 -Iagg24/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c CXX/cxx_extensions.cxx -o build/temp.macosx-10.6-intel-2.7/CXX/cxx_extensions.o -framework Tcl -framework Tk i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -DPYCXX_ISO_CPP_LIB=1 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders -I/Library/Frameworks/Tk.framework/Headers -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Tcl.framework/Headers/freetype2 -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders/freet ype2 -I/Library/Frameworks/Tk.framework/Headers/freetype2 -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders/freety pe2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -Isrc/freetype2 -Iagg24/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c CXX/cxxsupport.cxx -o build/temp.macosx-10.6-intel-2.7/CXX/cxxsupport.o -framework Tcl -framework Tk i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -DPYCXX_ISO_CPP_LIB=1 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders -I/Library/Frameworks/Tk.framework/Headers -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Tcl.framework/Headers/freetype2 -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders/freet ype2 -I/Library/Frameworks/Tk.framework/Headers/freetype2 -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders/freety pe2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -Isrc/freetype2 -Iagg24/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c CXX/IndirectPythonInterface.cxx -o build/temp.macosx-10.6-intel-2.7/CXX/IndirectPythonInterface.o -framework Tcl -framework Tk i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -DPYCXX_ISO_CPP_LIB=1 -I/Library/Frameworks/Tcl.framework/Headers -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders -I/Library/Frameworks/Tk.framework/Headers -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Tcl.framework/Headers/freetype2 -I/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders/freet ype2 -I/Library/Frameworks/Tk.framework/Headers/freetype2 -I/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders/freety pe2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -Isrc/freetype2 -Iagg24/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include/freetype2 -I/usr/include/freetype2 -I/usr/X11/include/freetype2 -I./freetype2 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c CXX/cxxextensions.c -o build/temp.macosx-10.6-intel-2.7/CXX/cxxextensions.o -framework Tcl -framework Tk i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tcl: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: -framework: linker input file unused because linking not done i686-apple-darwin10-gcc-4.2.1: Tk: linker input file unused because linking not done c++ -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -isysroot /Developer/SDKs/MacOSX10.6.sdk -g build/temp.macosx-10.6-intel-2.7/src/agg_py_transforms.o build/temp.macosx-10.6-intel-2.7/src/_tkagg.o build/temp.macosx-10.6-intel-2.7/CXX/cxx_extensions.o build/temp.macosx-10.6-intel-2.7/CXX/cxxsupport.o build/temp.macosx-10.6-intel-2.7/CXX/IndirectPythonInterface.o build/temp.macosx-10.6-intel-2.7/CXX/cxxextensions.o -L/usr/lib -L/usr/X11/lib -L/usr/lib -L/usr/X11/lib -lstdc++ -lm -lfreetype -lz -lstdc++ -lm -o build/lib.macosx-10.6-intel-2.7/matplotlib/backends/_tkagg.so -framework Tcl -framework Tk building 'matplotlib.backends._macosx' extension gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -DPYCXX_ISO_CPP_LIB=1 -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -I/usr/include -I/usr/X11/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-pa ckages/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/_macosx.m -o build/temp.macosx-10.6-intel-2.7/src/_macosx.o src/_macosx.m: In function ?FigureManager_init?: src/_macosx.m:3755: warning: class 'View' does not implement the 'NSWindowDelegate' protocol src/_macosx.m: In function ?FigureManager_init?: src/_macosx.m:3755: warning: class 'View' does not implement the 'NSWindowDelegate' protocol From kw at codebykevin.com Thu Oct 13 01:44:11 2011 From: kw at codebykevin.com (Kevin Walzer) Date: Wed, 12 Oct 2011 19:44:11 -0400 Subject: [Pythonmac-SIG] Trouble building against Tkinter on 64-bit python.org python In-Reply-To: References: Message-ID: <4E96264B.5050709@codebykevin.com> On 10/12/11 5:29 PM, Russell E. Owen wrote: > objc[1083]: Class TKWindow is implemented in both > /Library/Frameworks/Tk.framework/Versions/8.5/Tk and > /System/Library/Frameworks/Tk.framework/Versions/8.5/Tk. One of the two > will be used. Which one is undefined. > > Any idea how to deal with this? Google turned up others with this > problem but no obvious solution. With Tk-Cocoa, typically you see this message when mixing libraries that are linked to the system Tk in /System/Library/Frameworks/Tk.framework and another installation (typically ActiveTcl) in /Library/Frameworks/Tk.framework. OS X gets confused and crashes with that error message. The only solution I've found is by making sure that all of your Tk-linked libraries link to one location or the other. You can do this by running otool -L on the relevant binaries and seeing where things are linked. If you're only seeing this issue now after building matplotlib, then it's logical to assume that matplotlib may have been linked to the wrong library. You can change the linking by running install_name_tool to get matplotlib to point to the correct version of Tk. --Kevin -- Kevin Walzer Code by Kevin http://www.codebykevin.com From schneo at gmail.com Thu Oct 13 15:16:36 2011 From: schneo at gmail.com (schneo) Date: Thu, 13 Oct 2011 15:16:36 +0200 Subject: [Pythonmac-SIG] =?windows-1252?q?py2app_problem_with_wxpython_on_?= =?windows-1252?q?Apple_python_2=2E7_Lion_=3A_can=92t_find_=5F=5Fco?= =?windows-1252?q?re=5F=5F=2Eso_etc?= Message-ID: Hello all, I?m on a fresh install of OS X Lion with Apple version of Python 2.7 (64bits) + installed wxPython2.9-osx-cocoa-py2.7 + (py2app with easy_install as explained here : http://svn.pythonmac.org/py2app/py2app/trunk/doc/index.html ) The bundle .app is well created but when I launch it, => PM [0x0-0x106106].org.pythonmac.unspecified.test1: ImportError: '/usr/lib/python2.7/lib-dynload/wx/_core_.so' not found The wxpython .so files exist in the bundle: fbook:Contents sfx$ ls Resources/lib/python2.7/lib-dynload/wx _controls_.so _core_.so _gdi_.so _misc_.so _windows_.so: How can I solve this issue knowing that I need to use the Python shipped by Apple (I rely on their version of PyObjC). I don?t mind doing manually the necessary changes each time for the .app. Should I move the .so files in another place in the bundle? Should I add the .so files in /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload ? Thanks in advance for your time and help. Francois -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronaldoussoren at mac.com Fri Oct 14 08:03:57 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Fri, 14 Oct 2011 08:03:57 +0200 Subject: [Pythonmac-SIG] AppKit ImportError (was py2app: ImportError) In-Reply-To: <4E971103.5080702@sccmail.maricopa.edu> References: <4E861A3A.5090203@sccmail.maricopa.edu> <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> <4E8B18E2.1090805@sccmail.maricopa.edu> <4E8DC058.50908@sccmail.maricopa.edu> <0E895460-C66D-46B5-BA3D-6E72CA724FAE@mac.com> <4E8E112D.4010803@sccmail.maricopa.edu> <4D096628-2128-45B1-99A4-F674C5788F7E@mac.com> <4E9304C3.7050309@sccmail.maricopa.edu> <4E971103.5080702@sccmail.maricopa.edu> Message-ID: <20EF582C-3984-439E-A8F9-D92232DDDD0E@mac.com> On 13 Oct, 2011, at 18:25, Sean Robinson wrote: > On 10/10/2011 07:44 AM, Sean Robinson wrote: >> On 10/08/2011 07:36 AM, Ronald Oussoren wrote: >>> >>> On 6 Oct, 2011, at 22:35, Sean Robinson wrote: >>>> >>>> I believe I can overcome this error by finding the right path(s) to >>>> append to the app bundle's sys.path, but I'm surprised that py2app >>>> does not do this automagically. >>> >>> py2app should do this automaticly. What version of python do you use? >>> Is that a custom install or the system version of python? And finally, >>> which OSX version are you using? >>> >> >> This is on OSX 10.6.8, using the system version of Python 2.6.1. The >> only non-standard packages/modules are py2app (0.6.4 pre-release and its >> requirements) installed local to the user account. I am developing as >> vanilla as I can get. >> > > Ronald, > > So, to follow-up... I have been able to create a working semi-standalone app bundle (which is what I wanted) by adding two more dirs to sys.path. Thank you for py2app and for your help. My app bundles work on 10.6.3 and 10.6.8 with the default Apple-provided Python on each. Thank you. I'm going to use this to reproduce the problem and fix py2app. Ronald -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From mwalker at mac.com Thu Oct 6 19:07:32 2011 From: mwalker at mac.com (Mel Walker) Date: Thu, 06 Oct 2011 10:07:32 -0700 Subject: [Pythonmac-SIG] disableRelaunchOnLogin and PyObjC Message-ID: <8E6EA652-93C4-4BE1-B01E-AA4529C56165@mac.com> I have a utility application that should not be relaunched on login, so I figure I'd better call [NSApp -disableRelaunchOnLogin] in the code, as recommended for 10.7. The problem I'm having is that the code runs back to 10.5. In Objective-C I would just call respondsToSelector:, but I'm having trouble with getting the syntax correct. Google searches are not helping; perhaps it's just too early in the morning. :-) (1) Could someone either point me to a good piece of sample code that would show me the kind of thing I need to do, or (2) show me a preferred Pythonic way to do the same thing? -- Mel -------------- next part -------------- An HTML attachment was scrubbed... URL: From davecortesi at gmail.com Mon Oct 17 23:15:55 2011 From: davecortesi at gmail.com (David Cortesi) Date: Mon, 17 Oct 2011 14:15:55 -0700 Subject: [Pythonmac-SIG] [py2app] - error: argv-emulation is not supported for 64-bit executables Message-ID: This seems to be a rather FAsked question, based on googling that error string. Not FAnswered, however, altho it is probably relevant that on this list in August, Ronald Oussoren wrote, "The py2app repository contains a version of the argv emulator that works in 64-bit mode. I have to rebuild the executable stubs on a 10.6 system with Xcode 3 before I can release that version, that should hopefully happen later this week." I am trying to package a PyQt4 app on snow leopard. There would seem to be no way around needing argv emulation, as a QApplication is necessary and it requires sys.argv. I am using what should be the latest py2app (0.6.3), installed today. I tried arch -i386 python setup.py py2app but the same error message appeared. Any suggestions or comments appreciated. From sean.robinson at sccmail.maricopa.edu Tue Oct 18 00:21:01 2011 From: sean.robinson at sccmail.maricopa.edu (Sean Robinson) Date: Mon, 17 Oct 2011 15:21:01 -0700 Subject: [Pythonmac-SIG] [py2app] - error: argv-emulation is not supported for 64-bit executables In-Reply-To: References: Message-ID: <4E9CAA4D.3070309@sccmail.maricopa.edu> On 10/17/2011 02:15 PM, David Cortesi wrote: > This seems to be a rather FAsked question, based on googling that > error string. Not FAnswered, however, altho it is probably relevant > that on this list in August, Ronald Oussoren wrote, "The py2app > repository contains a version of the argv emulator that works in > 64-bit mode. I have to rebuild the executable stubs on a 10.6 system > with Xcode 3 before I can release that version, that should hopefully > happen later this week." > > I am trying to package a PyQt4 app on snow leopard. There would seem > to be no way around needing argv emulation, as a QApplication is > necessary and it requires sys.argv. > > I am using what should be the latest py2app (0.6.3), installed today. > I tried arch -i386 python setup.py py2app but the same error message > appeared. > > Any suggestions or comments appreciated. Try the 0.6.4 pre-release version from https://bitbucket.org/ronaldoussoren/py2app In that version, argv_emulation has worked for me (and others on this list) in 64-bit. I have recently (today) used argv_emulation with --argv-inject to quickly and easily create multiple app bundle versions from a single base. Please let us all know whether or not this version works for you. -- Sean Robinson Laboratory Technician Physics Astronomy Geology sean.robinson at sccmail.maricopa.edu From davecortesi at gmail.com Tue Oct 18 01:56:50 2011 From: davecortesi at gmail.com (David Cortesi) Date: Mon, 17 Oct 2011 16:56:50 -0700 Subject: [Pythonmac-SIG] [py2app] - error: argv-emulation is not supported for 64-bit executables In-Reply-To: <4E9CAA4D.3070309@sccmail.maricopa.edu> References: <4E9CAA4D.3070309@sccmail.maricopa.edu> Message-ID: Thank you, that sounds good. I have downloaded it, and now have the folder py2app, but the relationship between that and setup.py is not clear to me. I was blindly following the instructions in the py2app doc, e.g. "sudo easy_install -U py2app" etc, but I can't find where that actually stashed py2app -- or how setup.py locates it for the command "setup.py py2app..." -- in order to replace it with this later one. Sorry to be such a noob. On Mon, Oct 17, 2011 at 3:21 PM, Sean Robinson wrote: > >> I am using what should be the latest py2app (0.6.3), installed today. > > ?Try the 0.6.4 pre-release version from > https://bitbucket.org/ronaldoussoren/py2app ?In that version, argv_emulation > has worked for me (and others on this list) in 64-bit. ?I have recently > (today) used argv_emulation with --argv-inject to quickly and easily create > multiple app bundle versions from a single base. From ronaldoussoren at mac.com Tue Oct 18 16:44:44 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Tue, 18 Oct 2011 16:44:44 +0200 Subject: [Pythonmac-SIG] disableRelaunchOnLogin and PyObjC In-Reply-To: <8E6EA652-93C4-4BE1-B01E-AA4529C56165@mac.com> References: <8E6EA652-93C4-4BE1-B01E-AA4529C56165@mac.com> Message-ID: On 6 Oct, 2011, at 19:07, Mel Walker wrote: > I have a utility application that should not be relaunched on login, so I figure I'd better call [NSApp -disableRelaunchOnLogin] in the code, as recommended for 10.7. The problem I'm having is that the code runs back to 10.5. In Objective-C I would just call respondsToSelector:, but I'm having trouble with getting the syntax correct. Google searches are not helping; perhaps it's just too early in the morning. :-) > > (1) Could someone either point me to a good piece of sample code that would show me the kind of thing I need to do, or NSApp.instancesRespondToSelector_(b'disableRelaunchOnLogin') can be used to check the application instance responds to the selector > (2) show me a preferred Pythonic way to do the same thing? Using this method would be fine, you could also use: try: anNSApp.disableRelaunchOnLogin() except AttributeError: pass I'd use an explicit test to get slightly cleaner code, and code that's closer to a common Cocoa pattern. Ronald > > -- > Mel > > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From ronaldoussoren at mac.com Tue Oct 18 16:50:49 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Tue, 18 Oct 2011 16:50:49 +0200 Subject: [Pythonmac-SIG] [py2app] - error: argv-emulation is not supported for 64-bit executables In-Reply-To: References: <4E9CAA4D.3070309@sccmail.maricopa.edu> Message-ID: <7660E5BD-C635-41D4-A7E2-2496B8341324@mac.com> On 18 Oct, 2011, at 1:56, David Cortesi wrote: > Thank you, that sounds good. I have downloaded it, and now have the > folder py2app, but the relationship between that and setup.py is not > clear to me. I was blindly following the instructions in the py2app > doc, e.g. "sudo easy_install -U py2app" etc, but I can't find where > that actually stashed py2app -- or how setup.py locates it for the > command "setup.py py2app..." -- in order to replace it with this later > one. Sorry to be such a noob. py2app implements the extension mechanism of setuptools, if you use that (by importing setuptools or distribute in your setup.py file) the setuptools package knows how to find the py2app command in your site-packages directory. Otherwise you need to have 'import py2app' in your setup.py file and python looks on its search path for the py2app module. "sudo easy_install ?." installs py2app in the site-packages folder of the Python installation that's associated with the easy_install tool. You can use "sudo type easy_install" to determine which copy of easy_install got used, if that refers to '/usr/bin/easy_install' you have installed py2app in the System installation of Python (/System/Library/Frameworks/Python.framework/Versions/Current). Ronald > > On Mon, Oct 17, 2011 at 3:21 PM, Sean Robinson > wrote: >> >>> I am using what should be the latest py2app (0.6.3), installed today. >> >> Try the 0.6.4 pre-release version from >> https://bitbucket.org/ronaldoussoren/py2app In that version, argv_emulation >> has worked for me (and others on this list) in 64-bit. I have recently >> (today) used argv_emulation with --argv-inject to quickly and easily create >> multiple app bundle versions from a single base. > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From carbncl at gmail.com Thu Oct 20 10:58:14 2011 From: carbncl at gmail.com (carbncl) Date: Thu, 20 Oct 2011 10:58:14 +0200 Subject: [Pythonmac-SIG] [py2app] packaging an egg using pkg_resources Message-ID: <82063C0E-12CF-41A5-B933-A1622AFFEF40@gmail.com> Hi, First of all, not being experienced with python, my apologies if this question answer was obvious, but I couldn't find a clear answer / solution to this. I'm currently trying to package a pyGtk application as an OSX one. This application is distributed as an egg and use pkg_resources facilities to get things like app version and glade resources. Having pkg_resources errors, from what I understand and found searching and reading this mailing list, I came to the following conclusions: py2app is not designed to use eggs pkg_resources requires a distribution format like eggs to have the required metadata to introspect a package. Does this assumptions are true? > Does that means I have to purge code from pkg_resources calls? Any good suggestion / recommended implementation is welcome. Vincent. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronaldoussoren at mac.com Thu Oct 20 11:35:00 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Thu, 20 Oct 2011 11:35:00 +0200 Subject: [Pythonmac-SIG] [py2app] packaging an egg using pkg_resources In-Reply-To: <82063C0E-12CF-41A5-B933-A1622AFFEF40@gmail.com> References: <82063C0E-12CF-41A5-B933-A1622AFFEF40@gmail.com> Message-ID: <71CC0C54-C970-434D-B9B2-AF1371162B2D@mac.com> On 20 Oct, 2011, at 10:58, carbncl wrote: > Hi, > > First of all, not being experienced with python, my apologies if this question answer was obvious, but I couldn't find a clear answer / solution to this. > > I'm currently trying to package a pyGtk application as an OSX one. > This application is distributed as an egg and use pkg_resources facilities to get things like app version and glade resources. > Having pkg_resources errors, from what I understand and found searching and reading this mailing list, I came to the following conclusions: > py2app is not designed to use eggs That's corrrect. Py2app currently does not copy egg metadata into the application bundle. > pkg_resources requires a distribution format like eggs to have the required metadata to introspect a package. That's correct as well. > > Does this assumptions are true? > Does that means I have to purge code from pkg_resources calls? > Any good suggestion / recommended implementation is welcome. The easiest solutions are to either remove pkg_resources calls, or add custom pkg_resources.py file that loads the resource data without using setuptools metadata. Either way you have to ensure that the resource files get copied into the application bundle. The "proper" solution is to teach py2app how to copy eggs with their metadata and resources into the application bundle. That's on my todo list, but I don't know when I'll get around to actually implementing this. Ronald > > Vincent. > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From Chris.Barker at noaa.gov Thu Oct 20 17:38:38 2011 From: Chris.Barker at noaa.gov (Chris Barker) Date: Thu, 20 Oct 2011 08:38:38 -0700 Subject: [Pythonmac-SIG] [py2app] packaging an egg using pkg_resources In-Reply-To: <71CC0C54-C970-434D-B9B2-AF1371162B2D@mac.com> References: <82063C0E-12CF-41A5-B933-A1622AFFEF40@gmail.com> <71CC0C54-C970-434D-B9B2-AF1371162B2D@mac.com> Message-ID: <4EA0407E.9080708@noaa.gov> On 10/20/2011 2:35 AM, Ronald Oussoren wrote: >> * py2app is not designed to use eggs > > That's corrrect. Py2app currently does not copy egg metadata into the > application bundle. > >> * pkg_resources requires a distribution format like eggs to have the >> required metadata to introspect a package. > > That's correct as well. > >> >> Does this assumptions are true? > Does that means I have to purge code >> from pkg_resources calls? >> Any good suggestion / recommended implementation is welcome. > > The easiest solutions are to either remove pkg_resources calls, or add > custom pkg_resources.py file that > loads the resource data without using setuptools metadata. actually, even easier is to copy the full eggs into your app bundle by hand (by hand I mean code in your setup.py) -- a bit ugly, but it works. > The "proper" solution is to teach py2app how to copy eggs with their > metadata and resources into the > application bundle. That would be nice, but I don't know that it's really the "best" solution. I've dealt with this for an app that was heavily dependent on setuptools features like pkg_resources, and I think setuptools is really pretty ugly, at least when you want to use things like py2app and friends. The assumption that you're packages are fully installed as part of a nice big python install is really built in, so the only solution is to copy huge chunks of stuff, much of which you don't need, into your app bundle -- whether py2app does this automatically, or you do it in your scripts, it's still a lot of extra stuff. Personally, I like setuptools for install time stuff, but not so much for run time stuff -- if you can avoid run time calls to setuptolls, I would. AS for resources, personally I like to use python files for data -- and then "import" to get it - this makes for nice, clean integeration with py2app, etc. -Chris -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chris.Barker at noaa.gov From carbncl at gmail.com Thu Oct 20 19:17:48 2011 From: carbncl at gmail.com (carbncl) Date: Thu, 20 Oct 2011 19:17:48 +0200 Subject: [Pythonmac-SIG] [py2app] packaging an egg using pkg_resources In-Reply-To: <4EA0407E.9080708@noaa.gov> References: <82063C0E-12CF-41A5-B933-A1622AFFEF40@gmail.com> <71CC0C54-C970-434D-B9B2-AF1371162B2D@mac.com> <4EA0407E.9080708@noaa.gov> Message-ID: <02A4F2FF-1EAB-4BF0-B8CF-28CE24B87F6C@gmail.com> Le 20 oct. 2011 ? 17:38, Chris Barker a ?crit : > On 10/20/2011 2:35 AM, Ronald Oussoren wrote: >>> * py2app is not designed to use eggs >> >> That's corrrect. Py2app currently does not copy egg metadata into the >> application bundle. >> >>> * pkg_resources requires a distribution format like eggs to have the >>> required metadata to introspect a package. >> >> That's correct as well. >> >>> >>> Does this assumptions are true? > Does that means I have to purge code >>> from pkg_resources calls? >>> Any good suggestion / recommended implementation is welcome. >> >> The easiest solutions are to either remove pkg_resources calls, or add >> custom pkg_resources.py file that >> loads the resource data without using setuptools metadata. > > actually, even easier is to copy the full eggs into your app bundle by hand (by hand I mean code in your setup.py) -- a bit ugly, but it works. I thought that I had already tried this workaround w/o any success... ...Just tried it again to make sure... And that worked?! Thanks a lot Chris for pointing this to me, how can I have missed this... And ofc, thanks Ronald for your work and for the quick reply. >> The "proper" solution is to teach py2app how to copy eggs with their >> metadata and resources into the >> application bundle. > > That would be nice, but I don't know that it's really the "best" solution. > > I've dealt with this for an app that was heavily dependent on setuptools features like pkg_resources, and I think setuptools is really pretty ugly, at least when you want to use things like py2app and friends. > > The assumption that you're packages are fully installed as part of a nice big python install is really built in, so the only solution is to copy huge chunks of stuff, much of which you don't need, into your app bundle -- whether py2app does this automatically, or you do it in your scripts, it's still a lot of extra stuff. > > Personally, I like setuptools for install time stuff, but not so much for run time stuff -- if you can avoid run time calls to setuptolls, I would. > > AS for resources, personally I like to use python files for data -- and then "import" to get it - this makes for nice, clean integeration with py2app, etc. > > -Chris > > -- > Christopher Barker, Ph.D. > Oceanographer > > Emergency Response Division > NOAA/NOS/OR&R (206) 526-6959 voice > 7600 Sand Point Way NE (206) 526-6329 fax > Seattle, WA 98115 (206) 526-6317 main reception > > Chris.Barker at noaa.gov > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG From davecortesi at gmail.com Thu Oct 20 22:25:34 2011 From: davecortesi at gmail.com (David Cortesi) Date: Thu, 20 Oct 2011 13:25:34 -0700 Subject: [Pythonmac-SIG] [py2app] help interpreting py2applet messages Message-ID: Using the latest (20 Oct "tip") version of py2app, using py2applet to build with this command, py2applet ../src/ppqt.py ../ppqt-mac/Marvin.icns all appears to run without error, and a bundle is built (with the icon), but it dies when executed with the console message, ImportError: '/usr/lib/python2.6/lib-dynload/PyQt4/QtCore.so' not found The desired file is in the bundle as Resources/lib/python2.6/lib-dynload/PyQt4/QtCore.so -- it was correctly picked up, but the app is not being redirected properly. How is that supposed to work? -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronaldoussoren at mac.com Mon Oct 24 07:52:56 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Mon, 24 Oct 2011 07:52:56 +0200 Subject: [Pythonmac-SIG] [py2app] packaging an egg using pkg_resources In-Reply-To: <4EA0407E.9080708@noaa.gov> References: <82063C0E-12CF-41A5-B933-A1622AFFEF40@gmail.com> <71CC0C54-C970-434D-B9B2-AF1371162B2D@mac.com> <4EA0407E.9080708@noaa.gov> Message-ID: <688EB8D5-1AE7-46AD-83F1-3555026CB469@mac.com> On 20 Oct, 2011, at 17:38, Chris Barker wrote: > On 10/20/2011 2:35 AM, Ronald Oussoren wrote: >>> * py2app is not designed to use eggs >> >> That's corrrect. Py2app currently does not copy egg metadata into the >> application bundle. >> >>> * pkg_resources requires a distribution format like eggs to have the >>> required metadata to introspect a package. >> >> That's correct as well. >> >>> >>> Does this assumptions are true? > Does that means I have to purge code >>> from pkg_resources calls? >>> Any good suggestion / recommended implementation is welcome. >> >> The easiest solutions are to either remove pkg_resources calls, or add >> custom pkg_resources.py file that >> loads the resource data without using setuptools metadata. > > actually, even easier is to copy the full eggs into your app bundle by hand (by hand I mean code in your setup.py) -- a bit ugly, but it works. > >> The "proper" solution is to teach py2app how to copy eggs with their >> metadata and resources into the >> application bundle. > > That would be nice, but I don't know that it's really the "best" solution. Eggs exist and py2app should support them, otherwise people have to resort to ugly workarounds like copying files manually. Adding an option for copying a set of eggs into the application bundle would be fairly easy. > > I've dealt with this for an app that was heavily dependent on setuptools features like pkg_resources, and I think setuptools is really pretty ugly, at least when you want to use things like py2app and friends. > > The assumption that you're packages are fully installed as part of a nice big python install is really built in, so the only solution is to copy huge chunks of stuff, much of which you don't need, into your app bundle -- whether py2app does this automatically, or you do it in your scripts, it's still a lot of extra stuff. That can be a problem, especially with older codebases that haven't been split into a number of smallish packages. > > Personally, I like setuptools for install time stuff, but not so much for run time stuff -- if you can avoid run time calls to setuptolls, I would. > > AS for resources, personally I like to use python files for data -- and then "import" to get it - this makes for nice, clean integeration with py2app, etc. I use python files for resources on Windows to get single-file executables with py2exe, but prefer to use real data files on OSX for easier maintenance. Ronald > > -Chris > > -- > Christopher Barker, Ph.D. > Oceanographer > > Emergency Response Division > NOAA/NOS/OR&R (206) 526-6959 voice > 7600 Sand Point Way NE (206) 526-6329 fax > Seattle, WA 98115 (206) 526-6317 main reception > > Chris.Barker at noaa.gov > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From ronaldoussoren at mac.com Mon Oct 24 11:26:20 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Mon, 24 Oct 2011 11:26:20 +0200 Subject: [Pythonmac-SIG] py2app and PyQt4 Message-ID: <232151A2-E2F8-4ABA-8DC8-5C04342368B8@mac.com> Hi, Could someone that uses PyQt4 on OSX please test if the current repository head at works for packaging PyQt applications? I've tried to fix the recipe and it now at least good enough to build the (trivial) sample applications that's included in the py2app repository. Ronald -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From ronaldoussoren at mac.com Mon Oct 24 13:12:25 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Mon, 24 Oct 2011 13:12:25 +0200 Subject: [Pythonmac-SIG] AppKit ImportError (was py2app: ImportError) In-Reply-To: <4E971103.5080702@sccmail.maricopa.edu> References: <4E861A3A.5090203@sccmail.maricopa.edu> <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> <4E8B18E2.1090805@sccmail.maricopa.edu> <4E8DC058.50908@sccmail.maricopa.edu> <0E895460-C66D-46B5-BA3D-6E72CA724FAE@mac.com> <4E8E112D.4010803@sccmail.maricopa.edu> <4D096628-2128-45B1-99A4-F674C5788F7E@mac.com> <4E9304C3.7050309@sccmail.maricopa.edu> <4E971103.5080702@sccmail.maricopa.edu> Message-ID: <6FF079E0-DCB6-4B0D-8971-CD396AB4E813@mac.com> On 13 Oct, 2011, at 18:25, Sean Robinson wrote: > On 10/10/2011 07:44 AM, Sean Robinson wrote: >> On 10/08/2011 07:36 AM, Ronald Oussoren wrote: >>> >>> On 6 Oct, 2011, at 22:35, Sean Robinson wrote: >>>> >>>> I believe I can overcome this error by finding the right path(s) to >>>> append to the app bundle's sys.path, but I'm surprised that py2app >>>> does not do this automagically. >>> >>> py2app should do this automaticly. What version of python do you use? >>> Is that a custom install or the system version of python? And finally, >>> which OSX version are you using? >>> >> >> This is on OSX 10.6.8, using the system version of Python 2.6.1. The >> only non-standard packages/modules are py2app (0.6.4 pre-release and its >> requirements) installed local to the user account. I am developing as >> vanilla as I can get. >> > > Ronald, > > So, to follow-up... I have been able to create a working semi-standalone app bundle (which is what I wanted) by adding two more dirs to sys.path. Thank you for py2app and for your help. My app bundles work on 10.6.3 and 10.6.8 with the default Apple-provided Python on each. > > Attached to this message is a zip archive with two minimal projects (working and not_working) which highlight the single difference which allows AppKit to be imported. Each project is three lines of python plus the setup.py created by py2applet. IHTH. That was a pretty lame bug: when using the system build of Python we don't include Python and the "standard" library into the application bundle, including the extra libraries like PyObjC and wxWidgets. That part worked fine, but py2app never made sure that the directory with extra libraries was available on sys.path and that causes the problem you're having. I've pushed a fix for that to the repository, and will push a new release to PyPI later today. Ronald > > -- > Sean Robinson > Laboratory Technician > Physics Astronomy Geology > sean.robinson at sccmail.maricopa.edu > -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From sean.robinson at sccmail.maricopa.edu Mon Oct 24 17:50:57 2011 From: sean.robinson at sccmail.maricopa.edu (Sean Robinson) Date: Mon, 24 Oct 2011 08:50:57 -0700 Subject: [Pythonmac-SIG] AppKit ImportError (was py2app: ImportError) In-Reply-To: <6FF079E0-DCB6-4B0D-8971-CD396AB4E813@mac.com> References: <4E861A3A.5090203@sccmail.maricopa.edu> <27F4E636-5706-4C32-BDA2-603A88996F2F@mac.com> <4E8B18E2.1090805@sccmail.maricopa.edu> <4E8DC058.50908@sccmail.maricopa.edu> <0E895460-C66D-46B5-BA3D-6E72CA724FAE@mac.com> <4E8E112D.4010803@sccmail.maricopa.edu> <4D096628-2128-45B1-99A4-F674C5788F7E@mac.com> <4E9304C3.7050309@sccmail.maricopa.edu> <4E971103.5080702@sccmail.maricopa.edu> <6FF079E0-DCB6-4B0D-8971-CD396AB4E813@mac.com> Message-ID: <4EA58961.7020501@sccmail.maricopa.edu> On 10/24/2011 04:12 AM, Ronald Oussoren wrote: > > On 13 Oct, 2011, at 18:25, Sean Robinson wrote: > >> On 10/10/2011 07:44 AM, Sean Robinson wrote: >>> On 10/08/2011 07:36 AM, Ronald Oussoren wrote: >>>> >>>> On 6 Oct, 2011, at 22:35, Sean Robinson wrote: >>>>> >>>>> I believe I can overcome this error by finding the right path(s) to >>>>> append to the app bundle's sys.path, but I'm surprised that py2app >>>>> does not do this automagically. >>>> >>>> py2app should do this automaticly. What version of python do you use? >>>> Is that a custom install or the system version of python? And finally, >>>> which OSX version are you using? >>>> >>> >>> This is on OSX 10.6.8, using the system version of Python 2.6.1. The >>> only non-standard packages/modules are py2app (0.6.4 pre-release and its >>> requirements) installed local to the user account. I am developing as >>> vanilla as I can get. >>> >> >> Ronald, >> >> So, to follow-up... I have been able to create a working semi-standalone app bundle (which is what I wanted) by adding two more dirs to sys.path. Thank you for py2app and for your help. My app bundles work on 10.6.3 and 10.6.8 with the default Apple-provided Python on each. >> >> Attached to this message is a zip archive with two minimal projects (working and not_working) which highlight the single difference which allows AppKit to be imported. Each project is three lines of python plus the setup.py created by py2applet. IHTH. > > That was a pretty lame bug: when using the system build of Python we don't include Python and the "standard" library into the application bundle, including the extra libraries like PyObjC and wxWidgets. That part worked fine, but py2app never made sure that the directory with extra libraries was available on sys.path and that causes the problem you're having. > > I've pushed a fix for that to the repository, and will push a new release to PyPI later today. > This morning, I removed my explicit additions to sys.path within my project and I tested creating an app bundle using py2app from the repository (changeset 179:5e27e7b0b17d). Everything tests well. AppKit and the rest of PyObjC is imported correctly when the app bundle is launched. Thank you, again, for your maintenance and improvement of py2app. -- Sean Robinson Laboratory Technician Physics Astronomy Geology sean.robinson at sccmail.maricopa.edu From raf at richfulton.org Thu Oct 20 23:01:17 2011 From: raf at richfulton.org (Richard Fulton) Date: Thu, 20 Oct 2011 17:01:17 -0400 Subject: [Pythonmac-SIG] py2app build failure on Mac 10.3.9 PPC Message-ID: Enviroment: iMac G3 OSX 10.3.9 Python 2.7.2 py2app-0.6.3. Terminal output: Last login: Thu Oct 20 15:53:59 on console Welcome to Darwin! Rich-Fultons-Computer:~ richfulton$ cd /Users/richfulton/Desktop/EnvoyLite3.0.0 Rich-Fultons-Computer:~/Desktop/EnvoyLite3.0.0 richfulton$ python setup.py py2app running py2app creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/temp creating /Users/richfulton/Desktop/EnvoyLite3.0.0/dist creating build/bdist.macosx-10.3-ppc/python2.7-standalone/app/lib-dynload creating build/bdist.macosx-10.3-ppc/python2.7-standalone/app/Frameworks *** using recipe: virtualenv *** *** filtering dependencies *** 337 total 38 filtered 6 orphaned 299 remaining *** create binaries *** *** byte compile python files *** byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/StringIO.py to StringIO.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py to UserDict.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/__future__.py to __future__.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_abcoll.py to _abcoll.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_strptime.py to _strptime.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_threading_local.py to _threading_local.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_weakrefset.py to _weakrefset.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/abc.py to abc.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/atexit.py to atexit.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/base64.py to base64.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/bdb.py to bdb.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/bisect.py to bisect.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/calendar.py to calendar.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/cmd.py to cmd.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/codecs.py to codecs.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/collections.py to collections.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy.py to copy.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy_reg.py to copy_reg.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/csv.py to csv.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ctypes/__init__.py to ctypes/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/ctypes byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ctypes/_endian.py to ctypes/_endian.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/decimal.py to decimal.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/difflib.py to difflib.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/dis.py to dis.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/__init__.py to distutils/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/distutils byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/errors.py to distutils/errors.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/log.py to distutils/log.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/spawn.py to distutils/spawn.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/doctest.py to doctest.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/dummy_thread.py to dummy_thread.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/__init__.py to encodings/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/encodings byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/aliases.py to encodings/aliases.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/ascii.py to encodings/ascii.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/base64_codec.py to encodings/base64_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/big5.py to encodings/big5.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/big5hkscs.py to encodings/big5hkscs.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/bz2_codec.py to encodings/bz2_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/charmap.py to encodings/charmap.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp037.py to encodings/cp037.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1006.py to encodings/cp1006.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1026.py to encodings/cp1026.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1140.py to encodings/cp1140.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1250.py to encodings/cp1250.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1251.py to encodings/cp1251.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1252.py to encodings/cp1252.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1253.py to encodings/cp1253.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1254.py to encodings/cp1254.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1255.py to encodings/cp1255.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1256.py to encodings/cp1256.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1257.py to encodings/cp1257.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1258.py to encodings/cp1258.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp424.py to encodings/cp424.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp437.py to encodings/cp437.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp500.py to encodings/cp500.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp720.py to encodings/cp720.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp737.py to encodings/cp737.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp775.py to encodings/cp775.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp850.py to encodings/cp850.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp852.py to encodings/cp852.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp855.py to encodings/cp855.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp856.py to encodings/cp856.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp857.py to encodings/cp857.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp858.py to encodings/cp858.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp860.py to encodings/cp860.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp861.py to encodings/cp861.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp862.py to encodings/cp862.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp863.py to encodings/cp863.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp864.py to encodings/cp864.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp865.py to encodings/cp865.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp866.py to encodings/cp866.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp869.py to encodings/cp869.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp874.py to encodings/cp874.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp875.py to encodings/cp875.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp932.py to encodings/cp932.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp949.py to encodings/cp949.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp950.py to encodings/cp950.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/euc_jis_2004.py to encodings/euc_jis_2004.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/euc_jisx0213.py to encodings/euc_jisx0213.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/euc_jp.py to encodings/euc_jp.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/euc_kr.py to encodings/euc_kr.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/gb18030.py to encodings/gb18030.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/gb2312.py to encodings/gb2312.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/gbk.py to encodings/gbk.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/hex_codec.py to encodings/hex_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/hp_roman8.py to encodings/hp_roman8.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/hz.py to encodings/hz.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/idna.py to encodings/idna.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp.py to encodings/iso2022_jp.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_1.py to encodings/iso2022_jp_1.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_2.py to encodings/iso2022_jp_2.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_2004.py to encodings/iso2022_jp_2004.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_3.py to encodings/iso2022_jp_3.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_ext.py to encodings/iso2022_jp_ext.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_kr.py to encodings/iso2022_kr.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_1.py to encodings/iso8859_1.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_10.py to encodings/iso8859_10.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_11.py to encodings/iso8859_11.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_13.py to encodings/iso8859_13.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_14.py to encodings/iso8859_14.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_15.py to encodings/iso8859_15.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_16.py to encodings/iso8859_16.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_2.py to encodings/iso8859_2.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_3.py to encodings/iso8859_3.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_4.py to encodings/iso8859_4.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_5.py to encodings/iso8859_5.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_6.py to encodings/iso8859_6.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_7.py to encodings/iso8859_7.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_8.py to encodings/iso8859_8.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_9.py to encodings/iso8859_9.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/johab.py to encodings/johab.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/koi8_r.py to encodings/koi8_r.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/koi8_u.py to encodings/koi8_u.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/latin_1.py to encodings/latin_1.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_arabic.py to encodings/mac_arabic.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_centeuro.py to encodings/mac_centeuro.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_croatian.py to encodings/mac_croatian.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_cyrillic.py to encodings/mac_cyrillic.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_farsi.py to encodings/mac_farsi.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_greek.py to encodings/mac_greek.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_iceland.py to encodings/mac_iceland.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_latin2.py to encodings/mac_latin2.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_roman.py to encodings/mac_roman.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_romanian.py to encodings/mac_romanian.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_turkish.py to encodings/mac_turkish.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mbcs.py to encodings/mbcs.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/palmos.py to encodings/palmos.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/ptcp154.py to encodings/ptcp154.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/punycode.py to encodings/punycode.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/quopri_codec.py to encodings/quopri_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/raw_unicode_escape.py to encodings/raw_unicode_escape.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/rot_13.py to encodings/rot_13.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/shift_jis.py to encodings/shift_jis.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/shift_jis_2004.py to encodings/shift_jis_2004.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/shift_jisx0213.py to encodings/shift_jisx0213.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/string_escape.py to encodings/string_escape.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/tis_620.py to encodings/tis_620.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/undefined.py to encodings/undefined.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/unicode_escape.py to encodings/unicode_escape.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/unicode_internal.py to encodings/unicode_internal.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_16.py to encodings/utf_16.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_16_be.py to encodings/utf_16_be.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_16_le.py to encodings/utf_16_le.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_32.py to encodings/utf_32.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_32_be.py to encodings/utf_32_be.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_32_le.py to encodings/utf_32_le.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_7.py to encodings/utf_7.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_8.py to encodings/utf_8.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_8_sig.py to encodings/utf_8_sig.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/uu_codec.py to encodings/uu_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/zlib_codec.py to encodings/zlib_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/fnmatch.py to fnmatch.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/functools.py to functools.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/genericpath.py to genericpath.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/getopt.py to getopt.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/gettext.py to gettext.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/glob.py to glob.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/gzip.py to gzip.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py to hashlib.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/heapq.py to heapq.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/inspect.py to inspect.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/io.py to io.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/keyword.py to keyword.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/FixTk.py to FixTk.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkconstants.py to Tkconstants.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py to Tkinter.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/tkCommonDialog.py to tkCommonDialog.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/tkFileDialog.py to tkFileDialog.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/linecache.py to linecache.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py to locale.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py to logging/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/logging byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/numbers.py to numbers.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/opcode.py to opcode.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/optparse.py to optparse.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py to os.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pdb.py to pdb.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pickle.py to pickle.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/Carbon/AE.py to Carbon/AE.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/Carbon byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/Carbon/Evt.py to Carbon/Evt.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/Carbon/File.py to Carbon/File.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/Carbon/__init__.py to Carbon/__init__.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py to posixpath.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pprint.py to pprint.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/py_compile.py to py_compile.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/quopri.py to quopri.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/random.py to random.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py to re.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/repr.py to repr.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shlex.py to shlex.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py to shutil.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/easygui-0.94-py2.7.egg/easygui.pyc to easygui.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/errorhandler-1.1.1-py2.7.egg/errorhandler/__init__.py to errorhandler/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/errorhandler byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/__init__.pyc to xlrd/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/xlrd byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/biffh.pyc to xlrd/biffh.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/compdoc.pyc to xlrd/compdoc.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/formatting.pyc to xlrd/formatting.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/formula.pyc to xlrd/formula.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/licences.pyc to xlrd/licences.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/sheet.pyc to xlrd/sheet.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/timemachine.pyc to xlrd/timemachine.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/xldate.pyc to xlrd/xldate.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/__init__.py to xlutils/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/xlutils byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/copy.py to xlutils/copy.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/display.py to xlutils/display.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/filter.py to xlutils/filter.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/margins.py to xlutils/margins.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/BIFFRecords.pyc to xlwt/BIFFRecords.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/xlwt byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Bitmap.pyc to xlwt/Bitmap.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Cell.pyc to xlwt/Cell.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Column.pyc to xlwt/Column.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/CompoundDoc.pyc to xlwt/CompoundDoc.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/ExcelFormula.pyc to xlwt/ExcelFormula.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/ExcelFormulaLexer.pyc to xlwt/ExcelFormulaLexer.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/ExcelFormulaParser.pyc to xlwt/ExcelFormulaParser.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/ExcelMagic.pyc to xlwt/ExcelMagic.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Formatting.pyc to xlwt/Formatting.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Row.pyc to xlwt/Row.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Style.pyc to xlwt/Style.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/UnicodeUtils.pyc to xlwt/UnicodeUtils.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Utils.pyc to xlwt/Utils.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Workbook.pyc to xlwt/Workbook.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Worksheet.pyc to xlwt/Worksheet.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/__init__.pyc to xlwt/__init__.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/antlr.pyc to xlwt/antlr.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre.py to sre.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_compile.py to sre_compile.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_constants.py to sre_constants.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_parse.py to sre_parse.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/stat.py to stat.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/string.py to string.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/stringprep.py to stringprep.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/struct.py to struct.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py to subprocess.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/tarfile.py to tarfile.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/tempfile.py to tempfile.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/textwrap.py to textwrap.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py to threading.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/token.py to token.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/tokenize.py to tokenize.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/traceback.py to traceback.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/types.py to types.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/__init__.py to unittest/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/unittest byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/case.py to unittest/case.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/loader.py to unittest/loader.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/main.py to unittest/main.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/result.py to unittest/result.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/runner.py to unittest/runner.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/signals.py to unittest/signals.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/suite.py to unittest/suite.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/util.py to unittest/util.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/warnings.py to warnings.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/weakref.py to weakref.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/zipfile.py to zipfile.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/Envoy3.0.0.py to Envoy3.0.0.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/argv_emulation.py to argv_emulation.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/boot_app.py to boot_app.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/chdir_resource.py to chdir_resource.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/disable_linecache.py to disable_linecache.pyc error: cannot copy tree '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/doc': not a directory Rich-Fultons-Computer:~/Desktop/EnvoyLite3.0.0 richfulton$ Any help would be appreciated! Rich -------------- next part -------------- An HTML attachment was scrubbed... URL: From rafulton1944 at gmail.com Sat Oct 22 22:49:46 2011 From: rafulton1944 at gmail.com (Richard Fulton) Date: Sat, 22 Oct 2011 16:49:46 -0400 Subject: [Pythonmac-SIG] py2app build failure on Mac 10.3.9 PPC Message-ID: Enviroment: iMac G3 OSX 10.3.9 Python 2.7.2 py2app-0.6.3. Terminal output: Last login: Thu Oct 20 15:53:59 on console Welcome to Darwin! Rich-Fultons-Computer:~ richfulton$ cd /Users/richfulton/Desktop/EnvoyLite3.0.0 Rich-Fultons-Computer:~/Desktop/EnvoyLite3.0.0 richfulton$ python setup.py py2app running py2app creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/temp creating /Users/richfulton/Desktop/EnvoyLite3.0.0/dist creating build/bdist.macosx-10.3-ppc/python2.7-standalone/app/lib-dynload creating build/bdist.macosx-10.3-ppc/python2.7-standalone/app/Frameworks *** using recipe: virtualenv *** *** filtering dependencies *** 337 total 38 filtered 6 orphaned 299 remaining *** create binaries *** *** byte compile python files *** byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/StringIO.py to StringIO.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py to UserDict.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/__future__.py to __future__.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_abcoll.py to _abcoll.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_strptime.py to _strptime.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_threading_local.py to _threading_local.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_weakrefset.py to _weakrefset.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/abc.py to abc.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/atexit.py to atexit.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/base64.py to base64.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/bdb.py to bdb.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/bisect.py to bisect.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/calendar.py to calendar.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/cmd.py to cmd.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/codecs.py to codecs.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/collections.py to collections.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy.py to copy.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy_reg.py to copy_reg.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/csv.py to csv.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ctypes/__init__.py to ctypes/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/ctypes byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ctypes/_endian.py to ctypes/_endian.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/decimal.py to decimal.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/difflib.py to difflib.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/dis.py to dis.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/__init__.py to distutils/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/distutils byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/errors.py to distutils/errors.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/log.py to distutils/log.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/spawn.py to distutils/spawn.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/doctest.py to doctest.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/dummy_thread.py to dummy_thread.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/__init__.py to encodings/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/encodings byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/aliases.py to encodings/aliases.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/ascii.py to encodings/ascii.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/base64_codec.py to encodings/base64_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/big5.py to encodings/big5.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/big5hkscs.py to encodings/big5hkscs.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/bz2_codec.py to encodings/bz2_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/charmap.py to encodings/charmap.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp037.py to encodings/cp037.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1006.py to encodings/cp1006.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1026.py to encodings/cp1026.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1140.py to encodings/cp1140.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1250.py to encodings/cp1250.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1251.py to encodings/cp1251.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1252.py to encodings/cp1252.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1253.py to encodings/cp1253.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1254.py to encodings/cp1254.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1255.py to encodings/cp1255.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1256.py to encodings/cp1256.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1257.py to encodings/cp1257.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp1258.py to encodings/cp1258.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp424.py to encodings/cp424.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp437.py to encodings/cp437.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp500.py to encodings/cp500.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp720.py to encodings/cp720.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp737.py to encodings/cp737.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp775.py to encodings/cp775.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp850.py to encodings/cp850.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp852.py to encodings/cp852.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp855.py to encodings/cp855.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp856.py to encodings/cp856.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp857.py to encodings/cp857.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp858.py to encodings/cp858.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp860.py to encodings/cp860.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp861.py to encodings/cp861.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp862.py to encodings/cp862.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp863.py to encodings/cp863.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp864.py to encodings/cp864.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp865.py to encodings/cp865.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp866.py to encodings/cp866.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp869.py to encodings/cp869.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp874.py to encodings/cp874.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp875.py to encodings/cp875.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp932.py to encodings/cp932.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp949.py to encodings/cp949.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/cp950.py to encodings/cp950.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/euc_jis_2004.py to encodings/euc_jis_2004.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/euc_jisx0213.py to encodings/euc_jisx0213.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/euc_jp.py to encodings/euc_jp.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/euc_kr.py to encodings/euc_kr.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/gb18030.py to encodings/gb18030.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/gb2312.py to encodings/gb2312.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/gbk.py to encodings/gbk.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/hex_codec.py to encodings/hex_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/hp_roman8.py to encodings/hp_roman8.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/hz.py to encodings/hz.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/idna.py to encodings/idna.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp.py to encodings/iso2022_jp.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_1.py to encodings/iso2022_jp_1.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_2.py to encodings/iso2022_jp_2.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_2004.py to encodings/iso2022_jp_2004.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_3.py to encodings/iso2022_jp_3.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_jp_ext.py to encodings/iso2022_jp_ext.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso2022_kr.py to encodings/iso2022_kr.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_1.py to encodings/iso8859_1.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_10.py to encodings/iso8859_10.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_11.py to encodings/iso8859_11.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_13.py to encodings/iso8859_13.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_14.py to encodings/iso8859_14.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_15.py to encodings/iso8859_15.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_16.py to encodings/iso8859_16.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_2.py to encodings/iso8859_2.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_3.py to encodings/iso8859_3.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_4.py to encodings/iso8859_4.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_5.py to encodings/iso8859_5.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_6.py to encodings/iso8859_6.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_7.py to encodings/iso8859_7.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_8.py to encodings/iso8859_8.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/iso8859_9.py to encodings/iso8859_9.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/johab.py to encodings/johab.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/koi8_r.py to encodings/koi8_r.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/koi8_u.py to encodings/koi8_u.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/latin_1.py to encodings/latin_1.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_arabic.py to encodings/mac_arabic.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_centeuro.py to encodings/mac_centeuro.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_croatian.py to encodings/mac_croatian.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_cyrillic.py to encodings/mac_cyrillic.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_farsi.py to encodings/mac_farsi.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_greek.py to encodings/mac_greek.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_iceland.py to encodings/mac_iceland.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_latin2.py to encodings/mac_latin2.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_roman.py to encodings/mac_roman.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_romanian.py to encodings/mac_romanian.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mac_turkish.py to encodings/mac_turkish.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/mbcs.py to encodings/mbcs.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/palmos.py to encodings/palmos.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/ptcp154.py to encodings/ptcp154.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/punycode.py to encodings/punycode.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/quopri_codec.py to encodings/quopri_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/raw_unicode_escape.py to encodings/raw_unicode_escape.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/rot_13.py to encodings/rot_13.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/shift_jis.py to encodings/shift_jis.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/shift_jis_2004.py to encodings/shift_jis_2004.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/shift_jisx0213.py to encodings/shift_jisx0213.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/string_escape.py to encodings/string_escape.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/tis_620.py to encodings/tis_620.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/undefined.py to encodings/undefined.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/unicode_escape.py to encodings/unicode_escape.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/unicode_internal.py to encodings/unicode_internal.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_16.py to encodings/utf_16.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_16_be.py to encodings/utf_16_be.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_16_le.py to encodings/utf_16_le.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_32.py to encodings/utf_32.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_32_be.py to encodings/utf_32_be.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_32_le.py to encodings/utf_32_le.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_7.py to encodings/utf_7.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_8.py to encodings/utf_8.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/utf_8_sig.py to encodings/utf_8_sig.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/uu_codec.py to encodings/uu_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings/zlib_codec.py to encodings/zlib_codec.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/fnmatch.py to fnmatch.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/functools.py to functools.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/genericpath.py to genericpath.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/getopt.py to getopt.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/gettext.py to gettext.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/glob.py to glob.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/gzip.py to gzip.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py to hashlib.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/heapq.py to heapq.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/inspect.py to inspect.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/io.py to io.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/keyword.py to keyword.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/FixTk.py to FixTk.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkconstants.py to Tkconstants.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py to Tkinter.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/tkCommonDialog.py to tkCommonDialog.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/tkFileDialog.py to tkFileDialog.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/linecache.py to linecache.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py to locale.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py to logging/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/logging byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/numbers.py to numbers.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/opcode.py to opcode.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/optparse.py to optparse.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py to os.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pdb.py to pdb.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pickle.py to pickle.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/Carbon/AE.py to Carbon/AE.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/Carbon byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/Carbon/Evt.py to Carbon/Evt.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/Carbon/File.py to Carbon/File.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/Carbon/__init__.py to Carbon/__init__.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py to posixpath.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pprint.py to pprint.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/py_compile.py to py_compile.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/quopri.py to quopri.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/random.py to random.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py to re.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/repr.py to repr.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shlex.py to shlex.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py to shutil.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/easygui-0.94-py2.7.egg/easygui.pyc to easygui.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/errorhandler-1.1.1-py2.7.egg/errorhandler/__init__.py to errorhandler/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/errorhandler byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/__init__.pyc to xlrd/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/xlrd byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/biffh.pyc to xlrd/biffh.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/compdoc.pyc to xlrd/compdoc.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/formatting.pyc to xlrd/formatting.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/formula.pyc to xlrd/formula.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/licences.pyc to xlrd/licences.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/sheet.pyc to xlrd/sheet.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/timemachine.pyc to xlrd/timemachine.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/xldate.pyc to xlrd/xldate.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/__init__.py to xlutils/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/xlutils byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/copy.py to xlutils/copy.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/display.py to xlutils/display.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/filter.py to xlutils/filter.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlutils-1.4.1-py2.7.egg/xlutils/margins.py to xlutils/margins.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/BIFFRecords.pyc to xlwt/BIFFRecords.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/xlwt byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Bitmap.pyc to xlwt/Bitmap.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Cell.pyc to xlwt/Cell.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Column.pyc to xlwt/Column.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/CompoundDoc.pyc to xlwt/CompoundDoc.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/ExcelFormula.pyc to xlwt/ExcelFormula.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/ExcelFormulaLexer.pyc to xlwt/ExcelFormulaLexer.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/ExcelFormulaParser.pyc to xlwt/ExcelFormulaParser.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/ExcelMagic.pyc to xlwt/ExcelMagic.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Formatting.pyc to xlwt/Formatting.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Row.pyc to xlwt/Row.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Style.pyc to xlwt/Style.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/UnicodeUtils.pyc to xlwt/UnicodeUtils.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Utils.pyc to xlwt/Utils.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Workbook.pyc to xlwt/Workbook.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/Worksheet.pyc to xlwt/Worksheet.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/__init__.pyc to xlwt/__init__.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlwt-0.7.2-py2.7.egg/xlwt/antlr.pyc to xlwt/antlr.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre.py to sre.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_compile.py to sre_compile.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_constants.py to sre_constants.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_parse.py to sre_parse.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/stat.py to stat.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/string.py to string.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/stringprep.py to stringprep.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/struct.py to struct.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py to subprocess.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/tarfile.py to tarfile.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/tempfile.py to tempfile.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/textwrap.py to textwrap.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py to threading.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/token.py to token.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/tokenize.py to tokenize.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/traceback.py to traceback.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/types.py to types.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/__init__.py to unittest/__init__.pyc creating /Users/richfulton/Desktop/EnvoyLite3.0.0/build/bdist.macosx-10.3-ppc/python2.7-standalone/app/collect/unittest byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/case.py to unittest/case.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/loader.py to unittest/loader.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/main.py to unittest/main.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/result.py to unittest/result.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/runner.py to unittest/runner.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/signals.py to unittest/signals.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/suite.py to unittest/suite.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/util.py to unittest/util.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/warnings.py to warnings.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/weakref.py to weakref.pyc byte-compiling /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/zipfile.py to zipfile.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/Envoy3.0.0.py to Envoy3.0.0.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/argv_emulation.py to argv_emulation.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/boot_app.py to boot_app.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/chdir_resource.py to chdir_resource.pyc byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/disable_linecache.py to disable_linecache.pyc error: cannot copy tree '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/doc': not a directory Rich-Fultons-Computer:~/Desktop/EnvoyLite3.0.0 richfulton$ Any help would be appreciated! Rich -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronaldoussoren at mac.com Mon Oct 24 11:53:46 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Mon, 24 Oct 2011 11:53:46 +0200 Subject: [Pythonmac-SIG] Error building an OSX PySide app with py2app In-Reply-To: References: Message-ID: I've finally gotten around to install Qt4, PyQt4 and PySide to do some testing. It seems that the version in the repository for py2app () results in a working copy (on Lion, with python.org build of 2.7, PySide 1.0.7 installed using the binary installer). Ronald On 1 Sep, 2011, at 19:59, Aaron Scott Hildebrandt wrote: > I'm trying to deploy a Python app on OSX that was built with PySide. py2app packages it without issue, copying and linking a lot of PySide and Qt files in the process. But then, when I try to run the built app, I get this error: > > > Traceback (most recent call last): > > > File "/Users/sequence/Desktop/code/dailies/dist/dailies_v02.app/Contents/Resources/__boot__.py", line 31, in > > > _run('dailies_v02.py') > > > File "/Users/sequence/Desktop/code/dailies/dist/dailies_v02.app/Contents/Resources/__boot__.py", line 28, in _run > > > execfile(path, globals(), globals()) > > > File "/Users/sequence/Desktop/code/dailies/dist/dailies_v02.app/Contents/Resources/dailies_v02.py", line 9, in > > > from PySide.QtCore import * > > > File "PySide/__init__.pyc", line 2, in > > > File "PySide/private.pyc", line 2, in > > > File "PySide/QtCore.pyc", line 18, in > > > File "PySide/QtCore.pyc", line 15, in __load > > > ImportError: '/usr/lib/python2.6/lib-dynload/PySide/QtCore.so' not found > > The weird thing is, QtCore.so IS included in the application bundle: py2app copied it to dailies_v02.app/Contents/Resources/lib/python2.6/lib-dynload/PySide/. > > Does anyone know why this isn't working? > > Aaron > > > -- > Aaron Scott Hildebrandt > andcuriouser.com > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From fuzzyman at gmail.com Tue Oct 25 02:03:13 2011 From: fuzzyman at gmail.com (Michael Foord) Date: Tue, 25 Oct 2011 01:03:13 +0100 Subject: [Pythonmac-SIG] py2app build failure on Mac 10.3.9 PPC In-Reply-To: References: Message-ID: On 20 October 2011 22:01, Richard Fulton wrote: > Enviroment: iMac G3 OSX 10.3.9 Python 2.7.2 py2app-0.6.3. > Terminal output: > Last login: Thu Oct 20 15:53:59 on console > Welcome to Darwin! > Rich-Fultons-Computer:~ richfulton$ cd > /Users/richfulton/Desktop/EnvoyLite3.0.0 > Rich-Fultons-Computer:~/Desktop/EnvoyLite3.0.0 richfulton$ python setup.py > py2app > [snip...] > running py2appbyte-compiling > /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/argv_emulation.py > to argv_emulation.pyc > byte-compiling > /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/boot_app.py > to boot_app.pyc > byte-compiling > /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/chdir_resource.py > to chdir_resource.pyc > byte-compiling > /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/disable_linecache.py > to disable_linecache.pyc > error: cannot copy tree > '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/doc': > not a directory > Rich-Fultons-Computer:~/Desktop/EnvoyLite3.0.0 richfulton$ > > A stab in the dark, is it possible that the xlrd egg is a zip file and not an unzipped egg - and also that py2app doesn't play well with eggs? If the xlrd egg is a binary distribution (zipfile), try re-installing xlrd as an unzipped egg (you'll have to google for the command line or configuration option to force that). I may be way off base off course... Michael > Any help would be appreciated! > Rich > > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG > > -- http://www.voidspace.org.uk/ May you do good and not evil May you find forgiveness for yourself and forgive others May you share freely, never taking more than you give. -- the sqlite blessing http://www.sqlite.org/different.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronaldoussoren at mac.com Tue Oct 25 12:19:28 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Tue, 25 Oct 2011 12:19:28 +0200 Subject: [Pythonmac-SIG] py2app build failure on Mac 10.3.9 PPC In-Reply-To: References: Message-ID: <1F3F65B5-8BA1-4E49-AB0B-C5370799818B@mac.com> On 25 Oct, 2011, at 2:03, Michael Foord wrote: > > > On 20 October 2011 22:01, Richard Fulton wrote: > Enviroment: iMac G3 OSX 10.3.9 Python 2.7.2 py2app-0.6.3. > Terminal output: > Last login: Thu Oct 20 15:53:59 on console > Welcome to Darwin! > Rich-Fultons-Computer:~ richfulton$ cd /Users/richfulton/Desktop/EnvoyLite3.0.0 Rich-Fultons-Computer:~/Desktop/EnvoyLite3.0.0 richfulton$ python setup.py py2app > [snip...] > running py2appbyte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/argv_emulation.py to argv_emulation.pyc > byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/boot_app.py to boot_app.pyc > byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/chdir_resource.py to chdir_resource.pyc > byte-compiling /Users/richfulton/Desktop/EnvoyLite3.0.0/py2app-0.6.3-py2.7.egg/py2app/bootstrap/disable_linecache.py to disable_linecache.pyc > error: cannot copy tree '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/xlrd-0.7.1-py2.7.egg/xlrd/doc': not a directory > Rich-Fultons-Computer:~/Desktop/EnvoyLite3.0.0 richfulton$ > > > A stab in the dark, is it possible that the xlrd egg is a zip file and not an unzipped egg - and also that py2app doesn't play well with eggs? I've fixed some zipped-egg related issue in the past, but some problems might remain. > > If the xlrd egg is a binary distribution (zipfile), try re-installing xlrd as an unzipped egg (you'll have to google for the command line or configuration option to force that). I may be way off base off course... Coud you (Richard) report if that fixes the issue? Ronald > > Michael > > Any help would be appreciated! > Rich > > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG > > > > > -- > http://www.voidspace.org.uk/ > > May you do good and not evil > May you find forgiveness for yourself and forgive others > > May you share freely, never taking more than you give. > -- the sqlite blessing http://www.sqlite.org/different.html > > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From karstenwo at googlemail.com Tue Oct 25 15:38:53 2011 From: karstenwo at googlemail.com (Karsten Wolf) Date: Tue, 25 Oct 2011 15:38:53 +0200 Subject: [Pythonmac-SIG] Launch failed w py2app0.5.3 on OSX 10.5 Message-ID: <29CEF4C5-1730-4AAC-8E2A-CA149C287085@googlemail.com> Hi, I have a pyobjc/py2app application that did fine for several years now but failed launching on OSX 10.5 after the upgrade from Python 2.7.1 to 2.7.2. It runs fine on 10.4 (build machine) and 10.6. The failing part seems to be the site-packages.zip file and it could be made launching by manually unpacking and deleteing the zip. I tried to upgrade to the current mercurial but with that the build fails. Any ideas? -karsten From raf at richfulton.org Tue Oct 25 17:46:53 2011 From: raf at richfulton.org (Richard Fulton) Date: Tue, 25 Oct 2011 11:46:53 -0400 Subject: [Pythonmac-SIG] py2app build failure on Mac 10.3.9 PPC Message-ID: Thank you for the help. Yes, re-installing xlrd, etc., from unzipped egg worked just fine. The only issue now is in the __init__.py of the app. Line 32 shows the wrong path to Carbon.framework It shows: /System/Library/Carbon.framework/Carbon It should be: /System/Library/Frameworks/Carbon.framework.Carbon When I patch that line, the app runs successfully. I'm running the app on an iMac G3 PPC. Rich -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronaldoussoren at mac.com Tue Oct 25 20:33:35 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Tue, 25 Oct 2011 20:33:35 +0200 Subject: [Pythonmac-SIG] Launch failed w py2app0.5.3 on OSX 10.5 In-Reply-To: <29CEF4C5-1730-4AAC-8E2A-CA149C287085@googlemail.com> References: <29CEF4C5-1730-4AAC-8E2A-CA149C287085@googlemail.com> Message-ID: On 25 Oct, 2011, at 15:38, Karsten Wolf wrote: > Hi, > > I have a pyobjc/py2app application that did fine for several years now but failed launching on OSX 10.5 after the upgrade from Python 2.7.1 to 2.7.2. > > It runs fine on 10.4 (build machine) and 10.6. > > The failing part seems to be the site-packages.zip file and it could be made launching by manually unpacking and deleteing the zip. This sounds like a change in the default search path for the interpreter, although that shouldn't happen in a minor release. I don't have a 2.7.1 install to check this at the moment though. > > I tried to upgrade to the current mercurial but with that the build fails. Could you send me the error message? Ronald -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From karstenwo at googlemail.com Tue Oct 25 22:42:19 2011 From: karstenwo at googlemail.com (Karsten Wolf) Date: Tue, 25 Oct 2011 22:42:19 +0200 Subject: [Pythonmac-SIG] Launch failed w py2app0.5.3 on OSX 10.5 In-Reply-To: References: <29CEF4C5-1730-4AAC-8E2A-CA149C287085@googlemail.com> Message-ID: <30797788-A56C-4B87-8F55-176F3811E4B1@googlemail.com> Am 25.10.2011 um 20:33 schrieb Ronald Oussoren: ... > Could you send me the error message? Kicked it out. Reinstalled it for the error message. It builds the binary. It launches on my machine. I don't get it. Back to the problem. The OSX 10.5 machines that didn't launch the app complained at import os in site.py that zlib is missing. Tomorrow I'll be able to test the new app on the complaining machines. -karsten P.S.: I still don't get my own posts to the list. The confirmation arrives. From karstenwo at googlemail.com Wed Oct 26 14:17:46 2011 From: karstenwo at googlemail.com (Karsten Wolf) Date: Wed, 26 Oct 2011 14:17:46 +0200 Subject: [Pythonmac-SIG] Launch failed w py2app0.5.3 on OSX 10.5 In-Reply-To: References: <29CEF4C5-1730-4AAC-8E2A-CA149C287085@googlemail.com> Message-ID: Can't reply to my own post. Same Problem. It doesn't launch with current py2app on OSX 10.5. -karsten From Chris.Barker at noaa.gov Wed Oct 26 20:46:55 2011 From: Chris.Barker at noaa.gov (Chris.Barker) Date: Wed, 26 Oct 2011 11:46:55 -0700 Subject: [Pythonmac-SIG] [py2app] packaging an egg using pkg_resources In-Reply-To: <688EB8D5-1AE7-46AD-83F1-3555026CB469@mac.com> References: <82063C0E-12CF-41A5-B933-A1622AFFEF40@gmail.com> <71CC0C54-C970-434D-B9B2-AF1371162B2D@mac.com> <4EA0407E.9080708@noaa.gov> <688EB8D5-1AE7-46AD-83F1-3555026CB469@mac.com> Message-ID: <4EA8559F.4000307@noaa.gov> On 10/23/11 10:52 PM, Ronald Oussoren wrote: >>> The "proper" solution is to teach py2app how to copy eggs with their >>> metadata and resources into the >>> application bundle. >> >> That would be nice, but I don't know that it's really the "best" solution. > > Eggs exist and py2app should support them, otherwise people have to resort to ugly workarounds like copying files manually. Adding an option for copying a set of eggs into the application bundle would be fairly easy. I wasn't clear -- I agree that copying the egg into the bundle is the best solution for py2app itself. I was arguing that it would be better to not use setuptools features in that way at all -- but if they're used, it's nice for py2app to support them. >> AS for resources, personally I like to use python files for data -- and then "import" to get it - this makes for nice, clean integeration with py2app, etc. > > I use python files for resources on Windows to get single-file executables with py2exe, but prefer to use real data files on OSX for easier maintenance. I guess what I think causes difficulties is data files required by a third-party package, rather than the one my app uses -- I don't have any issue with data files for my app -- it's the ones in third party packages that you then need to install properly with py2app or py2exe -- that's a pain. -CHB -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chris.Barker at noaa.gov From ronaldoussoren at mac.com Thu Oct 27 08:02:16 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Thu, 27 Oct 2011 08:02:16 +0200 Subject: [Pythonmac-SIG] [py2app] packaging an egg using pkg_resources In-Reply-To: <4EA8559F.4000307@noaa.gov> References: <82063C0E-12CF-41A5-B933-A1622AFFEF40@gmail.com> <71CC0C54-C970-434D-B9B2-AF1371162B2D@mac.com> <4EA0407E.9080708@noaa.gov> <688EB8D5-1AE7-46AD-83F1-3555026CB469@mac.com> <4EA8559F.4000307@noaa.gov> Message-ID: On 26 Oct, 2011, at 20:46, Chris.Barker wrote: > On 10/23/11 10:52 PM, Ronald Oussoren wrote: >>>> The "proper" solution is to teach py2app how to copy eggs with their >>>> metadata and resources into the >>>> application bundle. >>> >>> That would be nice, but I don't know that it's really the "best" solution. >> >> Eggs exist and py2app should support them, otherwise people have to resort to ugly workarounds like copying files manually. Adding an option for copying a set of eggs into the application bundle would be fairly easy. > > I wasn't clear -- I agree that copying the egg into the bundle is the best solution for py2app itself. > > I was arguing that it would be better to not use setuptools features in that way at all -- but if they're used, it's nice for py2app to support them. > > >>> AS for resources, personally I like to use python files for data -- and then "import" to get it - this makes for nice, clean integeration with py2app, etc. >> >> I use python files for resources on Windows to get single-file executables with py2exe, but prefer to use real data files on OSX for easier maintenance. > > I guess what I think causes difficulties is data files required by a third-party package, rather than the one my app uses -- I don't have any issue with data files for my app -- it's the ones in third party packages that you then need to install properly with py2app or py2exe -- that's a pain. That's one thing that setuptools tries to solve: the egg should contain all data and pkg_resources provides an API to get at the data without having to assume that they are at a fixed location in the filesystem. In theory this means py2app can stuff all code into the site-packages.zip file while storing resources as files without breaking application code. That would likely break existing code though. Distutils2/packaging has a simular (but different) solution to the same problem. Ronald > > -CHB > > > > -- > Christopher Barker, Ph.D. > Oceanographer > > Emergency Response Division > NOAA/NOS/OR&R (206) 526-6959 voice > 7600 Sand Point Way NE (206) 526-6329 fax > Seattle, WA 98115 (206) 526-6317 main reception > > Chris.Barker at noaa.gov > _______________________________________________ > Pythonmac-SIG maillist - Pythonmac-SIG at python.org > http://mail.python.org/mailman/listinfo/pythonmac-sig > unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From karstenwo at googlemail.com Thu Oct 27 08:50:39 2011 From: karstenwo at googlemail.com (Karsten Wolf) Date: Thu, 27 Oct 2011 08:50:39 +0200 Subject: [Pythonmac-SIG] Launch failed w py2app0.5.3 on OSX 10.5 In-Reply-To: References: <29CEF4C5-1730-4AAC-8E2A-CA149C287085@googlemail.com> <30797788-A56C-4B87-8F55-176F3811E4B1@googlemail.com> Message-ID: Am 27.10.2011 um 07:56 schrieb Ronald Oussoren: > That's an option for the list, you can change this through the > webpage at > (use the "unsubscribe or edit options" button at the bottom of the > page, on the next page log in to edit options) Did that several times. Made sure that I get my own posts. Last time I switched the confirmation mail on, works. From ronaldoussoren at mac.com Thu Oct 27 07:56:10 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Thu, 27 Oct 2011 07:56:10 +0200 Subject: [Pythonmac-SIG] Launch failed w py2app0.5.3 on OSX 10.5 In-Reply-To: <30797788-A56C-4B87-8F55-176F3811E4B1@googlemail.com> References: <29CEF4C5-1730-4AAC-8E2A-CA149C287085@googlemail.com> <30797788-A56C-4B87-8F55-176F3811E4B1@googlemail.com> Message-ID: On 25 Oct, 2011, at 22:42, Karsten Wolf wrote: > > > P.S.: I still don't get my own posts to the list. The confirmation arrives. That's an option for the list, you can change this through the webpage at (use the "unsubscribe or edit options" button at the bottom of the page, on the next page log in to edit options) Ronald -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: From ronaldoussoren at mac.com Thu Oct 27 10:05:04 2011 From: ronaldoussoren at mac.com (Ronald Oussoren) Date: Thu, 27 Oct 2011 10:05:04 +0200 Subject: [Pythonmac-SIG] Launch failed w py2app0.5.3 on OSX 10.5 In-Reply-To: References: <29CEF4C5-1730-4AAC-8E2A-CA149C287085@googlemail.com> Message-ID: On 26 Oct, 2011, at 14:17, Karsten Wolf wrote: > Can't reply to my own post. > > Same Problem. > > It doesn't launch with current py2app on OSX 10.5. > I cannot reproduce this at the moment, I don't have a machine running 10.5 and I haven't managed to install 10.5 in a parallels VM yet because the system can't get beyond the system setup program that starts after the initial install (for some reason OSX 10.5 in the VM thinks it doesn't have a network) :-( Ronald > -karsten > -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4788 bytes Desc: not available URL: