This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: OS X installer build broken by changes to documentation build
Type: Stage: resolved
Components: Build, macOS Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ned.deily Nosy List: georg.brandl, ned.deily, python-dev
Priority: Keywords:

Created on 2014-02-16 22:43 by ned.deily, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg211365 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-02-16 22:43
eef7899ea7ab introduces changes to the documentation build process which inadvertently breaks OS X installer builds.  See, for example:

http://buildbot.python.org/all/builders/bolen-dmg-3.x/builds/513

Mac/BuildInstaller/build-installer.py should be modified to accommodate the changes and, if necessary, the dmg buildbot updated.

BTW, the above change should not be cherry-picked into 3.4 until this issue is addressed.
msg215787 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-04-09 00:48
New changeset 01f1e14cad23 by Ned Deily in branch '3.4':
Issue #20644: OS X installer build support for documentation build changes
http://hg.python.org/cpython/rev/01f1e14cad23

New changeset 7d004ad09bf5 by Ned Deily in branch 'default':
Issue #20644: merge from 3.4
http://hg.python.org/cpython/rev/7d004ad09bf5
msg215789 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-04-09 01:02
build-installer.py now assumes that sphinx-build and the previously required hg have been installed somewhere on the restricted PATH that the installer uses.  Behind the scenes, the installer build process has been substantially revised to make use of a bootstrapped Python 2.7 instance on OS X 10.5 and 10.6 for the use of hg and sphinx-build, since the current version of sphinx-build requires at least Python 2.6 thus the 10.5 system Python 2.5 no longer suffices.
msg215854 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-04-09 23:23
New changeset 88572ccb8ebe by Ned Deily in branch '2.7':
Issue #20644: Keep build-installer.py in sync across active versions.
http://hg.python.org/cpython/rev/88572ccb8ebe

New changeset e0722b5b9412 by Ned Deily in branch '3.4':
Issue #20644: Keep build-installer.py in sync across active versions.
http://hg.python.org/cpython/rev/e0722b5b9412

New changeset 63bd9474be49 by Ned Deily in branch 'default':
Issue #20644: merge with 3.4
http://hg.python.org/cpython/rev/63bd9474be49
History
Date User Action Args
2022-04-11 14:57:58adminsetgithub: 64843
2014-04-09 23:23:56python-devsetmessages: + msg215854
2014-04-09 01:02:09ned.deilysetstatus: open -> closed
priority: deferred blocker ->
versions: + Python 3.4
messages: + msg215789

resolution: fixed
stage: needs patch -> resolved
2014-04-09 00:48:15python-devsetnosy: + python-dev
messages: + msg215787
2014-02-16 22:43:21ned.deilycreate