summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* 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.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.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 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 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. ........ ................
| * Merged revisions 80655 via svnmerge fromRonald Oussoren2010-04-301-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80655 | ronald.oussoren | 2010-04-30 17:00:26 +0200 (Fri, 30 Apr 2010) | 9 lines Merged revisions 80653 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80653 | ronald.oussoren | 2010-04-30 16:58:39 +0200 (Fri, 30 Apr 2010) | 2 lines Fix for issue 8476 ........ ................
| * Merged revisions 80366 via svnmerge fromMartin v. Löwis2010-04-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80366 | martin.v.loewis | 2010-04-22 15:16:44 +0200 (Do, 22 Apr 2010) | 10 lines Merged revisions 80355 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80355 | martin.v.loewis | 2010-04-22 13:34:36 +0200 (Do, 22 Apr 2010) | 3 lines Issue #8475: Pass absolute interpreter path to "make html". ........ ................
| * Ensure the framework installs cleanly afterRonald Oussoren2010-04-202-1/+4
| | | | | | | | the recent changes to CFLAGS and BASECFLAGS.
| * Merged revisions 80233 via svnmerge fromRonald Oussoren2010-04-201-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80233 | ronald.oussoren | 2010-04-20 08:36:47 +0200 (Tue, 20 Apr 2010) | 10 lines Merged revisions 80232 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80232 | ronald.oussoren | 2010-04-20 07:50:44 +0200 (Tue, 20 Apr 2010) | 3 lines Explicitly set system default for $PATH to ensure we have a clean build environment (OSX installer) ........ ................
| * Fix for issue #5652Ronald Oussoren2010-04-181-10/+0
| |
| * Merged revisions 80185 via svnmerge fromRonald Oussoren2010-04-181-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80185 | ronald.oussoren | 2010-04-18 17:24:17 +0200 (Sun, 18 Apr 2010) | 12 lines Merged revisions 80179 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80179 | ronald.oussoren | 2010-04-18 16:01:05 +0200 (Sun, 18 Apr 2010) | 5 lines Add check to build-installer.py to ensure that the right version of Tcl/Tk is available (on OSX) Fixes issue #5651 ........ ................
| * Merged revisions 79119 via svnmerge fromBenjamin Peterson2010-03-191-187/+254
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r79119 | benjamin.peterson | 2010-03-19 16:42:45 -0500 (Fri, 19 Mar 2010) | 1 line update mac installer script from the trunk #8068 ........
| * port r78813 from trunk fixing #8089Benjamin Peterson2010-03-192-24/+86
| |
| * Merged revisions 78063 via svnmerge fromRonald Oussoren2010-02-071-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r78063 | ronald.oussoren | 2010-02-07 12:46:38 +0100 (Sun, 07 Feb 2010) | 4 lines Mention a configure warning that almost certainly indicates that configure is picking up a library that doesn't contain all architectures required for a universal build on OSX. ........
| * Merged revisions 77389 via svnmerge fromBenjamin Peterson2010-01-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77389 | benjamin.peterson | 2010-01-09 12:45:30 -0600 (Sat, 09 Jan 2010) | 25 lines Merged revisions 77209,77229,77359-77360,77371 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77209 | georg.brandl | 2010-01-01 07:07:05 -0600 (Fri, 01 Jan 2010) | 1 line More yearly updates. ........ r77229 | georg.brandl | 2010-01-02 06:35:01 -0600 (Sat, 02 Jan 2010) | 1 line Fix casing. ........ r77359 | georg.brandl | 2010-01-07 14:54:45 -0600 (Thu, 07 Jan 2010) | 1 line Fix description for Py_GetPath(); it sounded like it always returned sys.path. ........ r77360 | georg.brandl | 2010-01-07 15:48:47 -0600 (Thu, 07 Jan 2010) | 1 line #7653: clarify how the PythonPath registry key should look like. ........ r77371 | senthil.kumaran | 2010-01-08 13:20:25 -0600 (Fri, 08 Jan 2010) | 3 lines Fix for Issue7026. For the Error - RuntimeError: dictionary changed size during iteration ........ ................
| * Merged revisions 76409 via svnmerge fromRonald Oussoren2009-11-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r76409 | ronald.oussoren | 2009-11-19 18:44:52 +0100 (Thu, 19 Nov 2009) | 11 lines Merged revisions 76407 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76407 | ronald.oussoren | 2009-11-19 18:42:51 +0100 (Thu, 19 Nov 2009) | 4 lines Don't use the '==' operator with test, that's an unportable bash-ism. (Issue 7179) ........ ................