Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used both | Jack Jansen | 2002-12-30 | 1 | -704/+0 |
| | | | | | | | in MacPython-OS9 and MacPython-OSX (or the equivalent unix Python on Mac OS X). The only items remaining in Mac/Lib are modules that are meaningful only for MacPython-OS9 (CFM stuff, MacPython preferences in resources, etc). | ||||
* | - found a case where sys.path[0] isn't set to Contents/Resources, | Just van Rossum | 2002-11-30 | 1 | -2/+8 |
| | | | | | so search the entire path. - only add modules if we're building a standalone application. | ||||
* | Forgot to do os.path.basename() on mainprogram: a nonworking app was built ↵ | Just van Rossum | 2002-11-29 | 1 | -7/+6 |
| | | | | if the mainprogram wan't in the current directory. Fixed. | ||||
* | added Thomas H's LOADER code for importing extension (sub)modules; little tweaks | Just van Rossum | 2002-11-29 | 1 | -21/+27 |
| | |||||
* | fixed typo and wrapping | Just van Rossum | 2002-11-28 | 1 | -1/+2 |
| | |||||
* | - Rewrote bootstapping code in sh so we're really independent of an | Just van Rossum | 2002-11-28 | 1 | -40/+54 |
| | | | | | | | | | | installed Python. So we don't use os.execve any longer, which means we need an actual executable in <myapp>.app/Contents/MacOS. For applets we make a symlink to the Python executable used to build the applet, for standalone apps we simply copy it. - Added support for the new any_missing_maybe() feature of modulefinder.py, which is pending as patch #643711. Its use is optional so it still works with the existing version of modulefinder.py | ||||
* | added support for building standalone applications | Just van Rossum | 2002-11-26 | 1 | -14/+259 |
| | | | | | - requires modulefinder.py to be on sys.path - does *not* work for Python.framework (yet), only for static builds | ||||
* | get creator code from plist if available, instead of overriding with default | Just van Rossum | 2002-11-24 | 1 | -1/+6 |
| | |||||
* | whoops, -p actually has an argument | Just van Rossum | 2002-11-24 | 1 | -1/+1 |
| | |||||
* | cleaned up __init__ argument mess with a funky base class | Just van Rossum | 2002-11-23 | 1 | -74/+81 |
| | |||||
* | Added --link-exec option: make a symlink for the executable only, copy all ↵ | Just van Rossum | 2002-11-22 | 1 | -4/+20 |
| | | | | other files. | ||||
* | fixed error in cmd line doc; moved funny self.name line once more | Just van Rossum | 2002-11-22 | 1 | -2/+3 |
| | |||||
* | fixed stupid bug | Just van Rossum | 2002-11-22 | 1 | -1/+1 |
| | |||||
* | added command line interface; refactored a bit; little things. | Just van Rossum | 2002-11-21 | 1 | -82/+179 |
| | |||||
* | Tools to create MacOS X (application) bundles. | Just van Rossum | 2002-11-21 | 1 | -0/+307 |
Todo: - command line parsing - main program - modulefinder(-like ;-) support to build standalone apps. |