summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* update mac installer script from the trunk #8068Benjamin Peterson2010-03-191-187/+254
|
* Merged revisions 78755 via svnmerge fromRonald Oussoren2010-03-072-2/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78755 | ronald.oussoren | 2010-03-07 10:04:06 +0100 (Sun, 07 Mar 2010) | 3 lines Fix for issue #7998: pythonw didn't work when --with-framework-name was specified ........
* Forward port a number of OSX bugfixes from the trunk to 3.2Ronald Oussoren2010-02-072-5/+29
|
* Mention a configure warning that almost certainly indicates thatRonald Oussoren2010-02-071-0/+19
| | | | | configure is picking up a library that doesn't contain all architectures required for a universal build on OSX.
* Merged revisions 77209,77229,77359-77360,77371 via svnmerge fromBenjamin Peterson2010-01-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | 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 77031 via svnmerge fromRonald Oussoren2009-12-243-62/+213
| | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77031 | ronald.oussoren | 2009-12-24 14:30:58 +0100 (Thu, 24 Dec 2009) | 15 lines Issue #6834: replace the implementation for the 'python' and 'pythonw' executables on OSX. The previous implementation used execv(2) to run the real interpreter, which means that you cannot use the arch(1) tool to select the architecture you want to use for a universal build because that only affects the python/pythonw wrapper and not the actual interpreter. The new version uses posix_spawnv with a number of OSX-specific options that ensure that the real interpreter is started using the same CPU architecture as the wrapper, and that means that 'arch -ppc python' now actually works. I've also changed the way that the wrapper looks for the framework: it is now linked to the framework rather than hardcoding the framework path. This should make it easier to provide pythonw support in tools like virtualenv. ........
* Make the example paths in Mac/README no longer directly refer to 2.6.Brett Cannon2009-12-131-8/+10
|
* Merged revisions 76407 via svnmerge fromRonald Oussoren2009-11-191-2/+2
| | | | | | | | | | | | 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) ........
* Merged revisions 74966 via svnmerge fromRonald Oussoren2009-09-201-6/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74966 | ronald.oussoren | 2009-09-20 13:19:00 +0200 (Sun, 20 Sep 2009) | 2 lines For for issue 6934: failures in postflight script in OSX installer ........
* Fix symlink for 2to3 in framework install. Without this patch an incorrect ↵Ronald Oussoren2009-06-071-1/+1
| | | | link is created when DESTDIR is set.
* Remove the application stub for Python Launcher. ThisRonald Oussoren2009-06-0310-300/+0
| | | | | | | | directory structure isn't used during the build and causes problems when you do build without a separate build directory. Fixes issue 5267
* * Adapt framework install makefiles to 2to3 toolRonald Oussoren2009-05-262-3/+6
| | | | | * Re-enable installation of files in /usr/local/bin in the OSX installer because those files no longer clash with a 2.x install.
* Merged revisions 72789 via svnmerge fromRonald Oussoren2009-05-192-7/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72789 | ronald.oussoren | 2009-05-19 21:29:24 +0200 (Tue, 19 May 2009) | 2 lines Remove some traces of 'MacPython' ........
* MACOSXRonald Oussoren2009-05-1926-712/+5
| | | | | | * Remove junk documentation resources from the Python.app inside the framework (This is a left-over from the ancient Python IDE, which was removed before 2.5) * Ensure that the documentation is installed in a location where IDLE will see it
* Update framework installation makefiles to deal correctly with theRonald Oussoren2009-05-171-23/+19
| | | | rename of 'python' to 'python3'
* Fix typo in configure line that caused the build installerRonald Oussoren2009-04-011-1/+1
| | | | to not use the right LDFLAGS settings.
* Merged revisions 70802 via svnmerge fromRonald Oussoren2009-03-311-0/+11
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70802 | ronald.oussoren | 2009-03-31 08:20:45 -0500 (Tue, 31 Mar 2009) | 4 lines Minor update to OSX build-installer script, needed to ensure that the build will succeed in a clean checkout and with a non-default deployment target. ........
* Fix for issue 5558Ronald Oussoren2009-03-301-3/+5
|
* Merged revisions 70746 via svnmerge fromRonald Oussoren2009-03-301-0/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70746 | ronald.oussoren | 2009-03-30 15:02:08 -0500 (Mon, 30 Mar 2009) | 2 lines Fix for issue 13095 ........
* Merged revisions 70741 via svnmerge fromRonald Oussoren2009-03-302-5/+12
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70741 | ronald.oussoren | 2009-03-30 14:56:25 -0500 (Mon, 30 Mar 2009) | 2 lines Fixes issue 5270 ........
* Enable "--with-computed-gotos" for the binary installerRonald Oussoren2009-03-301-1/+1
| | | | on OSX.
* Merged revisions 70737 via svnmerge fromRonald Oussoren2009-03-302-87/+148
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70737 | ronald.oussoren | 2009-03-30 14:34:51 -0500 (Mon, 30 Mar 2009) | 6 lines * Set a custom icon on the Python installer DMG * Remove last traces of "MacPython" * Add options to build different flavors of the installer (still defaulting to a 2-way universal build that runs on OSX 10.3) ........
* Merged revisions 70735 via svnmerge fromRonald Oussoren2009-03-301-2/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70735 | ronald.oussoren | 2009-03-30 14:22:56 -0500 (Mon, 30 Mar 2009) | 3 lines Remove usage of the deprecated '-cString' and '+stringWithCString:' API's in PythonLauncher, replacing them with the correct counterparts. ........
* Merged revisions 70727 via svnmerge fromRonald Oussoren2009-03-302-109/+64
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r70727 | ronald.oussoren | 2009-03-30 12:15:29 -0500 (Mon, 30 Mar 2009) | 5 lines * Updates installed dependencies to latest releaases (bzip, zlib, ...) * Changes code for updating folder icons from Python code that uses the deprecated Carbon module to a much simpler Cocoa program in Objective-C ........
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-211-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69846 | mark.dickinson | 2009-02-21 20:27:01 +0000 (Sat, 21 Feb 2009) | 2 lines Issue #5341: Fix a variety of spelling errors. ........
* Fix for issue5224 ("Update Shell Profile.command" contains wrong Python ↵Ronald Oussoren2009-02-122-4/+3
| | | | version on OSX)
* Update the ReadMe and Welcome files that are used by the OSX binaryRonald Oussoren2009-02-122-10/+8
| | | | installer. Fixes issue5226. Patch by Ned Deily.
* Fix for issue5196, patch by Ned Deily.Ronald Oussoren2009-02-121-2/+7
|
* Fix for issue5195, a patch by Ned DeilyRonald Oussoren2009-02-121-0/+17
|
* Fix for issue5194, based on a patch by Ned Deily.Ronald Oussoren2009-02-123-9/+52
|
* Fix for issue 3433Ronald Oussoren2009-01-022-3/+3
|
* Py3k: update OSX installer-generatorRonald Oussoren2008-12-302-2/+16
| | | | | | | | | This update makes sure that the installer won't write files in /usr/local/bin by default. The installer also won't replace /Library/Frameworks/Python.framework/Version/Current. Both to ensure that the installer doens't break an existing install of python 2.x.
* Make it possible to install a framework build of Python 3.x on OSX.Ronald Oussoren2008-12-308-19/+1007
| | | | | | | | | | | This the build machinery on OSX to re-enable building (and installing) PythonLauncher.app and IDLE.app. This needs ports of fixes to Lib/distutils/util.py and Include/pymacconfig.h to be fully functiontional, to be fully functional. I also have a patch for Makefile.pre.in that I'll post on bugs.python.org for review.
* don't build bsddb anymoreBenjamin Peterson2008-12-201-11/+0
|
* unpy3kize this; it require 2.x only Mac modulesBenjamin Peterson2008-12-201-44/+43
|
* merge from trunkBenjamin Peterson2008-10-111-9/+11
|
* #3414: run install_Python when installing Python.Georg Brandl2008-07-191-3/+4
|
* fix typo in Mac/Makefile.inBenjamin Peterson2008-07-191-1/+1
|
* Merged revisions 64446,64490,64495,64526,64567 via svnmerge fromGeorg Brandl2008-07-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64446 | facundo.batista | 2008-06-21 19:43:56 +0200 (Sat, 21 Jun 2008) | 4 lines Fixed issue #2888. Now the behaviour of pprint when working with nested structures follows the common sense (and works like in 2.5 and 3.0). ........ r64490 | thomas.heller | 2008-06-23 21:51:41 +0200 (Mon, 23 Jun 2008) | 1 line Include debug info when assembling win64.asm in a debug build. ........ r64495 | benjamin.peterson | 2008-06-24 04:41:08 +0200 (Tue, 24 Jun 2008) | 1 line minor fix ........ r64526 | mark.dickinson | 2008-06-25 17:29:32 +0200 (Wed, 25 Jun 2008) | 2 lines issue #3199: Fix typo in Mac/Makefile.in ........ r64567 | mark.dickinson | 2008-06-28 00:20:14 +0200 (Sat, 28 Jun 2008) | 3 lines Fix typo in configure.in, and propagate configure.in changes from r64002 to configure and pyconfig.h.in. ........
* Merged revisions 63955 via svnmerge fromGeorg Brandl2008-07-162-4/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r63955 | ronald.oussoren | 2008-06-05 14:58:24 +0200 (Thu, 05 Jun 2008) | 20 lines MacOS X: Enable 4-way universal builds This patch adds a new configure argument on OSX: --with-universal-archs=[32-bit|64-bit|all] When used with the --enable-universalsdk option this controls which CPU architectures are includes in the framework. The default is 32-bit, meaning i386 and ppc. The most useful alternative is 'all', which includes all 4 CPU architectures supported by MacOS X (i386, ppc, x86_64 and ppc64). This includes limited support for the Carbon bindings in 64-bit mode as well, limited because (a) I haven't done extensive testing and (b) a large portion of the Carbon API's aren't available in 64-bit mode anyway. I've also duplicated a feature of Apple's build of python: setting the environment variable 'ARCHFLAGS' controls the '-arch' flags used for building extensions using distutils. ........
* make the symlink to Python be created on install for IDLE.appBenjamin Peterson2008-07-052-1/+1
|
* Hopefully fix make framework install on Mac (see 3174)Benjamin Peterson2008-07-0171-5699/+332
| | | | | | | Removal of the Mac modules broke many of the Mac scripts (including BuildApplet.py) so the building of the Python launcher and IDLE.app was broken. I manually copied built versions of those apps into Mac. Everything else which used Mac modules had to die.
* remove usage of cachesrc.py in Mac/MakefileBenjamin Peterson2008-06-281-2/+0
|
* Fix old urllib/urllib2/urlparse usage.Georg Brandl2008-06-231-2/+3
|
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-042-6/+6
|
* Revert r63934 -- it was mixing two patches.Georg Brandl2008-06-042-6/+6
|
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-042-6/+6
|
* remove old mac scripts including bgenBenjamin Peterson2008-06-017-2182/+0
|
* Remove the Mac modulesBenjamin Peterson2008-05-12115-95282/+0
|
* Removed remnants of os.path.walk().Alexandre Vassalotti2008-05-093-3/+3
|