Changes between Initial Version and Version 6 of Ticket #27828


Ignore:
Timestamp:
Jan 2, 2011, 4:04:44 AM (14 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27828

    • Property Cc jmr@… added
    • Property Port py26-py2app py25-py2app added
  • Ticket #27828 – Description

    initial v6  
    33For example, if you download the MusicBrainz Picard source package, install the dependencies with MacPorts, and build everything, you can run it from the source tree. But when you then try to build an app bundle with:
    44
     5{{{
    56$ /opt/local/bin/python2.6 setup.py py2app
     7}}}
    68
    79It fails with "IOError: [Errno 2] No such file or directory: '/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/py2app/apptemplate/prebuilt/main-x86_64'" and dumps you into pdb.
    810
    911The first problem seems to be an incomplete (and incorrect) set of apptemplates. The port installs four prebuilt templates:
    10 * main-fat: i386+ppc
    11 * main-fat3: i386+ppc+x86_64
    12 * main-intel: i386+ppc+x86_64
    13 * main-universal: i386+ppc+ppc64+x86_64
     12 * main-fat: i386+ppc
     13 * main-fat3: i386+ppc+x86_64
     14 * main-intel: i386+ppc+x86_64
     15 * main-universal: i386+ppc+ppc64+x86_64
    1416
    1517As you can see, the main-x86_64 template is missing. (Also, at least one of the 4, main-intel, is wrong, and none of the 4 are useful anyway given that python was build x86_64-only.)