Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add ./ to configure command so it actually works verbatim | Just van Rossum | 2002-09-16 | 1 | -1/+1 |
| | |||||
* | Patch by Tony Lownds: build an IDLE applet too, if _tkinter is available. | Jack Jansen | 2002-09-12 | 1 | -1/+21 |
| | | | | I modified the patch to make it a non-fatal error if IDLE isn't built. | ||||
* | Updated the notes on building a binary installer. | Jack Jansen | 2002-09-06 | 1 | -2/+15 |
| | |||||
* | Fixed a typo in the binary install notes | Jack Jansen | 2002-09-06 | 1 | -66/+72 |
| | | | | rewrapped: as usual with my files everything was far wider than 80 chars. | ||||
* | Started on documentation for building a MacOSX binary installer. | Jack Jansen | 2002-09-06 | 1 | -1/+28 |
| | | | | Unfinished. | ||||
* | Generate pythonw.sh on the fly. | Jack Jansen | 2002-09-02 | 1 | -5/+7 |
| | | | | Use the build python for as many things as possible. | ||||
* | Pass -x badsyntax to compileall. | Jack Jansen | 2002-09-02 | 1 | -4/+4 |
| | | | | Tweaks to make builds work for non-standard dstroot. | ||||
* | Fix for Jaguar: use ln for installing symlinks, install no longer works. | Jack Jansen | 2002-08-30 | 1 | -2/+2 |
| | | | | Fix for sh: use : in stead of an empty then clause in an if. | ||||
* | On Jaguar the default mode for files in the installed product is 444 (or 555) | Jack Jansen | 2002-08-30 | 1 | -0/+1 |
| | | | | | in stead of 644 (755). This makes a subsequent install fail. Changed the INSTALL_MODE_FLAG to fix this. | ||||
* | Distutils-based script by Bill Fancher to download the Python documentation | Jack Jansen | 2002-08-28 | 1 | -0/+166 |
| | | | | | | HTML tarball and use it to create a documentation tree readable and searchable with Apple Help Viewer. The documentation also shows up in Project Builder (if you add Python.framework to your project). | ||||
* | - Install a symlink to the documentation (which lives in the framework) | Jack Jansen | 2002-08-28 | 1 | -0/+4 |
| | | | | | | in Python.app, and refer to it in Info.plist. This makes Apple Help Viewer recognize the Python documentation. - Changed the externally visible name of Python.app to "Python" (was PythonW). | ||||
* | Try to cater for a source tree checked out with MacCVS in stead of | Jack Jansen | 2002-08-15 | 1 | -6/+36 |
| | | | | | unix cvs. In this case the resource files are actual resource files in stead of AppleSingle encoded files. | ||||
* | Updated for the current state of affairs. | Jack Jansen | 2002-08-12 | 1 | -20/+27 |
| | |||||
* | - Precompile py files in Mac subtree after installing | Jack Jansen | 2002-08-09 | 1 | -28/+34 |
| | | | | | - Pre-cache .rsrc files in Mac subtree after installing - Fixed nameclash in Make variables | ||||
* | By popular demand the frameworkinstall target now installs everything: | Jack Jansen | 2002-08-09 | 1 | -17/+21 |
| | | | | | | | | | the framework, the MacOSX apps and the unix tools. Most of the hard work is done by Mac/OSX/Makefile. Also, it should now be possible to install in a different directory, such as /tmp/dist/Library/Frameworks, for building binary installers. The fink crowd wanted this. | ||||
* | Quote the arguments, they may contain strings. | Jack Jansen | 2002-08-07 | 1 | -1/+1 |
| | |||||
* | Added an icon for .pyw files. | Jack Jansen | 2002-08-02 | 2 | -0/+15 |
| | |||||
* | Build the IDE last, as it may fail because of waste missing. | Jack Jansen | 2002-08-02 | 1 | -1/+1 |
| | |||||
* | Added a lot more information on framework builds, the various .app's, | Jack Jansen | 2002-08-02 | 1 | -2/+87 |
| | | | | etc. Still not enough, probably, but better than what we had. | ||||
* | Updated for the new path to Python.app. | Jack Jansen | 2002-08-02 | 1 | -1/+1 |
| | |||||
* | When building the IDE check that waste is available, to forestall | Jack Jansen | 2002-08-02 | 1 | -0/+5 |
| | | | | surprises later (the IDE won't work without waste). | ||||
* | Also create BuildApplet. It's useful enough as a standalone application. | Jack Jansen | 2002-08-02 | 1 | -1/+6 |
| | |||||
* | Added one call to Py_Main(), for OSX framework builds only, that will get the | Jack Jansen | 2002-08-02 | 2 | -43/+24 |
| | | | | | | | | | | | | | actual script to run in case we are running from an applet. If we are indeed running an applet we skip the normal option processing leaving it all to the applet code. This allows us to get use the normal python binary in the Python.app bundle, giving us all the normal command line options through PythonLauncher while still allowing Python.app to be used as the template for building applets. Consequently, pythonforbundle is gone, and Mac/Python/macmain.c isn't used on OSX anymore. | ||||
* | Python.app is now a hidden application, deep in the framework. It will | Jack Jansen | 2002-08-01 | 2 | -32/+31 |
| | | | | | | | be invoked by PythonLauncher when needed. Also changed the names of various variables in the Makefile to match what the main Makefile has. | ||||
* | Only show the UI for selecting options if the ALT key was depressed while | Jack Jansen | 2002-08-01 | 1 | -18/+7 |
| | | | | dragging or double-clicking the script. | ||||
* | - Install into /Applications/Python in stead of into /Applications. | Jack Jansen | 2002-07-31 | 1 | -8/+23 |
| | | | | - Build PythonLauncher.app and PythonIDE.app as well as Python.app. | ||||
* | Install into /Applications/Python in stead of into /Applications. | Jack Jansen | 2002-07-31 | 1 | -3/+2 |
| | |||||
* | Implemented starting Python in a terminal window. The implementation isn't | Jack Jansen | 2002-07-31 | 5 | -6/+177 |
| | | | | optimal, especially if Terminal wasn't running yet, but it works. | ||||
* | First stab at the launcher application. This will be run when the user | Jack Jansen | 2002-07-29 | 24 | -0/+1413 |
| | | | | | | | | | | | | | | | | | doubleclicks a .py, .pyw or .pyc file. It runs the file by invoking the relevant interpreter (either the command line Python in a terminal window or a Python.app for GUI-based scripts). Interpreter to use and the options to pass are settable through preferences. If PythonLauncher wasn't running it does its thing for one script and exits. If it was manually started before a dialog is presented where the user can set the options to use, etc. To be done: - option-drag/doubleclick should always open the interactive dialog - Terminal-window isn't done yet - Should be reimplemented in Python, but pyobjc isn't part of the core. - Various menu entries should be disabled. | ||||
* | Got rid of symlink target, and in stead have "make dontinstallmacsubtree" | Jack Jansen | 2002-07-08 | 1 | -8/+8 |
| | | | | | | which uses a .pth file to add the Mac/Lib from your source tree to sys.path. Also put the Python version number in a variable.Killed by signal 2. | ||||
* | Patch #557719 by Tony Lownds, slightly massaged by me: streamline the | Jack Jansen | 2002-06-21 | 2 | -10/+27 |
| | | | | | | | | | OSX framework build process. Things fixed/modified: - the filesystem case-sensitivity test now works for builds outside the source directory - various other fixes for building outside the source directory - python.app now has a target in the main Makefile - WASTE and AquaTk are found more automatically | ||||
* | Added missing dirs to LIBSUBDIRS, and reformatted it so it's easier to read | Jack Jansen | 2002-05-23 | 1 | -3/+14 |
| | | | | and maintain. Fixes #557482. | ||||
* | Add Mac/Lib/lib-scriptpackages to sys.path too. | Jack Jansen | 2002-03-30 | 1 | -2/+4 |
| | |||||
* | Added -Wno-long-double | Jack Jansen | 2002-03-29 | 1 | -1/+2 |
| | |||||
* | Added target "installunixprograms" which installs python and pythonw in | Jack Jansen | 2002-03-29 | 1 | -2/+22 |
| | | | | | | /usr/local/bin (referring to the framework-based interpreter and Python.app). Added target symlinkmacsubtree to aid in debugging. | ||||
* | Shell script that invokes Python.app from the command line. Called pythonw | Jack Jansen | 2002-03-29 | 1 | -0/+2 |
| | | | | because of similarity to the same program on Windows. | ||||
* | Use full paths for Rez and DeRez, which may not be on $PATH. Fixes bug | Jack Jansen | 2002-01-27 | 1 | -3/+5 |
| | | | | #509074. | ||||
* | Also install the Tools directory on "make installmacsubtree". | Jack Jansen | 2002-01-21 | 1 | -1/+40 |
| | |||||
* | Added a note that you have to add Mac/Lib to sys.path after doing | Jack Jansen | 2002-01-18 | 2 | -0/+7 |
| | | | | a "make installmacsubtree". | ||||
* | Include errors.rsrc in the Python.app resource file, so the error strings | Jack Jansen | 2002-01-15 | 1 | -2/+6 |
| | | | | are available in MacOS API exceptions. | ||||
* | Updated, and converted line-endings to unix-style (oops:-) | Jack Jansen | 2001-12-09 | 1 | -1/+1 |
| | |||||
* | removed debug print. | Jack Jansen | 2001-09-11 | 1 | -1/+0 |
| | |||||
* | Added a note about making sure the Lac/Lib directory is in sys.path. | Jack Jansen | 2001-09-11 | 1 | -2/+8 |
| | |||||
* | Install the dialog resources into the application bundle. The EasyDialogs | Jack Jansen | 2001-09-09 | 1 | -1/+7 |
| | | | | selftest now works. | ||||
* | Oops, this file is very outdated. Removed. | Jack Jansen | 2001-09-08 | 1 | -116/+0 |
| | |||||
* | Minimal instructions for using the Makefile here. Also a clear | Jack Jansen | 2001-09-06 | 1 | -0/+28 |
| | | | | | statement that this is a proof-of-concept meant for people to experiment with, nothing more. | ||||
* | Added targets to install the application, and to install mac-additions | Jack Jansen | 2001-09-06 | 1 | -1/+113 |
| | | | | in Python. | ||||
* | Rudimentary makefile for building the executable to go into a | Jack Jansen | 2001-09-05 | 1 | -0/+18 |
| | | | | | | fullblown OSX application. It is starting to work, but building the application bundle is still handwork, and we need a minimal readme file too. | ||||
* | Steven Majewski's instructions for building the toolbox modules for | Jack Jansen | 2001-02-16 | 1 | -0/+116 |
incorporating them in a vanilla Python under MacOSX (i.e. in a non-MacPython-Python). Not complete and up-to-date right now, but that'll be fixed shortly. |