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: Update Tools/freeze to use .vcxproj files
Type: behavior Stage: needs patch
Components: Demos and Tools, Windows Versions: Python 3.6, Python 3.4, Python 3.5
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Decorater, kb1000, paul.moore, steve.dower, tim.golden, zach.ware
Priority: normal Keywords:

Created on 2016-08-10 14:37 by kb1000, last changed 2022-04-11 14:58 by admin.

Messages (6)
msg272334 - (view) Author: kb1000 (kb1000) * Date: 2016-08-10 14:37
The Tools/freeze script is broken because the .dsp files no longer exists.
msg272335 - (view) Author: Evelyn Mitchell (Evelyn Mitchell) * (Python triager) Date: 2016-08-10 14:53
Kaeptm, thanks for submitting this. Is this a Windows issue?
msg272866 - (view) Author: kb1000 (kb1000) * Date: 2016-08-16 17:19
Yes, it is an Windows issue.
msg272868 - (view) Author: Decorater (Decorater) * Date: 2016-08-16 17:28
I see 2 files that references dsp files and those are Tools/freeze/extensions_win32.ini and Tools/freeze/checkextensions_win32.py.
msg272869 - (view) Author: Decorater (Decorater) * Date: 2016-08-16 17:30
Not to mention some parts in the ini references zlib in PCBuild which is no longer in that folder.
msg273029 - (view) Author: kb1000 (kb1000) * Date: 2016-08-18 14:26
That's right, in checkextensions_win32.py a .vcxproj parsing algorithm must be added, and in extensions_win32.ini the values must be updated, for example the builtin extensions from .dsp to .vcxproj
History
Date User Action Args
2022-04-11 14:58:34adminsetgithub: 71914
2017-04-19 15:09:51kb1000setresolution: duplicate ->
2017-04-15 11:36:59kb1000setresolution: duplicate
2017-02-07 12:23:49kb1000settype: behavior
2017-02-07 12:23:43kb1000settype: behavior -> (no value)
2017-01-26 16:28:50kb1000settype: behavior
2017-01-26 16:28:41kb1000settype: behavior -> (no value)
2016-08-18 14:26:27kb1000setmessages: + msg273029
versions: + Python 3.4, Python 3.5
2016-08-16 17:33:31Evelyn Mitchellsetnosy: - Evelyn Mitchell
2016-08-16 17:30:30Decoratersetmessages: + msg272869
2016-08-16 17:28:20Decoratersetnosy: + Decorater
messages: + msg272868
2016-08-16 17:19:14kb1000setmessages: + msg272866
2016-08-10 15:04:06SilentGhostsetversions: + Python 3.6
nosy: + zach.ware, paul.moore, tim.golden, steve.dower

components: + Windows
type: compile error -> behavior
stage: needs patch
2016-08-10 14:53:58Evelyn Mitchellsetnosy: + Evelyn Mitchell
messages: + msg272335
2016-08-10 14:37:47kb1000create