This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author barry-scott
Recipients barry-scott
Date 2012-12-30.21:39:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356903579.79.0.644714985612.issue16821@psf.upfronthosting.co.za>
In-reply-to
Content
bundlebuild in pytthon 2.7 fails to create usable applications.

After examining the code there are a number of coding errors:

1. optimize will puts the -O in the wrong place in the argv
2. Modules.zip is never added to the path

The bunderbuilder in 2.6 can be made to work with 2.7 by
applying the following patch to the 2.6 code.

--- bundlebuilder.py~   2012-12-30 21:32:40.000000000 +0000
+++ bundlebuilder.py    2012-12-30 21:32:40.000000000 +0000
@@ -337,7 +337,6 @@
     "Python",  # the Python core library
     "Resources/English.lproj",
     "Resources/Info.plist",
-    "Resources/version.plist",
 ]
 
 def isFramework():
History
Date User Action Args
2012-12-30 21:39:39barry-scottsetrecipients: + barry-scott
2012-12-30 21:39:39barry-scottsetmessageid: <1356903579.79.0.644714985612.issue16821@psf.upfronthosting.co.za>
2012-12-30 21:39:39barry-scottlinkissue16821 messages
2012-12-30 21:39:39barry-scottcreate