mirror of https://github.com/python/cpython
Merged revisions 73390 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73390 | martin.v.loewis | 2009-06-12 19:28:31 +0200 (Fr, 12 Jun 2009) | 3 lines Support AMD64 in msilib. Set Win64 on reglocator. Fixes #6258. ........
This commit is contained in:
parent
dd0b90a367
commit
1cfa3926f9
|
@ -282,9 +282,14 @@ class bdist_msi (Command):
|
||||||
PYTHON.USER if defined, else from PYTHON.MACHINE.
|
PYTHON.USER if defined, else from PYTHON.MACHINE.
|
||||||
PYTHON is PYTHONDIR\python.exe"""
|
PYTHON is PYTHONDIR\python.exe"""
|
||||||
install_path = r"SOFTWARE\Python\PythonCore\%s\InstallPath" % self.target_version
|
install_path = r"SOFTWARE\Python\PythonCore\%s\InstallPath" % self.target_version
|
||||||
|
if msilib.Win64:
|
||||||
|
# type: msidbLocatorTypeRawValue + msidbLocatorType64bit
|
||||||
|
Type = 2+16
|
||||||
|
else:
|
||||||
|
Type = 2
|
||||||
add_data(self.db, "RegLocator",
|
add_data(self.db, "RegLocator",
|
||||||
[("python.machine", 2, install_path, None, 2),
|
[("python.machine", 2, install_path, None, Type),
|
||||||
("python.user", 1, install_path, None, 2)])
|
("python.user", 1, install_path, None, Type)])
|
||||||
add_data(self.db, "AppSearch",
|
add_data(self.db, "AppSearch",
|
||||||
[("PYTHON.MACHINE", "python.machine"),
|
[("PYTHON.MACHINE", "python.machine"),
|
||||||
("PYTHON.USER", "python.user")])
|
("PYTHON.USER", "python.user")])
|
||||||
|
|
|
@ -2,9 +2,11 @@
|
||||||
# Copyright (C) 2005 Martin v. Löwis
|
# Copyright (C) 2005 Martin v. Löwis
|
||||||
# Licensed to PSF under a Contributor Agreement.
|
# Licensed to PSF under a Contributor Agreement.
|
||||||
from _msi import *
|
from _msi import *
|
||||||
import os, string, re
|
import os, string, re, sys
|
||||||
|
|
||||||
Win64=0
|
AMD64 = "AMD64" in sys.version
|
||||||
|
Itanium = "Itanium" in sys.version
|
||||||
|
Win64 = AMD64 or Itanium
|
||||||
|
|
||||||
# Partially taken from Wine
|
# Partially taken from Wine
|
||||||
datasizemask= 0x00ff
|
datasizemask= 0x00ff
|
||||||
|
@ -145,8 +147,10 @@ def init_database(name, schema,
|
||||||
si.SetProperty(PID_TITLE, "Installation Database")
|
si.SetProperty(PID_TITLE, "Installation Database")
|
||||||
si.SetProperty(PID_SUBJECT, ProductName)
|
si.SetProperty(PID_SUBJECT, ProductName)
|
||||||
si.SetProperty(PID_AUTHOR, Manufacturer)
|
si.SetProperty(PID_AUTHOR, Manufacturer)
|
||||||
if Win64:
|
if Itanium:
|
||||||
si.SetProperty(PID_TEMPLATE, "Intel64;1033")
|
si.SetProperty(PID_TEMPLATE, "Intel64;1033")
|
||||||
|
elif AMD64:
|
||||||
|
si.SetProperty(PID_TEMPLATE, "x64;1033")
|
||||||
else:
|
else:
|
||||||
si.SetProperty(PID_TEMPLATE, "Intel;1033")
|
si.SetProperty(PID_TEMPLATE, "Intel;1033")
|
||||||
si.SetProperty(PID_REVNUMBER, gen_uuid())
|
si.SetProperty(PID_REVNUMBER, gen_uuid())
|
||||||
|
|
|
@ -56,6 +56,8 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #6258: Support AMD64 in bdist_msi.
|
||||||
|
|
||||||
- Issue #5262: Fixed bug in next rollover time computation in
|
- Issue #5262: Fixed bug in next rollover time computation in
|
||||||
TimedRotatingFileHandler.
|
TimedRotatingFileHandler.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue