summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* Fix OS X installer build script to handle the pretty-printed _sysconfigdata.pyNed Deily2013-08-011-8/+48
| | | | | when removing references to temporary build files. This is not an elegant solution but it does isolate changes to just build-installer.py.
* (3.3->default) Issue #18377: Code cleanup in Python LauncherRonald Oussoren2013-07-078-95/+77
|\ | | | | | | | | This changeset fixes a number of compiler warnings in the Python Launcher binary for OSX. It also cleans up whitespace usage in those sources.
| * Issue #18377: Code cleanup in Python LauncherRonald Oussoren2013-07-078-95/+77
| | | | | | | | | | This changeset fixes a number of compiler warnings in the Python Launcher binary for OSX. It also cleans up whitespace usage in those sources.
* | (3.3->default) Issue #12990: The "Python Launcher" on OSX could not launch ↵Ronald Oussoren2013-07-061-1/+1
|\ \ | |/ | | | | python scripts that have paths that include wide characters.
| * Issue #12990: The "Python Launcher" on OSX could not launch python scripts ↵Ronald Oussoren2013-07-061-1/+1
| | | | | | | | that have paths that include wide characters.
* | Merge with 3.3: Issue #17047: removed doubled words in Doc/*,Terry Jan Reedy2013-03-111-1/+1
|\ \ | |/ | | | | Mac/*, and Tool/* found by Serhiy Storchaka and Matthew Barnett
| * Merge with 3.2: Issue #17047: removed doubled words in Doc/*,Terry Jan Reedy2013-03-111-1/+1
| |\ | | | | | | | | | Mac/*, and Tool/* found by Serhiy Storchaka and Matthew Barnett
| | * Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/*Terry Jan Reedy2013-03-111-1/+1
| | | | | | | | | | | | found by Serhiy Storchaka and Matthew Barnett
* | | Issue #15587: merge from 3.3Ned Deily2013-02-022-0/+4
|\ \ \ | |/ /
| * | Issue #15587: merge from 3.2Ned Deily2013-02-022-0/+4
| |\ \ | | |/
| | * Issue #15587: Enable Tk high-resolution text rendering on Macs withNed Deily2013-02-022-0/+4
| | | | | | | | | | | | | | | | | | Retina displays. Applies to Tkinter apps, such as IDLE, on OS X framework builds linked with Cocoa Tk 8.5+. Suggested by Kevin Walzer
* | | Issue #16256: merge from 3.3Ned Deily2013-02-011-1/+1
|\ \ \ | |/ /
| * | Issue #16256: merge from 3.2Ned Deily2013-02-011-1/+1
| |\ \ | | |/
| | * Issue #16256: OS X installer now sets correct permissions for doc directory.Ned Deily2013-02-011-1/+1
| | |
* | | Issue #14018: merge to defaultNed Deily2013-01-291-1/+5
|\ \ \ | |/ /
| * | Issue #14018: merge to 3.3Ned Deily2013-01-291-1/+5
| |\ \ | | |/
| | * Issue #14018: Backport OS X installer updates from 3.3.Ned Deily2013-01-299-422/+412
| | |
* | | Update copyright dates in Mac plists.Ned Deily2013-01-014-7/+7
|\ \ \ | |/ /
| * | Update copyright dates in Mac plists.Ned Deily2013-01-014-7/+7
| |\ \ | | |/
| | * Update copyright dates in Mac plists.Ned Deily2013-01-014-7/+7
| | |
* | | #16135: Removal of OS/2 support (I)Jesus Cea2012-10-041-1/+1
|/ /
* | Update various OS X README files for 3.3.0.Ned Deily2012-08-254-59/+163
| |
* | Issue #15037: Use correct path to system terminfo database.Ned Deily2012-08-241-2/+0
| |
* | Issue #14292: Ensure that the OS X installer build configures the CXXNed Deily2012-08-231-13/+15
| | | | | | | | | | | | environment variable to a value comparable to what it sets for CC for the benefit of C++ extension modules. (Patch by Ronald Oussoren)
* | Issue #15560: Ensure consistent sqlite3 behavior and feature availabilityNed Deily2012-08-071-24/+27
| | | | | | | | | | by building a local copy of libsqlite3 with OS X installers rather than depending on the wide range of versions supplied with various OS X releases.
* | Issue #15037: Build OS X installers with local copy of ncurses 5.9 librariesNed Deily2012-08-062-105/+89
| | | | | | | | | | to avoid curses.unget_wch bug present in older versions of ncurses such as those shipped with OS X.
* | OS X installer cleanups:Ned Deily2012-08-062-7/+27
| | | | | | | | | | | | | | | | - Remove OS X installer and Mac/Makefile dependencies on /Developer which no longer exists with Xcode 4; the referenced tools have been installed into the usr/bin tool root since Xcode 3. - Support adding the SDK usr/bin tool root to the installer's PATH via the SDK_TOOLS_BIN environment variable.
* | Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs.Ned Deily2012-07-301-12/+45
| | | | | | | | | | | | Also add tests in the OS X installer build to ensure that the desired dynamic linking with an optional newer Tcl/Tk in /Library actually happens.
* | Issue #15188: Prevent test_ldshared_value failure due to slightlyNed Deily2012-07-221-2/+2
| | | | | | | | | | | | | | | | | | different parsing of the Makefile by distutils.sysconfig and sysconfig in the case when an intermediate config vars, used to construct PY_CFLAGS or PY_LDFLAGS, has a trailing space character. In this case, the OS X installer build script was leaving a trailing space in the OPT and LDFLAGS config vars. The space is not significant and it's not worth toying with the Makefile parsing.
* | Issue #15188: Modify the OS X build_installer script to remove temporaryNed Deily2012-07-211-12/+19
| | | | | | | | | | | | build paths from configuration variables cached in _sysconfigdata.py, as is already done for the installed Makefile. This avoids a distuils test case failure in test_ldshared_value.
* | Closes #15307: symlinks now work on OS X with framework Python builds. ↵Vinay Sajip2012-07-171-2/+38
| | | | | | | | Patch by Ronald Oussoren.
* | Closes #15173: Tidied up copyright statements and removed pythonv references.Vinay Sajip2012-06-241-1/+1
| |
* | Update OS X installer build target compilers.Ned Deily2012-06-241-1/+3
| |
* | Update compileall calls in OS X installer postflight script toNed Deily2012-06-242-11/+12
| | | | | | | | | | | | | | properly skip uncompilable files and to compile existing files in site-packages if reinstalling. Also, no longer attempt to install a documentation link in /Developer as that no longer necessarily exists with Xcode 4.3+.
* | Remove obsolete fixapplepython23 script and PythonSystemFixesNed Deily2012-06-243-143/+3
| | | | | | | | | | | | installer package from the OS X Makefile for Python 3. It has never worked on Python 3 and is not needed there as pre-10.3.9 installs are no longer supported.
* | Update OS X installer build script to be Python 3 compatible.Ned Deily2010-11-281-64/+88
| | | | | | | | | | | | Builds are not yet fully supported on Python 3 as some parts of the build process (like the documentation build chain) are still dependent on Python 2.
* | Issue #13590: Improve support for OS X Xcode 4:Ned Deily2012-06-241-67/+106
| | | | | | | | * update README
* | Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-262-2/+14
| |
* | Issue #13507: OS X installer builds now build liblzma for the newNed Deily2012-04-011-0/+11
|/ | | | lzma module. (Patch by Nicholas Riley)
* Issue #14346: Fix some typos in the Mac/README file.Ned Deily2012-03-171-5/+5
| | | | (Patch by Dionysios Kalofonos)
* Update copyright dates in Mac plists.Ned Deily2012-01-014-7/+7
|
* Issue #11217: For 64-bit/32-bit Mac OS X universal framework builds,Ned Deily2011-05-281-0/+13
| | | | | ensure "make install" creates symlinks in --prefix bin for the "-32" files in the framework bin directory like the installer does.
* #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| |
* | #11515: Merge with 3.1.Ezio Melotti2011-03-152-3/+3
|\ \ | |/
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
| |
| * Merged revisions 88007 via svnmerge fromNed Deily2011-01-181-30/+0
| | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88007 | ned.deily | 2011-01-14 21:44:21 -0800 (Fri, 14 Jan 2011) | 5 lines Remove spurious copy of Mac/IDLE/idlemain.py left over from conversion from Python 2 build process. The correct version is in Mac/IDLE/IDLE.app/Contents/Resources/ ........
| * Merged revisions 87791 via svnmerge fromGeorg Brandl2011-01-094-7/+7
| | | | | | | | | | | | | | | | | | | | svn+ssh://svn.python.org/python/branches/py3k ........ r87791 | georg.brandl | 2011-01-06 11:05:26 +0100 (Do, 06 Jan 2011) | 1 line #10844: update copyright years in Mac plists. ........
| * Merged revisions 85059 via svnmerge fromRonald Oussoren2010-09-281-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85059 | ronald.oussoren | 2010-09-28 15:57:58 +0200 (Tue, 28 Sep 2010) | 5 lines Add support for the ZSH shell to the "Update Shell Profile" script on MacOSX. Patch by Sylvain Mora, issue #9701. ........
| * Merged revisions 80659 via svnmerge fromRonald Oussoren2010-04-301-1/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80659 | ronald.oussoren | 2010-04-30 17:13:13 +0200 (Fri, 30 Apr 2010) | 10 lines Merged revisions 80657 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80657 | ronald.oussoren | 2010-04-30 17:11:22 +0200 (Fri, 30 Apr 2010) | 3 lines Add notes about uninstalling a framework install to Mac/README. Fixes issue 7107. ........ ................