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: Tools/msi enhancements for 2.7
Type: enhancement Stage: resolved
Components: Installation, Windows Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: steve.dower Nosy List: pitrou, python-dev, steve.dower, tim.golden, zach.ware
Priority: normal Keywords: patch

Created on 2014-09-12 18:46 by steve.dower, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
Tool_msi_27.patch steve.dower, 2014-09-12 18:46
Messages (4)
msg226839 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2014-09-12 18:46
This patch has some minor changes to the build scripts for Python 2.7 on Windows. They're fully tested on my build machine, but I wanted someone who's more familiar with how the buildbots are set up to either confirm that the Tools/msi scripts are not used or that the changes won't have an impact.

The Tools/msi/msi.py changes to use environment variables are mostly to make my life easier. Apparently the old way was to actually modify the file before making an official release...

The Tools/msi/msilib.py fix is necessary because of some new files that were added for 2.7.9. Technically it's a release blocker, though it won't actually hold anything up since I spotted it.
msg226842 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2014-09-12 20:10
Actually, I think the method Martin used was to create a local config.py in Tools/msi/, which provided the proper settings for the release.  See http://hg.python.org/cpython/file/2.7/Tools/msi/msi.py#l37

Either way, the buildbots are completely unaffected by Tools/msi, and I don't think anything actually uses PCbuild/build_tkinter.py (unless you do :)), so since the script is now yours, I'd say you're clear to change as you like.
msg226843 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2014-09-12 20:18
Thanks for confirming. Somehow I never noticed the import config line - guess that's a pattern I'm not really used to seeing. Still, I prefer having the env variables there as I invoke the scripts through some batch files (very specific to my machine, unfortunately, but the 3.5 ones will be more generic).

And since you mention it, apparently I'm not using build_tkinter.py any more either. I was at one point, hence the fix. I'll leave it in there - we can probably remove the file completely but no harm in leaving it.
msg226844 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-09-12 20:19
New changeset 5c55a7bfec0c by Steve Dower in branch '2.7':
#22398 Tools/msi enhancements for 2.7
http://hg.python.org/cpython/rev/5c55a7bfec0c
History
Date User Action Args
2022-04-11 14:58:08adminsetgithub: 66592
2014-09-13 16:17:03berker.peksagsetstage: patch review -> resolved
2014-09-12 20:19:18steve.dowersetstatus: open -> closed
resolution: fixed
2014-09-12 20:19:00python-devsetnosy: + python-dev
messages: + msg226844
2014-09-12 20:18:17steve.dowersetmessages: + msg226843
2014-09-12 20:10:34zach.waresetmessages: + msg226842
2014-09-12 18:46:13steve.dowercreate