summaryrefslogtreecommitdiffstats
path: root/Mac/BuildScript
Commit message (Collapse)AuthorAgeFilesLines
* Update macOS installer build for 2.7.18 end-of-life. (GH-19352)Ned Deily2020-04-043-26/+22
|
* Update copyright year in macOS installer license copy (GH-17806)Miss Islington (bot)2020-01-031-3/+3
| | | | | (cherry picked from commit 32f1443aa98db769d87db497b45bd0dcb732445b) Co-authored-by: Ned Deily <nad@python.org>
* Update URL in macOS installer copy of license (GH-16905)Miss Skeleton (bot)2019-10-231-1/+1
| | | | | (cherry picked from commit 01659ca62c4508518478a74615ac91c0009427ad) Co-authored-by: Ned Deily <nad@python.org>
* Update build docs for macOS (GH-16844)Ned Deily2019-10-191-0/+0
|
* [2.7] Update macOS installer display files for 2.7.17 (GH-16768)Ned Deily2019-10-144-163/+83
|
* Update macOS installer displays for 2.7.17rc1 (#16634)v2.7.17rc1Ned Deily2019-10-082-3/+16
|
* bpo-38117: Updated OpenSSL to 1.0.2t in macOS installer for 2.7.x. (GH-16171)Ned Deily2019-09-161-3/+3
|
* bpo-34631: Updated OpenSSL to 1.0.2s in macOS installer. (GH-14198)Ned Deily2019-06-181-3/+3
|
* [2.7] bpo-35360: Update macOS installer to use SQLite 3.28.0 (GH-14183)animalize2019-06-182-4/+4
|
* Fix variable name copy/paste error in build-installer.py (GH-13038)Miss Islington (bot)2019-06-031-1/+1
| | | | | (cherry picked from commit d337169156933eaf732566bf29eb968549ada5e8) Co-authored-by: cclauss <cclauss@me.com>
* macOS installer build: mitigate hdiutil resource busy bugNed Deily2018-12-271-6/+17
|
* Revert "bpo-35402: Update macOS installer to use Tcl 8.6.9 / Tk 8.6.9.1 ↵Ned Deily2018-12-272-9/+27
| | | | | | | | | (GH-11101)" This reverts commit aa580508431d231677cfaa13ac9b6aa37538b9ef. Due to regressions found with using Tk 8.6.9.1, build the python.org macOS installers with Tcl/Tk 8.6.8 as used in previous releases.
* [2.7] bpo-15663: the 10.6+ macOS installers for 3.6/2.7 now provide a ↵Ned Deily2018-12-113-99/+105
| | | | private Tcl/Tk 8.6 (GH-11110)
* bpo-35402: Update macOS installer to use Tcl 8.6.9 / Tk 8.6.9.1 (GH-11101)Miss Islington (bot)2018-12-112-27/+9
| | | | | (cherry picked from commit 7cf3d8e25174c8871883e42f3240fd7f01efd3a8) Co-authored-by: Ned Deily <nad@python.org>
* [3.6] bpo-35401: Update macOS installer to OpenSSL 1.0.2q (GH-11095)Miss Islington (bot)2018-12-111-3/+3
| | | | | | https://bugs.python.org/issue35401 (cherry picked from commit 419b5ffc2ca46d7adf0be6216ca3a6e40028e50f) Co-authored-by: Ned Deily <nad@python.org>
* [2.7] bpo-34405: Update to OpenSSL 1.0.2p for macOS installer builds ↵Miss Islington (bot)2018-09-111-3/+10
| | | | | | | | | | | | | (GH-9191) (GH-9196) (cherry picked from commit 31912b43c903aafad09350899ed6a9dec7c43421) Co-authored-by: Ned Deily <nad@python.org> <!-- issue-number: [bpo-34405](https://www.bugs.python.org/issue34405) --> https://bugs.python.org/issue34405 <!-- /issue-number -->
* Mitigate macOS race condition in installer build (GH-6686) (#6689)Miss Islington (bot)2018-05-021-0/+4
| | | | | (cherry picked from commit fc6aa28bfd0502d994cec30bd3679b7def3be2af) Co-authored-by: Ned Deily <nad@python.org>
* [2.7] bpo-33184: Update macOS installer build to use OpenSSL 1.0.2o. ↵Miss Islington (bot)2018-04-141-3/+3
| | | | | | | (GH-6408) (GH-6471) (cherry picked from commit 76215a4481191b648de522a4e2120f60822f6b9c) Co-authored-by: Ned Deily <nad@python.org>
* [2.7] Backport macOS universal build and installer fixes from 3.6. (GH-6469)Ned Deily2018-04-1410-417/+376
| | | | | | | | | | | | | | | | | | | | | | | | | | These include: - bpo-32726: Provide an additional, more modern macOS installer variant that supports macOS 10.9+ systems in 64-bit mode only. Upgrade the supplied third-party libraries to OpenSSL 1.0.2n and SQLite 3.22.0. The 10.9+ installer now supplies its own private copy of Tcl/Tk 8.6.8. - bpo-24414: Default macOS deployment target is now set by ``configure`` to the build system's OS version (as is done by Python 3), not ``10.4``; override with, for example, ``./configure MACOSX_DEPLOYMENT_TARGET=10.4``. - bpo-19019: All 2.7 macOS installer variants now supply their own version of ``OpenSSL 1.0.2``; the Apple-supplied SSL libraries and root certificates are not longer used. The ``Installer Certificate`` command in ``/Applications/Python 2.7`` may be used to download and install a default set of root certificates from the third-party ``certifi`` package. - bpo-11485: python.org macOS Pythons no longer supply a default SDK value (e.g. ``-isysroot /``) or specific compiler version default (e.g. ``gcc-4.2``) when building extension modules. Use ``CC``, ``SDKROOT``, and ``DEVELOPER_DIR`` environment variables to override compilers or to use an SDK. See Apple's ``xcrun`` man page for more info. - prepare for pending Apple removal of 32-bit support in future macOS release
* Backport Mac installer fixes for git-based workflow (#2837)Ned Deily2017-07-241-10/+25
|
* bpo-29572: Update macOS installer build to OpenSSL 1.0.2k (#457) (#2836)Ned Deily2017-07-242-4/+4
| | | (cherry picked from commit cfcd76777e35c83d548d8736f5d7dc92fe56d806)
* bpo-23404: make touch becomes make regen-all (#1466)Victor Stinner2017-05-051-3/+0
| | | | | | | | | | | | | | | | | | | | Don't rebuild generated files based on file modification time anymore, the action is now explicit. Replace "make touch" with "make regen-all". Changes: * Remove "make touch", Tools/hg/hgtouch.py and .hgtouch * Add a new "make regen-all" command to rebuild all generated files * Add subcommands to only generate specific files: - regen-ast: Include/Python-ast.h and Python/Python-ast.c - regen-grammar: Include/graminit.h and Python/graminit.c - regen-opcode-targets: Python/opcode_targets.h * Add PYTHON_FOR_REGEN variable * pgen is now only built by by "make regen-grammar" * Add $(srcdir)/ prefix to paths to source files to handle correctly compilation outside the source directory
* ring in 2017 for PythonBenjamin Peterson2017-01-021-2/+2
|
* Issue #28440: No longer add /Library/Python/site-packages, the Apple-suppliedNed Deily2016-12-031-14/+33
| | | | | | | | | | system Python site-packages directory, to sys.path for macOS framework builds. The coupling between the two Python instances often caused confusion and, as of macOS 10.12, changes to the site-packages layout can cause pip component installations to fail. This change reverts the effects introduced in 2.7.0 by Issue #4865. If you are using a package with both the Apple system Python 2.7 and a user-installed Python 2.7, you will need to ensure that copies of the package are installed with both Python instances.
* Issue #28248: Update macOS installer build to use OpenSSL 1.0.2j.Ned Deily2016-10-312-10/+8
| | | | Original patch by Mariatta Wijaya.
* Issue #26930: Update OS X 32-bit-only installer builds to use OpenSSL 1.0.2h.Ned Deily2016-06-051-3/+3
|
* Fix typos in comments, documentation and test method namesMartin Panter2016-05-081-2/+2
|
* Issue #26465: Update OS X installer build to use OpenSSL 1.0.2g.Ned Deily2016-03-081-3/+3
|
* Change OS X installer builds targeted for 10.10 and above to buildNed Deily2016-02-241-2/+7
| | | | | | | | | and link with a private copy of OpenSSL, like installers targeted for 10.5 already do, since Apple has deprecated use of the system OpenSSL and removed its header files from the Xcode 7 SDK. Note that this configuration is not currently used to build any python.org-supplied installers and that the private copy of OpenSSL requires its own root certificates.
* Issue #26268: Update OS X 10.5+ installer build to use OpenSSL 1.0.2f.Ned Deily2016-02-152-21/+7
|
* Update copyrights for 2016.Ned Deily2016-01-011-1/+1
|
* Issue #25798: Update OS X 10.5+ 32-bit-only installer to buildNed Deily2015-12-062-11/+13
| | | | and link with OpenSSL 1.0.2e.
* Issue #24603: Update the OS X 32-bit installer build to use OpenSSL 1.0.2d.Ned Deily2015-07-242-4/+4
|
* Issue #24432: Update OS X 10.5+ installer builds to use OpenSSL 1.0.2c.Ned Deily2015-07-042-4/+4
|
* Minor updates to the OS X installer ReadMe.rtf.Ned Deily2015-05-081-3/+3
|
* Issue #23686: Update OS X 10.5 installer build to use OpenSSL 1.0.2a.Ned Deily2015-03-192-11/+11
|
* Issue #23594: Update OS X 10.5 installer build to use OpenSSL 1.0.2.Ned Deily2015-03-062-14/+18
|
* Issue #23212: Update OS X installer build OpenSSL to 1.0.1l.Ned Deily2015-02-061-3/+3
| | | | (currently only used for builds with <= 10.5 deployment targets)
* Issue #23212: 2.7-specific OS X installer updatesNed Deily2015-01-092-2/+2
|
* Issue #23212: Update OS X installer build OpenSSL to 1.0.1k.Ned Deily2015-01-092-10/+12
| | | | (currently only used for builds with <= 10.5 deployment targets)
* Update copyright dates in OS X installer.Ned Deily2015-01-011-9/+5
|
* Use rtf format files for legacy OS X installer builds.Ned Deily2014-12-135-74/+10
| | | | (Backport from 3.4 changes for Issue #17128.)
* Issue #23032: Fix installer build failures on OS X 10.4 TigerNed Deily2014-12-111-0/+7
| | | | by disabling assembly code in the OpenSSL build.
* Fix typo in OS X installer readmes.Ned Deily2014-12-102-2/+2
|
* Update the deprecated plain text version of the OS X installerNed Deily2014-12-102-45/+36
| | | | | readme to match the rtf one and update the installer build instructions README.
* Issue #17128: Use private version of OpenSSL for 2.7.9 OS X 10.5+ installer.Ned Deily2014-12-105-36/+498
| | | | | | | | | | Among other issues, the Apple-supplied 0.9.7 libs for the 10.5 ABI cannot verify newer SHA-256 certs as now used by python.org services. Document in the installer ReadMe some of the certificate management issues that users now need to be more concerned with due to PEP 476's enabling cert verification by default. For now, continue to use the Apple-supplied 0.9.8 libs for the 10.6+ installer since they use Apple private APIs to verify certificates using the system- and user-managed CA keychain stores.
* Remove line breaks in OS X installer README screen.Ned Deily2014-11-221-15/+3
|
* Add downloads page link to OS X installer README screens.Ned Deily2014-11-222-3/+6
|
* Update OS X installer documentation files for 2.7.9.Ned Deily2014-11-153-89/+155
|
* Issue #22877: PEP 477 - OS X installer for 2.7.9 now installs pip.Ned Deily2014-11-152-23/+88
|