blob: 839eb9d3756c016c57d5a9e969de0bebbdd4bf11 [file] [log] [blame]
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001# Python MSI Generator
2# (C) 2003 Martin v. Loewis
3# See "FOO" in comments refers to MSDN sections with the title FOO.
Martin v. Löwis9fda9312004-12-22 13:41:49 +00004import msilib, schema, sequence, os, glob, time, re
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00005from msilib import Feature, CAB, Directory, Dialog, Binary, add_data
6import uisample
7from win32com.client import constants
Martin v. Löwis9fda9312004-12-22 13:41:49 +00008from distutils.spawn import find_executable
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00009
10# Settings can be overridden in config.py below
11# 1 for Itanium build
12msilib.Win64 = 0
13# 0 for official python.org releases
14# 1 for intermediate releases by anybody, with
15# a new product code for every package.
16snapshot = 1
17# 1 means that file extension is px, not py,
18# and binaries start with x
19testpackage = 0
20# Location of build tree
21srcdir = os.path.abspath("../..")
22# Text to be displayed as the version in dialogs etc.
23# goes into file name and ProductCode. Defaults to
24# current_version.day for Snapshot, current_version otherwise
25full_current_version = None
Martin v. Löwise0f780d2004-09-01 14:51:06 +000026# Is Tcl available at all?
27have_tcl = True
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +000028
29try:
30 from config import *
31except ImportError:
32 pass
33
34# Extract current version from Include/patchlevel.h
35lines = open(srcdir + "/Include/patchlevel.h").readlines()
36major = minor = micro = level = serial = None
37levels = {
38 'PY_RELEASE_LEVEL_ALPHA':0xA,
39 'PY_RELEASE_LEVEL_BETA': 0xB,
40 'PY_RELEASE_LEVEL_GAMMA':0xC,
41 'PY_RELEASE_LEVEL_FINAL':0xF
42 }
43for l in lines:
44 if not l.startswith("#define"):
45 continue
46 l = l.split()
47 if len(l) != 3:
48 continue
49 _, name, value = l
50 if name == 'PY_MAJOR_VERSION': major = value
51 if name == 'PY_MINOR_VERSION': minor = value
52 if name == 'PY_MICRO_VERSION': micro = value
53 if name == 'PY_RELEASE_LEVEL': level = levels[value]
54 if name == 'PY_RELEASE_SERIAL': serial = value
55
56short_version = major+"."+minor
57# See PC/make_versioninfo.c
58FIELD3 = 1000*int(micro) + 10*level + int(serial)
59current_version = "%s.%d" % (short_version, FIELD3)
60
61# This should never change. The UpgradeCode of this package can be
62# used in the Upgrade table of future packages to make the future
63# package replace this one. See "UpgradeCode Property".
64upgrade_code_snapshot='{92A24481-3ECB-40FC-8836-04B7966EC0D5}'
65upgrade_code='{65E6DE48-A358-434D-AA4F-4AF72DB4718F}'
66
67# This should be extended for each Python release.
68# The product code must change whenever the name of the MSI file
69# changes, and when new component codes are issued for existing
70# components. See "Changing the Product Code". As we change the
71# component codes with every build, we need a new product code
72# each time. For intermediate (snapshot) releases, they are automatically
73# generated. For official releases, we record the product codes,
74# so people can refer to them.
75product_codes = {
76 '2.4.101': '{0e9b4d8e-6cda-446e-a208-7b92f3ddffa0}', # 2.4a1, released as a snapshot
77 '2.4.102': '{1b998745-4901-4edb-bc52-213689e1b922}', # 2.4a2
78 '2.4.103': '{33fc8bd2-1e8f-4add-a40a-ade2728d5942}', # 2.4a3
79 '2.4.111': '{51a7e2a8-2025-4ef0-86ff-e6aab742d1fa}', # 2.4b1
80 '2.4.112': '{4a5e7c1d-c659-4fe3-b8c9-7c65bd9c95a5}', # 2.4b2
81 '2.4.121': '{75508821-a8e9-40a8-95bd-dbe6033ddbea}', # 2.4c1
82 '2.4.122': '{83a9118b-4bdd-473b-afc3-bcb142feca9e}', # 2.4c2
83 '2.4.150': '{82d9302e-f209-4805-b548-52087047483a}', # 2.4.0
Martin v. Löwis3390d332005-03-14 17:20:13 +000084 '2.4.1121':'{be027411-8e6b-4440-a29b-b07df0690230}', # 2.4.1c1
85 '2.4.1122':'{02818752-48bf-4074-a281-7a4114c4f1b1}', # 2.4.1c2
86 '2.4.1150':'{4d4f5346-7e4a-40b5-9387-fdb6181357fc}', # 2.4.1
87 '2.4.2121':'{5ef9d6b6-df78-45d2-ab09-14786a3c5a99}', # 2.4.2c1
88 '2.4.2150':'{b191e49c-ea23-43b2-b28a-14e0784069b8}', # 2.4.2
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +000089}
90
91if snapshot:
92 current_version = "%s.%s.%s" % (major, minor, int(time.time()/3600/24))
93 product_code = msilib.gen_uuid()
94else:
95 product_code = product_codes[current_version]
96
97if full_current_version is None:
98 full_current_version = current_version
99
100extensions = [
101 'bz2.pyd',
102 'pyexpat.pyd',
103 'select.pyd',
104 'unicodedata.pyd',
105 'winsound.pyd',
Trent Micke97e5a72005-12-15 22:08:46 +0000106 '_elementtree.pyd',
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000107 '_bsddb.pyd',
108 '_socket.pyd',
109 '_ssl.pyd',
110 '_testcapi.pyd',
111 '_tkinter.pyd',
112]
113
Martin v. Löwis4e6aff52006-01-03 07:10:14 +0000114if major+minor <= "24":
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000115 extensions.extend([
Martin v. Löwis4e6aff52006-01-03 07:10:14 +0000116 'zlib.pyd',
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000117 ])
118
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000119# Well-known component UUIDs
120# These are needed for SharedDLLs reference counter; if
121# a different UUID was used for each incarnation of, say,
122# python24.dll, an upgrade would set the reference counter
123# from 1 to 2 (due to what I consider a bug in MSI)
124# Using the same UUID is fine since these files are versioned,
125# so Installer will always keep the newest version.
126msvcr71_uuid = "{8666C8DD-D0B4-4B42-928E-A69E32FA5D4D}"
127pythondll_uuid = {
128 "24":"{9B81E618-2301-4035-AC77-75D9ABEB7301}",
129 "25":"{2e41b118-38bd-4c1b-a840-6977efd1b911}"
130 } [major+minor]
Tim Peterseba28be2005-03-28 01:08:02 +0000131
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000132
Martin v. Löwis9fda9312004-12-22 13:41:49 +0000133# Build the mingw import library, libpythonXY.a
134# This requires 'nm' and 'dlltool' executables on your PATH
135def build_mingw_lib(lib_file, def_file, dll_file, mingw_lib):
136 warning = "WARNING: %s - libpythonXX.a not built"
137 nm = find_executable('nm')
138 dlltool = find_executable('dlltool')
139
140 if not nm or not dlltool:
141 print warning % "nm and/or dlltool were not found"
142 return False
143
144 nm_command = '%s -Cs %s' % (nm, lib_file)
145 dlltool_command = "%s --dllname %s --def %s --output-lib %s" % \
146 (dlltool, dll_file, def_file, mingw_lib)
147 export_match = re.compile(r"^_imp__(.*) in python\d+\.dll").match
148
149 f = open(def_file,'w')
150 print >>f, "LIBRARY %s" % dll_file
151 print >>f, "EXPORTS"
152
153 nm_pipe = os.popen(nm_command)
154 for line in nm_pipe.readlines():
155 m = export_match(line)
156 if m:
157 print >>f, m.group(1)
158 f.close()
159 exit = nm_pipe.close()
160
161 if exit:
162 print warning % "nm did not run successfully"
163 return False
164
165 if os.system(dlltool_command) != 0:
166 print warning % "dlltool did not run successfully"
167 return False
168
169 return True
170
171# Target files (.def and .a) go in PCBuild directory
172lib_file = os.path.join(srcdir, "PCBuild", "python%s%s.lib" % (major, minor))
173def_file = os.path.join(srcdir, "PCBuild", "python%s%s.def" % (major, minor))
174dll_file = "python%s%s.dll" % (major, minor)
175mingw_lib = os.path.join(srcdir, "PCBuild", "libpython%s%s.a" % (major, minor))
176
177have_mingw = build_mingw_lib(lib_file, def_file, dll_file, mingw_lib)
178
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000179if testpackage:
180 ext = 'px'
181 testprefix = 'x'
182else:
183 ext = 'py'
184 testprefix = ''
185
186if msilib.Win64:
187 SystemFolderName = "[SystemFolder64]"
188else:
189 SystemFolderName = "[SystemFolder]"
190
191msilib.reset()
192
193# condition in which to install pythonxy.dll in system32:
194# a) it is Windows 9x or
195# b) it is NT, the user is privileged, and has chosen per-machine installation
196sys32cond = "(Windows9x or (Privileged and ALLUSERS))"
197
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000198def build_database():
199 """Generate an empty database, with just the schema and the
200 Summary information stream."""
201 if snapshot:
202 uc = upgrade_code_snapshot
203 else:
204 uc = upgrade_code
205 # schema represents the installer 2.0 database schema.
206 # sequence is the set of standard sequences
207 # (ui/execute, admin/advt/install)
208 if msilib.Win64:
209 w64 = ".ia64"
210 else:
211 w64 = ""
Tim Peters66cb0182004-08-26 05:23:19 +0000212 db = msilib.init_database("python-%s%s.msi" % (full_current_version, w64),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000213 schema, ProductName="Python "+full_current_version,
214 ProductCode=product_code,
215 ProductVersion=current_version,
216 Manufacturer=u"Martin v. L\xf6wis")
217 # The default sequencing of the RemoveExistingProducts action causes
218 # removal of files that got just installed. Place it after
219 # InstallInitialize, so we first uninstall everything, but still roll
220 # back in case the installation is interrupted
221 msilib.change_sequence(sequence.InstallExecuteSequence,
222 "RemoveExistingProducts", 1510)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000223 msilib.add_tables(db, sequence)
224 # We cannot set ALLUSERS in the property table, as this cannot be
225 # reset if the user choses a per-user installation. Instead, we
226 # maintain WhichUsers, which can be "ALL" or "JUSTME". The UI manages
227 # this property, and when the execution starts, ALLUSERS is set
228 # accordingly.
229 add_data(db, "Property", [("UpgradeCode", uc),
230 ("WhichUsers", "ALL"),
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000231 ("ProductLine", "Python%s%s" % (major, minor)),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000232 ])
233 db.Commit()
234 return db
235
236def remove_old_versions(db):
237 "Fill the upgrade table."
238 start = "%s.%s.0" % (major, minor)
239 # This requests that feature selection states of an older
240 # installation should be forwarded into this one. Upgrading
241 # requires that both the old and the new installation are
242 # either both per-machine or per-user.
243 migrate_features = 1
244 # See "Upgrade Table". We remove releases with the same major and
245 # minor version. For an snapshot, we remove all earlier snapshots. For
246 # a release, we remove all snapshots, and all earlier releases.
247 if snapshot:
248 add_data(db, "Upgrade",
Tim Peters66cb0182004-08-26 05:23:19 +0000249 [(upgrade_code_snapshot, start,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000250 current_version,
251 None, # Ignore language
Tim Peters66cb0182004-08-26 05:23:19 +0000252 migrate_features,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000253 None, # Migrate ALL features
254 "REMOVEOLDSNAPSHOT")])
255 props = "REMOVEOLDSNAPSHOT"
256 else:
257 add_data(db, "Upgrade",
258 [(upgrade_code, start, current_version,
259 None, migrate_features, None, "REMOVEOLDVERSION"),
260 (upgrade_code_snapshot, start, "%s.%d.0" % (major, int(minor)+1),
261 None, migrate_features, None, "REMOVEOLDSNAPSHOT")])
262 props = "REMOVEOLDSNAPSHOT;REMOVEOLDVERSION"
263 # Installer collects the product codes of the earlier releases in
264 # these properties. In order to allow modification of the properties,
265 # they must be declared as secure. See "SecureCustomProperties Property"
266 add_data(db, "Property", [("SecureCustomProperties", props)])
267
268class PyDialog(Dialog):
269 """Dialog class with a fixed layout: controls at the top, then a ruler,
270 then a list of buttons: back, next, cancel. Optionally a bitmap at the
271 left."""
272 def __init__(self, *args, **kw):
273 """Dialog(database, name, x, y, w, h, attributes, title, first,
274 default, cancel, bitmap=true)"""
275 Dialog.__init__(self, *args)
276 ruler = self.h - 36
277 bmwidth = 152*ruler/328
278 if kw.get("bitmap", True):
279 self.bitmap("Bitmap", 0, 0, bmwidth, ruler, "PythonWin")
280 self.line("BottomLine", 0, ruler, self.w, 0)
281
282 def title(self, title):
283 "Set the title text of the dialog at the top."
284 # name, x, y, w, h, flags=Visible|Enabled|Transparent|NoPrefix,
285 # text, in VerdanaBold10
286 self.text("Title", 135, 10, 220, 60, 0x30003,
287 r"{\VerdanaBold10}%s" % title)
288
289 def back(self, title, next, name = "Back", active = 1):
290 """Add a back button with a given title, the tab-next button,
291 its name in the Control table, possibly initially disabled.
292
293 Return the button, so that events can be associated"""
294 if active:
295 flags = 3 # Visible|Enabled
296 else:
297 flags = 1 # Visible
298 return self.pushbutton(name, 180, self.h-27 , 56, 17, flags, title, next)
299
300 def cancel(self, title, next, name = "Cancel", active = 1):
301 """Add a cancel button with a given title, the tab-next button,
302 its name in the Control table, possibly initially disabled.
303
304 Return the button, so that events can be associated"""
305 if active:
306 flags = 3 # Visible|Enabled
307 else:
308 flags = 1 # Visible
309 return self.pushbutton(name, 304, self.h-27, 56, 17, flags, title, next)
310
311 def next(self, title, next, name = "Next", active = 1):
312 """Add a Next button with a given title, the tab-next button,
313 its name in the Control table, possibly initially disabled.
314
315 Return the button, so that events can be associated"""
316 if active:
317 flags = 3 # Visible|Enabled
318 else:
319 flags = 1 # Visible
320 return self.pushbutton(name, 236, self.h-27, 56, 17, flags, title, next)
321
322 def xbutton(self, name, title, next, xpos):
323 """Add a button with a given title, the tab-next button,
324 its name in the Control table, giving its x position; the
325 y-position is aligned with the other buttons.
326
327 Return the button, so that events can be associated"""
328 return self.pushbutton(name, int(self.w*xpos - 28), self.h-27, 56, 17, 3, title, next)
329
330def add_ui(db):
331 x = y = 50
332 w = 370
333 h = 300
334 title = "[ProductName] Setup"
335
336 # see "Dialog Style Bits"
337 modal = 3 # visible | modal
338 modeless = 1 # visible
339 track_disk_space = 32
340
341 add_data(db, 'ActionText', uisample.ActionText)
342 add_data(db, 'UIText', uisample.UIText)
343
344 # Bitmaps
345 if not os.path.exists(srcdir+r"\PC\python_icon.exe"):
346 raise "Run icons.mak in PC directory"
347 add_data(db, "Binary",
348 [("PythonWin", msilib.Binary(srcdir+r"\PCbuild\installer.bmp")), # 152x328 pixels
349 ("py.ico",msilib.Binary(srcdir+r"\PC\py.ico")),
350 ])
351 add_data(db, "Icon",
352 [("python_icon.exe", msilib.Binary(srcdir+r"\PC\python_icon.exe"))])
353
354 # Scripts
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000355 # CheckDir sets TargetExists if TARGETDIR exists.
356 # UpdateEditIDLE sets the REGISTRY.tcl component into
357 # the installed/uninstalled state according to both the
358 # Extensions and TclTk features.
Martin v. Löwiseb68be42004-12-12 15:29:21 +0000359 if os.system("nmake /nologo /c /f msisupport.mak") != 0:
360 raise "'nmake /f msisupport.mak' failed"
361 add_data(db, "Binary", [("Script", msilib.Binary("msisupport.dll"))])
362 # See "Custom Action Type 1"
Martin v. Löwis3390d332005-03-14 17:20:13 +0000363 if msilib.Win64:
364 CheckDir = "CheckDir"
365 UpdateEditIdle = "UpdateEditIDLE"
366 else:
367 CheckDir = "_CheckDir@4"
368 UpdateEditIDLE = "_UpdateEditIDLE@4"
Tim Peters0e9980f2004-09-12 03:49:31 +0000369 add_data(db, "CustomAction",
Martin v. Löwis3390d332005-03-14 17:20:13 +0000370 [("CheckDir", 1, "Script", CheckDir)])
Martin v. Löwiseac02e62004-11-18 08:00:33 +0000371 if have_tcl:
372 add_data(db, "CustomAction",
Martin v. Löwis3390d332005-03-14 17:20:13 +0000373 [("UpdateEditIDLE", 1, "Script", UpdateEditIDLE)])
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000374
375 # UI customization properties
376 add_data(db, "Property",
377 # See "DefaultUIFont Property"
378 [("DefaultUIFont", "DlgFont8"),
379 # See "ErrorDialog Style Bit"
380 ("ErrorDialog", "ErrorDlg"),
381 ("Progress1", "Install"), # modified in maintenance type dlg
382 ("Progress2", "installs"),
383 ("MaintenanceForm_Action", "Repair")])
384
385 # Fonts, see "TextStyle Table"
386 add_data(db, "TextStyle",
387 [("DlgFont8", "Tahoma", 9, None, 0),
388 ("DlgFontBold8", "Tahoma", 8, None, 1), #bold
389 ("VerdanaBold10", "Verdana", 10, None, 1),
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000390 ("VerdanaRed9", "Verdana", 9, 255, 0),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000391 ])
392
Martin v. Löwis7b2563b2004-11-02 22:59:56 +0000393 compileargs = r"-Wi [TARGETDIR]Lib\compileall.py -f -x badsyntax [TARGETDIR]Lib"
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000394 # See "CustomAction Table"
395 add_data(db, "CustomAction", [
396 # msidbCustomActionTypeFirstSequence + msidbCustomActionTypeTextData + msidbCustomActionTypeProperty
397 # See "Custom Action Type 51",
398 # "Custom Action Execution Scheduling Options"
399 ("InitialTargetDir", 307, "TARGETDIR",
400 "[WindowsVolume]Python%s%s" % (major, minor)),
401 ("SetDLLDirToTarget", 307, "DLLDIR", "[TARGETDIR]"),
402 ("SetDLLDirToSystem32", 307, "DLLDIR", SystemFolderName),
403 # msidbCustomActionTypeExe + msidbCustomActionTypeSourceFile
404 # See "Custom Action Type 18"
Martin v. Löwis7b2563b2004-11-02 22:59:56 +0000405 ("CompilePyc", 18, "python.exe", compileargs),
406 ("CompilePyo", 18, "python.exe", "-O "+compileargs),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000407 ])
408
409 # UI Sequences, see "InstallUISequence Table", "Using a Sequence Table"
410 # Numbers indicate sequence; see sequence.py for how these action integrate
411 add_data(db, "InstallUISequence",
412 [("PrepareDlg", "Not Privileged or Windows9x or Installed", 140),
413 ("WhichUsersDlg", "Privileged and not Windows9x and not Installed", 141),
414 ("InitialTargetDir", 'TARGETDIR=""', 750),
415 # In the user interface, assume all-users installation if privileged.
416 ("SetDLLDirToSystem32", 'DLLDIR="" and ' + sys32cond, 751),
417 ("SetDLLDirToTarget", 'DLLDIR="" and not ' + sys32cond, 752),
418 ("SelectDirectoryDlg", "Not Installed", 1230),
419 # XXX no support for resume installations yet
420 #("ResumeDlg", "Installed AND (RESUME OR Preselected)", 1240),
421 ("MaintenanceTypeDlg", "Installed AND NOT RESUME AND NOT Preselected", 1250),
422 ("ProgressDlg", None, 1280)])
423 add_data(db, "AdminUISequence",
424 [("InitialTargetDir", 'TARGETDIR=""', 750),
425 ("SetDLLDirToTarget", 'DLLDIR=""', 751),
426 ])
427
428 # Execute Sequences
429 add_data(db, "InstallExecuteSequence",
430 [("InitialTargetDir", 'TARGETDIR=""', 750),
431 ("SetDLLDirToSystem32", 'DLLDIR="" and ' + sys32cond, 751),
432 ("SetDLLDirToTarget", 'DLLDIR="" and not ' + sys32cond, 752),
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000433 ("UpdateEditIDLE", None, 1050),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000434 ("CompilePyc", "COMPILEALL", 6800),
435 ("CompilePyo", "COMPILEALL", 6801),
436 ])
437 add_data(db, "AdminExecuteSequence",
438 [("InitialTargetDir", 'TARGETDIR=""', 750),
439 ("SetDLLDirToTarget", 'DLLDIR=""', 751),
440 ("CompilePyc", "COMPILEALL", 6800),
441 ("CompilePyo", "COMPILEALL", 6801),
442 ])
443
444 #####################################################################
445 # Standard dialogs: FatalError, UserExit, ExitDialog
446 fatal=PyDialog(db, "FatalError", x, y, w, h, modal, title,
447 "Finish", "Finish", "Finish")
448 fatal.title("[ProductName] Installer ended prematurely")
449 fatal.back("< Back", "Finish", active = 0)
450 fatal.cancel("Cancel", "Back", active = 0)
451 fatal.text("Description1", 135, 70, 220, 80, 0x30003,
452 "[ProductName] setup ended prematurely because of an error. Your system has not been modified. To install this program at a later time, please run the installation again.")
453 fatal.text("Description2", 135, 155, 220, 20, 0x30003,
454 "Click the Finish button to exit the Installer.")
455 c=fatal.next("Finish", "Cancel", name="Finish")
456 # See "ControlEvent Table". Parameters are the event, the parameter
457 # to the action, and optionally the condition for the event, and the order
458 # of events.
459 c.event("EndDialog", "Exit")
Tim Peters66cb0182004-08-26 05:23:19 +0000460
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000461 user_exit=PyDialog(db, "UserExit", x, y, w, h, modal, title,
462 "Finish", "Finish", "Finish")
463 user_exit.title("[ProductName] Installer was interrupted")
464 user_exit.back("< Back", "Finish", active = 0)
465 user_exit.cancel("Cancel", "Back", active = 0)
466 user_exit.text("Description1", 135, 70, 220, 80, 0x30003,
467 "[ProductName] setup was interrupted. Your system has not been modified. "
468 "To install this program at a later time, please run the installation again.")
469 user_exit.text("Description2", 135, 155, 220, 20, 0x30003,
470 "Click the Finish button to exit the Installer.")
471 c = user_exit.next("Finish", "Cancel", name="Finish")
472 c.event("EndDialog", "Exit")
Tim Peters66cb0182004-08-26 05:23:19 +0000473
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000474 exit_dialog = PyDialog(db, "ExitDialog", x, y, w, h, modal, title,
475 "Finish", "Finish", "Finish")
476 exit_dialog.title("Completing the [ProductName] Installer")
477 exit_dialog.back("< Back", "Finish", active = 0)
478 exit_dialog.cancel("Cancel", "Back", active = 0)
Martin v. Löwis2dd2a282004-08-22 17:10:12 +0000479 exit_dialog.text("Acknowledgements", 135, 95, 220, 120, 0x30003,
480 "Special Windows thanks to:\n"
Martin v. Löwisd3f61a22004-08-30 09:22:30 +0000481 " LettError, Erik van Blokland, for the \n"
482 " Python for Windows graphic.\n"
Martin v. Löwis2dd2a282004-08-22 17:10:12 +0000483 " http://www.letterror.com/\n"
484 "\n"
Martin v. Löwisd3f61a22004-08-30 09:22:30 +0000485 " Mark Hammond, without whose years of freely \n"
486 " shared Windows expertise, Python for Windows \n"
487 " would still be Python for DOS.")
Tim Peters66cb0182004-08-26 05:23:19 +0000488
Martin v. Löwis2dd2a282004-08-22 17:10:12 +0000489 exit_dialog.text("Description", 135, 235, 220, 20, 0x30003,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000490 "Click the Finish button to exit the Installer.")
491 c = exit_dialog.next("Finish", "Cancel", name="Finish")
492 c.event("EndDialog", "Return")
493
494 #####################################################################
495 # Required dialog: FilesInUse, ErrorDlg
496 inuse = PyDialog(db, "FilesInUse",
497 x, y, w, h,
498 19, # KeepModeless|Modal|Visible
499 title,
500 "Retry", "Retry", "Retry", bitmap=False)
501 inuse.text("Title", 15, 6, 200, 15, 0x30003,
502 r"{\DlgFontBold8}Files in Use")
503 inuse.text("Description", 20, 23, 280, 20, 0x30003,
504 "Some files that need to be updated are currently in use.")
505 inuse.text("Text", 20, 55, 330, 50, 3,
506 "The following applications are using files that need to be updated by this setup. Close these applications and then click Retry to continue the installation or Cancel to exit it.")
507 inuse.control("List", "ListBox", 20, 107, 330, 130, 7, "FileInUseProcess",
508 None, None, None)
509 c=inuse.back("Exit", "Ignore", name="Exit")
510 c.event("EndDialog", "Exit")
511 c=inuse.next("Ignore", "Retry", name="Ignore")
512 c.event("EndDialog", "Ignore")
513 c=inuse.cancel("Retry", "Exit", name="Retry")
514 c.event("EndDialog","Retry")
515
516
517 # See "Error Dialog". See "ICE20" for the required names of the controls.
518 error = Dialog(db, "ErrorDlg",
519 50, 10, 330, 101,
520 65543, # Error|Minimize|Modal|Visible
521 title,
522 "ErrorText", None, None)
523 error.text("ErrorText", 50,9,280,48,3, "")
524 error.control("ErrorIcon", "Icon", 15, 9, 24, 24, 5242881, None, "py.ico", None, None)
525 error.pushbutton("N",120,72,81,21,3,"No",None).event("EndDialog","ErrorNo")
526 error.pushbutton("Y",240,72,81,21,3,"Yes",None).event("EndDialog","ErrorYes")
527 error.pushbutton("A",0,72,81,21,3,"Abort",None).event("EndDialog","ErrorAbort")
528 error.pushbutton("C",42,72,81,21,3,"Cancel",None).event("EndDialog","ErrorCancel")
529 error.pushbutton("I",81,72,81,21,3,"Ignore",None).event("EndDialog","ErrorIgnore")
530 error.pushbutton("O",159,72,81,21,3,"Ok",None).event("EndDialog","ErrorOk")
531 error.pushbutton("R",198,72,81,21,3,"Retry",None).event("EndDialog","ErrorRetry")
532
533 #####################################################################
534 # Global "Query Cancel" dialog
535 cancel = Dialog(db, "CancelDlg", 50, 10, 260, 85, 3, title,
536 "No", "No", "No")
Tim Peters66cb0182004-08-26 05:23:19 +0000537 cancel.text("Text", 48, 15, 194, 30, 3,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000538 "Are you sure you want to cancel [ProductName] installation?")
539 cancel.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
540 "py.ico", None, None)
541 c=cancel.pushbutton("Yes", 72, 57, 56, 17, 3, "Yes", "No")
542 c.event("EndDialog", "Exit")
Tim Peters66cb0182004-08-26 05:23:19 +0000543
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000544 c=cancel.pushbutton("No", 132, 57, 56, 17, 3, "No", "Yes")
545 c.event("EndDialog", "Return")
546
547 #####################################################################
548 # Global "Wait for costing" dialog
549 costing = Dialog(db, "WaitForCostingDlg", 50, 10, 260, 85, modal, title,
550 "Return", "Return", "Return")
551 costing.text("Text", 48, 15, 194, 30, 3,
552 "Please wait while the installer finishes determining your disk space requirements.")
553 costing.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
554 "py.ico", None, None)
555 c = costing.pushbutton("Return", 102, 57, 56, 17, 3, "Return", None)
556 c.event("EndDialog", "Exit")
557
558 #####################################################################
559 # Preparation dialog: no user input except cancellation
560 prep = PyDialog(db, "PrepareDlg", x, y, w, h, modeless, title,
561 "Cancel", "Cancel", "Cancel")
562 prep.text("Description", 135, 70, 220, 40, 0x30003,
563 "Please wait while the Installer prepares to guide you through the installation.")
564 prep.title("Welcome to the [ProductName] Installer")
565 c=prep.text("ActionText", 135, 110, 220, 20, 0x30003, "Pondering...")
566 c.mapping("ActionText", "Text")
567 c=prep.text("ActionData", 135, 135, 220, 30, 0x30003, None)
568 c.mapping("ActionData", "Text")
569 prep.back("Back", None, active=0)
570 prep.next("Next", None, active=0)
571 c=prep.cancel("Cancel", None)
572 c.event("SpawnDialog", "CancelDlg")
573
574 #####################################################################
575 # Target directory selection
576 seldlg = PyDialog(db, "SelectDirectoryDlg", x, y, w, h, modal, title,
577 "Next", "Next", "Cancel")
578 seldlg.title("Select Destination Directory")
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000579 c = seldlg.text("Existing", 135, 25, 235, 30, 0x30003,
580 "{\VerdanaRed9}This update will replace your existing [ProductLine] installation.")
581 c.condition("Hide", 'REMOVEOLDVERSION="" and REMOVEOLDSNAPSHOT=""')
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000582 seldlg.text("Description", 135, 50, 220, 40, 0x30003,
583 "Please select a directory for the [ProductName] files.")
584
585 seldlg.back("< Back", None, active=0)
586 c = seldlg.next("Next >", "Cancel")
587 c.event("DoAction", "CheckDir", "TargetExistsOk<>1", order=1)
588 # If the target exists, but we found that we are going to remove old versions, don't bother
589 # confirming that the target directory exists. Strictly speaking, we should determine that
590 # the target directory is indeed the target of the product that we are going to remove, but
591 # I don't know how to do that.
592 c.event("SpawnDialog", "ExistingDirectoryDlg", 'TargetExists=1 and REMOVEOLDVERSION="" and REMOVEOLDSNAPSHOT=""', 2)
593 c.event("SetTargetPath", "TARGETDIR", 'TargetExists=0 or REMOVEOLDVERSION<>"" or REMOVEOLDSNAPSHOT<>""', 3)
594 c.event("SpawnWaitDialog", "WaitForCostingDlg", "CostingComplete=1", 4)
595 c.event("NewDialog", "SelectFeaturesDlg", 'TargetExists=0 or REMOVEOLDVERSION<>"" or REMOVEOLDSNAPSHOT<>""', 5)
596
597 c = seldlg.cancel("Cancel", "DirectoryCombo")
598 c.event("SpawnDialog", "CancelDlg")
599
600 seldlg.control("DirectoryCombo", "DirectoryCombo", 135, 70, 172, 80, 393219,
601 "TARGETDIR", None, "DirectoryList", None)
602 seldlg.control("DirectoryList", "DirectoryList", 135, 90, 208, 136, 3, "TARGETDIR",
603 None, "PathEdit", None)
604 seldlg.control("PathEdit", "PathEdit", 135, 230, 206, 16, 3, "TARGETDIR", None, "Next", None)
605 c = seldlg.pushbutton("Up", 306, 70, 18, 18, 3, "Up", None)
606 c.event("DirectoryListUp", "0")
607 c = seldlg.pushbutton("NewDir", 324, 70, 30, 18, 3, "New", None)
608 c.event("DirectoryListNew", "0")
609
610 #####################################################################
611 # SelectFeaturesDlg
612 features = PyDialog(db, "SelectFeaturesDlg", x, y, w, h, modal|track_disk_space,
613 title, "Tree", "Next", "Cancel")
614 features.title("Customize [ProductName]")
615 features.text("Description", 135, 35, 220, 15, 0x30003,
616 "Select the way you want features to be installed.")
617 features.text("Text", 135,45,220,30, 3,
618 "Click on the icons in the tree below to change the way features will be installed.")
619
620 c=features.back("< Back", "Next")
621 c.event("NewDialog", "SelectDirectoryDlg")
622
623 c=features.next("Next >", "Cancel")
624 c.mapping("SelectionNoItems", "Enabled")
625 c.event("SpawnDialog", "DiskCostDlg", "OutOfDiskSpace=1", order=1)
626 c.event("EndDialog", "Return", "OutOfDiskSpace<>1", order=2)
627
628 c=features.cancel("Cancel", "Tree")
629 c.event("SpawnDialog", "CancelDlg")
630
Tim Peters66cb0182004-08-26 05:23:19 +0000631 # The browse property is not used, since we have only a single target path (selected already)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000632 features.control("Tree", "SelectionTree", 135, 75, 220, 95, 7, "_BrowseProperty",
633 "Tree of selections", "Back", None)
634
635 #c=features.pushbutton("Reset", 42, 243, 56, 17, 3, "Reset", "DiskCost")
636 #c.mapping("SelectionNoItems", "Enabled")
637 #c.event("Reset", "0")
Tim Peters66cb0182004-08-26 05:23:19 +0000638
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000639 features.control("Box", "GroupBox", 135, 170, 225, 90, 1, None, None, None, None)
640
641 c=features.xbutton("DiskCost", "Disk &Usage", None, 0.10)
642 c.mapping("SelectionNoItems","Enabled")
643 c.event("SpawnDialog", "DiskCostDlg")
644
645 c=features.xbutton("Advanced", "Advanced", None, 0.30)
646 c.event("SpawnDialog", "AdvancedDlg")
647
648 c=features.text("ItemDescription", 140, 180, 210, 30, 3,
649 "Multiline description of the currently selected item.")
650 c.mapping("SelectionDescription","Text")
Tim Peters66cb0182004-08-26 05:23:19 +0000651
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000652 c=features.text("ItemSize", 140, 210, 210, 45, 3,
653 "The size of the currently selected item.")
654 c.mapping("SelectionSize", "Text")
655
656 #####################################################################
657 # Disk cost
658 cost = PyDialog(db, "DiskCostDlg", x, y, w, h, modal, title,
659 "OK", "OK", "OK", bitmap=False)
660 cost.text("Title", 15, 6, 200, 15, 0x30003,
661 "{\DlgFontBold8}Disk Space Requirements")
662 cost.text("Description", 20, 20, 280, 20, 0x30003,
663 "The disk space required for the installation of the selected features.")
664 cost.text("Text", 20, 53, 330, 60, 3,
665 "The highlighted volumes (if any) do not have enough disk space "
666 "available for the currently selected features. You can either "
667 "remove some files from the highlighted volumes, or choose to "
668 "install less features onto local drive(s), or select different "
669 "destination drive(s).")
670 cost.control("VolumeList", "VolumeCostList", 20, 100, 330, 150, 393223,
671 None, "{120}{70}{70}{70}{70}", None, None)
672 cost.xbutton("OK", "Ok", None, 0.5).event("EndDialog", "Return")
673
674 #####################################################################
675 # WhichUsers Dialog. Only available on NT, and for privileged users.
676 # This must be run before FindRelatedProducts, because that will
677 # take into account whether the previous installation was per-user
678 # or per-machine. We currently don't support going back to this
679 # dialog after "Next" was selected; to support this, we would need to
680 # find how to reset the ALLUSERS property, and how to re-run
681 # FindRelatedProducts.
682 # On Windows9x, the ALLUSERS property is ignored on the command line
683 # and in the Property table, but installer fails according to the documentation
684 # if a dialog attempts to set ALLUSERS.
685 whichusers = PyDialog(db, "WhichUsersDlg", x, y, w, h, modal, title,
686 "AdminInstall", "Next", "Cancel")
687 whichusers.title("Select whether to install [ProductName] for all users of this computer.")
688 # A radio group with two options: allusers, justme
689 g = whichusers.radiogroup("AdminInstall", 135, 60, 160, 50, 3,
690 "WhichUsers", "", "Next")
691 g.add("ALL", 0, 5, 150, 20, "Install for all users")
692 g.add("JUSTME", 0, 25, 150, 20, "Install just for me")
693
Tim Peters66cb0182004-08-26 05:23:19 +0000694 whichusers.back("Back", None, active=0)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000695
696 c = whichusers.next("Next >", "Cancel")
697 c.event("[ALLUSERS]", "1", 'WhichUsers="ALL"', 1)
698 c.event("EndDialog", "Return", order = 2)
699
700 c = whichusers.cancel("Cancel", "AdminInstall")
701 c.event("SpawnDialog", "CancelDlg")
Tim Peters66cb0182004-08-26 05:23:19 +0000702
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000703 #####################################################################
704 # Advanced Dialog.
705 advanced = PyDialog(db, "AdvancedDlg", x, y, w, h, modal, title,
706 "CompilePyc", "Next", "Cancel")
707 advanced.title("Advanced Options for [ProductName]")
708 # A radio group with two options: allusers, justme
709 advanced.checkbox("CompilePyc", 135, 60, 230, 50, 3,
710 "COMPILEALL", "Compile .py files to byte code after installation", "Next")
711
712 c = advanced.next("Finish", "Cancel")
713 c.event("EndDialog", "Return")
714
715 c = advanced.cancel("Cancel", "CompilePyc")
716 c.event("SpawnDialog", "CancelDlg")
Tim Peters66cb0182004-08-26 05:23:19 +0000717
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000718 #####################################################################
Tim Peters66cb0182004-08-26 05:23:19 +0000719 # Existing Directory dialog
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000720 dlg = Dialog(db, "ExistingDirectoryDlg", 50, 30, 200, 80, modal, title,
721 "No", "No", "No")
722 dlg.text("Title", 10, 20, 180, 40, 3,
723 "[TARGETDIR] exists. Are you sure you want to overwrite existing files?")
724 c=dlg.pushbutton("Yes", 30, 60, 55, 17, 3, "Yes", "No")
725 c.event("[TargetExists]", "0", order=1)
726 c.event("[TargetExistsOk]", "1", order=2)
727 c.event("EndDialog", "Return", order=3)
728 c=dlg.pushbutton("No", 115, 60, 55, 17, 3, "No", "Yes")
729 c.event("EndDialog", "Return")
730
731 #####################################################################
732 # Installation Progress dialog (modeless)
733 progress = PyDialog(db, "ProgressDlg", x, y, w, h, modeless, title,
734 "Cancel", "Cancel", "Cancel", bitmap=False)
735 progress.text("Title", 20, 15, 200, 15, 0x30003,
736 "{\DlgFontBold8}[Progress1] [ProductName]")
737 progress.text("Text", 35, 65, 300, 30, 3,
738 "Please wait while the Installer [Progress2] [ProductName]. "
739 "This may take several minutes.")
740 progress.text("StatusLabel", 35, 100, 35, 20, 3, "Status:")
741
742 c=progress.text("ActionText", 70, 100, w-70, 20, 3, "Pondering...")
743 c.mapping("ActionText", "Text")
744
745 #c=progress.text("ActionData", 35, 140, 300, 20, 3, None)
746 #c.mapping("ActionData", "Text")
747
748 c=progress.control("ProgressBar", "ProgressBar", 35, 120, 300, 10, 65537,
749 None, "Progress done", None, None)
750 c.mapping("SetProgress", "Progress")
751
752 progress.back("< Back", "Next", active=False)
753 progress.next("Next >", "Cancel", active=False)
754 progress.cancel("Cancel", "Back").event("SpawnDialog", "CancelDlg")
755
756 # Maintenance type: repair/uninstall
757 maint = PyDialog(db, "MaintenanceTypeDlg", x, y, w, h, modal, title,
758 "Next", "Next", "Cancel")
759 maint.title("Welcome to the [ProductName] Setup Wizard")
760 maint.text("BodyText", 135, 63, 230, 42, 3,
761 "Select whether you want to repair or remove [ProductName].")
762 g=maint.radiogroup("RepairRadioGroup", 135, 108, 230, 60, 3,
763 "MaintenanceForm_Action", "", "Next")
764 g.add("Change", 0, 0, 200, 17, "&Change [ProductName]")
765 g.add("Repair", 0, 18, 200, 17, "&Repair [ProductName]")
766 g.add("Remove", 0, 36, 200, 17, "Re&move [ProductName]")
Tim Peters66cb0182004-08-26 05:23:19 +0000767
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000768 maint.back("< Back", None, active=False)
769 c=maint.next("Finish", "Cancel")
770 # Change installation: Change progress dialog to "Change", then ask
771 # for feature selection
772 c.event("[Progress1]", "Change", 'MaintenanceForm_Action="Change"', 1)
773 c.event("[Progress2]", "changes", 'MaintenanceForm_Action="Change"', 2)
774
775 # Reinstall: Change progress dialog to "Repair", then invoke reinstall
776 # Also set list of reinstalled features to "ALL"
777 c.event("[REINSTALL]", "ALL", 'MaintenanceForm_Action="Repair"', 5)
778 c.event("[Progress1]", "Repairing", 'MaintenanceForm_Action="Repair"', 6)
Raymond Hettinger72f08012004-11-07 07:08:25 +0000779 c.event("[Progress2]", "repairs", 'MaintenanceForm_Action="Repair"', 7)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000780 c.event("Reinstall", "ALL", 'MaintenanceForm_Action="Repair"', 8)
781
782 # Uninstall: Change progress to "Remove", then invoke uninstall
783 # Also set list of removed features to "ALL"
784 c.event("[REMOVE]", "ALL", 'MaintenanceForm_Action="Remove"', 11)
785 c.event("[Progress1]", "Removing", 'MaintenanceForm_Action="Remove"', 12)
786 c.event("[Progress2]", "removes", 'MaintenanceForm_Action="Remove"', 13)
787 c.event("Remove", "ALL", 'MaintenanceForm_Action="Remove"', 14)
788
Tim Peters66cb0182004-08-26 05:23:19 +0000789 # Close dialog when maintenance action scheduled
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000790 c.event("EndDialog", "Return", 'MaintenanceForm_Action<>"Change"', 20)
791 c.event("NewDialog", "SelectFeaturesDlg", 'MaintenanceForm_Action="Change"', 21)
Tim Peters66cb0182004-08-26 05:23:19 +0000792
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000793 maint.cancel("Cancel", "RepairRadioGroup").event("SpawnDialog", "CancelDlg")
Tim Peters66cb0182004-08-26 05:23:19 +0000794
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000795
796# See "Feature Table". The feature level is 1 for all features,
797# and the feature attributes are 0 for the DefaultFeature, and
798# FollowParent for all other features. The numbers are the Display
799# column.
800def add_features(db):
801 # feature attributes:
802 # msidbFeatureAttributesFollowParent == 2
803 # msidbFeatureAttributesDisallowAdvertise == 8
804 # Features that need to be installed with together with the main feature
805 # (i.e. additional Python libraries) need to follow the parent feature.
806 # Features that have no advertisement trigger (e.g. the test suite)
807 # must not support advertisement
808 global default_feature, tcltk, htmlfiles, tools, testsuite, ext_feature
809 default_feature = Feature(db, "DefaultFeature", "Python",
810 "Python Interpreter and Libraries",
811 1, directory = "TARGETDIR")
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000812 # We don't support advertisement of extensions
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000813 ext_feature = Feature(db, "Extensions", "Register Extensions",
814 "Make this Python installation the default Python installation", 3,
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000815 parent = default_feature, attributes=2|8)
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000816 if have_tcl:
817 tcltk = Feature(db, "TclTk", "Tcl/Tk", "Tkinter, IDLE, pydoc", 5,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000818 parent = default_feature, attributes=2)
819 htmlfiles = Feature(db, "Documentation", "Documentation",
820 "Python HTMLHelp File", 7, parent = default_feature)
821 tools = Feature(db, "Tools", "Utility Scripts",
Tim Peters66cb0182004-08-26 05:23:19 +0000822 "Python utility scripts (Tools/", 9,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000823 parent = default_feature, attributes=2)
824 testsuite = Feature(db, "Testsuite", "Test suite",
825 "Python test suite (Lib/test/)", 11,
826 parent = default_feature, attributes=2|8)
Tim Peters66cb0182004-08-26 05:23:19 +0000827
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000828def extract_msvcr71():
829 import _winreg
830 # Find the location of the merge modules
831 k = _winreg.OpenKey(
832 _winreg.HKEY_LOCAL_MACHINE,
833 r"Software\Microsoft\VisualStudio\7.1\Setup\VS")
834 dir = _winreg.QueryValueEx(k, "MSMDir")[0]
835 _winreg.CloseKey(k)
836 files = glob.glob1(dir, "*CRT71*")
837 assert len(files) == 1
838 file = os.path.join(dir, files[0])
839 # Extract msvcr71.dll
840 m = msilib.MakeMerge2()
841 m.OpenModule(file, 0)
842 m.ExtractFiles(".")
843 m.CloseModule()
844 # Find the version/language of msvcr71.dll
845 installer = msilib.MakeInstaller()
846 return installer.FileVersion("msvcr71.dll", 0), \
847 installer.FileVersion("msvcr71.dll", 1)
848
849class PyDirectory(Directory):
850 """By default, all components in the Python installer
851 can run from source."""
852 def __init__(self, *args, **kw):
853 if not kw.has_key("componentflags"):
854 kw['componentflags'] = 2 #msidbComponentAttributesOptional
855 Directory.__init__(self, *args, **kw)
856
857# See "File Table", "Component Table", "Directory Table",
858# "FeatureComponents Table"
859def add_files(db):
860 cab = CAB("python")
861 tmpfiles = []
862 # Add all executables, icons, text files into the TARGETDIR component
863 root = PyDirectory(db, cab, None, srcdir, "TARGETDIR", "SourceDir")
864 default_feature.set_current()
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000865 if not msilib.Win64:
866 root.add_file("PCBuild/w9xpopen.exe")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000867 root.add_file("PC/py.ico")
868 root.add_file("PC/pyc.ico")
869 root.add_file("README.txt", src="README")
870 root.add_file("NEWS.txt", src="Misc/NEWS")
871 root.add_file("LICENSE.txt", src="LICENSE")
872 root.start_component("python.exe", keyfile="python.exe")
873 root.add_file("PCBuild/python.exe")
874 root.start_component("pythonw.exe", keyfile="pythonw.exe")
875 root.add_file("PCBuild/pythonw.exe")
876
877 # msidbComponentAttributesSharedDllRefCount = 8, see "Component Table"
878 dlldir = PyDirectory(db, cab, root, srcdir, "DLLDIR", ".")
879 pydll = "python%s%s.dll" % (major, minor)
880 pydllsrc = srcdir + "/PCBuild/" + pydll
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000881 dlldir.start_component("DLLDIR", flags = 8, keyfile = pydll, uuid = pythondll_uuid)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000882 installer = msilib.MakeInstaller()
883 pyversion = installer.FileVersion(pydllsrc, 0)
884 if not snapshot:
885 # For releases, the Python DLL has the same version as the
886 # installer package.
887 assert pyversion.split(".")[:3] == current_version.split(".")
888 dlldir.add_file("PCBuild/python%s%s.dll" % (major, minor),
889 version=pyversion,
890 language=installer.FileVersion(pydllsrc, 1))
891 # XXX determine dependencies
892 version, lang = extract_msvcr71()
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000893 dlldir.start_component("msvcr71", flags=8, keyfile="msvcr71.dll", uuid=msvcr71_uuid)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000894 dlldir.add_file("msvcr71.dll", src=os.path.abspath("msvcr71.dll"),
895 version=version, language=lang)
896 tmpfiles.append("msvcr71.dll")
Tim Peters66cb0182004-08-26 05:23:19 +0000897
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000898 # Add all .py files in Lib, except lib-tk, test
899 dirs={}
900 pydirs = [(root,"Lib")]
901 while pydirs:
902 parent, dir = pydirs.pop()
Martin v. Löwis9ca9f562006-01-03 06:29:53 +0000903 if dir == ".svn" or dir.startswith("plat-"):
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000904 continue
905 elif dir in ["lib-tk", "idlelib", "Icons"]:
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000906 if not have_tcl:
907 continue
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000908 tcltk.set_current()
Martin v. Löwis5c9e55e2004-12-30 14:08:18 +0000909 elif dir in ['test', 'tests', 'data', 'output']:
910 # test: Lib, Lib/email, Lib/bsddb
911 # tests: Lib/distutils
912 # data: Lib/email/test
913 # output: Lib/test
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000914 testsuite.set_current()
915 else:
916 default_feature.set_current()
917 lib = PyDirectory(db, cab, parent, dir, dir, "%s|%s" % (parent.make_short(dir), dir))
918 # Add additional files
919 dirs[dir]=lib
920 lib.glob("*.txt")
921 if dir=='site-packages':
Martin v. Löwis6d60c092004-11-21 10:16:26 +0000922 lib.add_file("README.txt", src="README")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000923 continue
924 files = lib.glob("*.py")
925 files += lib.glob("*.pyw")
926 if files:
927 # Add an entry to the RemoveFile table to remove bytecode files.
928 lib.remove_pyc()
929 if dir=='test' and parent.physical=='Lib':
930 lib.add_file("185test.db")
931 lib.add_file("audiotest.au")
932 lib.add_file("cfgparser.1")
933 lib.add_file("test.xml")
934 lib.add_file("test.xml.out")
935 lib.add_file("testtar.tar")
Martin v. Löwis7d3755d2004-09-06 06:31:12 +0000936 lib.add_file("test_difflib_expect.html")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000937 lib.glob("*.uue")
938 lib.add_file("readme.txt", src="README")
939 if dir=='decimaltestdata':
940 lib.glob("*.decTest")
941 if dir=='output':
942 lib.glob("test_*")
943 if dir=='idlelib':
944 lib.glob("*.def")
945 lib.add_file("idle.bat")
946 if dir=="Icons":
947 lib.glob("*.gif")
948 lib.add_file("idle.icns")
949 if dir=="command":
950 lib.add_file("wininst-6.exe")
951 lib.add_file("wininst-7.1.exe")
952 if dir=="data" and parent.physical=="test" and parent.basedir.physical=="email":
Martin v. Löwis9ca9f562006-01-03 06:29:53 +0000953 # This should contain all non-.svn files listed in subversion
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000954 for f in os.listdir(lib.absolute):
Martin v. Löwis9ca9f562006-01-03 06:29:53 +0000955 if f.endswith(".txt") or f==".svn":continue
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000956 if f.endswith(".au") or f.endswith(".gif"):
957 lib.add_file(f)
958 else:
959 print "WARNING: New file %s in email/test/data" % f
960 for f in os.listdir(lib.absolute):
961 if os.path.isdir(os.path.join(lib.absolute, f)):
962 pydirs.append((lib, f))
963 # Add DLLs
964 default_feature.set_current()
965 lib = PyDirectory(db, cab, root, srcdir+"/PCBuild", "DLLs", "DLLS|DLLs")
966 dlls = []
967 tclfiles = []
968 for f in extensions:
969 if f=="_tkinter.pyd":
970 continue
971 if not os.path.exists(srcdir+"/PCBuild/"+f):
972 print "WARNING: Missing extension", f
973 continue
974 dlls.append(f)
975 lib.add_file(f)
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000976 if have_tcl:
977 if not os.path.exists(srcdir+"/PCBuild/_tkinter.pyd"):
978 print "WARNING: Missing _tkinter.pyd"
979 else:
980 lib.start_component("TkDLLs", tcltk)
981 lib.add_file("_tkinter.pyd")
982 dlls.append("_tkinter.pyd")
983 tcldir = os.path.normpath(srcdir+"/../tcltk/bin")
984 for f in glob.glob1(tcldir, "*.dll"):
985 lib.add_file(f, src=os.path.join(tcldir, f))
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000986 # check whether there are any unknown extensions
987 for f in glob.glob1(srcdir+"/PCBuild", "*.pyd"):
988 if f.endswith("_d.pyd"): continue # debug version
989 if f in dlls: continue
990 print "WARNING: Unknown extension", f
Tim Peters66cb0182004-08-26 05:23:19 +0000991
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000992 # Add headers
993 default_feature.set_current()
994 lib = PyDirectory(db, cab, root, "include", "include", "INCLUDE|include")
995 lib.glob("*.h")
996 lib.add_file("pyconfig.h", src="../PC/pyconfig.h")
997 # Add import libraries
998 lib = PyDirectory(db, cab, root, "PCBuild", "libs", "LIBS|libs")
999 for f in dlls:
1000 lib.add_file(f.replace('pyd','lib'))
1001 lib.add_file('python%s%s.lib' % (major, minor))
Martin v. Löwis9fda9312004-12-22 13:41:49 +00001002 # Add the mingw-format library
1003 if have_mingw:
Tim Peters5a9fb3c2005-01-07 16:01:32 +00001004 lib.add_file('libpython%s%s.a' % (major, minor))
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001005 if have_tcl:
1006 # Add Tcl/Tk
1007 tcldirs = [(root, '../tcltk/lib', 'tcl')]
1008 tcltk.set_current()
1009 while tcldirs:
1010 parent, phys, dir = tcldirs.pop()
1011 lib = PyDirectory(db, cab, parent, phys, dir, "%s|%s" % (parent.make_short(dir), dir))
1012 if not os.path.exists(lib.absolute):
1013 continue
1014 for f in os.listdir(lib.absolute):
1015 if os.path.isdir(os.path.join(lib.absolute, f)):
1016 tcldirs.append((lib, f, f))
1017 else:
1018 lib.add_file(f)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001019 # Add tools
1020 tools.set_current()
1021 tooldir = PyDirectory(db, cab, root, "Tools", "Tools", "TOOLS|Tools")
1022 for f in ['i18n', 'pynche', 'Scripts', 'versioncheck', 'webchecker']:
1023 lib = PyDirectory(db, cab, tooldir, f, f, "%s|%s" % (tooldir.make_short(f), f))
1024 lib.glob("*.py")
1025 lib.glob("*.pyw", exclude=['pydocgui.pyw'])
1026 lib.remove_pyc()
1027 lib.glob("*.txt")
1028 if f == "pynche":
1029 x = PyDirectory(db, cab, lib, "X", "X", "X|X")
1030 x.glob("*.txt")
Martin v. Löwis4d930be2004-12-01 21:46:35 +00001031 if os.path.exists(os.path.join(lib.absolute, "README")):
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001032 lib.add_file("README.txt", src="README")
Martin v. Löwis4d930be2004-12-01 21:46:35 +00001033 if f == 'Scripts':
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001034 if have_tcl:
1035 lib.start_component("pydocgui.pyw", tcltk, keyfile="pydocgui.pyw")
1036 lib.add_file("pydocgui.pyw")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001037 # Add documentation
1038 htmlfiles.set_current()
1039 lib = PyDirectory(db, cab, root, "Doc", "Doc", "DOC|Doc")
1040 lib.start_component("documentation", keyfile="Python%s%s.chm" % (major,minor))
1041 lib.add_file("Python%s%s.chm" % (major, minor))
1042
1043 cab.commit(db)
1044
1045 for f in tmpfiles:
1046 os.unlink(f)
1047
1048# See "Registry Table", "Component Table"
1049def add_registry(db):
1050 # File extensions, associated with the REGISTRY.def component
1051 # IDLE verbs depend on the tcltk feature.
1052 # msidbComponentAttributesRegistryKeyPath = 4
1053 # -1 for Root specifies "dependent on ALLUSERS property"
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001054 tcldata = []
1055 if have_tcl:
1056 tcldata = [
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001057 ("REGISTRY.tcl", msilib.gen_uuid(), "TARGETDIR", 4, None,
1058 "py.IDLE")]
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001059 add_data(db, "Component",
1060 # msidbComponentAttributesRegistryKeyPath = 4
1061 [("REGISTRY", msilib.gen_uuid(), "TARGETDIR", 4, None,
1062 "InstallPath"),
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001063 ("REGISTRY.doc", msilib.gen_uuid(), "TARGETDIR", 4, None,
1064 "Documentation"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001065 ("REGISTRY.def", msilib.gen_uuid(), "TARGETDIR", 4,
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001066 None, None)] + tcldata)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001067 # See "FeatureComponents Table".
1068 # The association between TclTk and pythonw.exe is necessary to make ICE59
1069 # happy, because the installer otherwise believes that the IDLE and PyDoc
1070 # shortcuts might get installed without pythonw.exe being install. This
1071 # is not true, since installing TclTk will install the default feature, which
1072 # will cause pythonw.exe to be installed.
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001073 # REGISTRY.tcl is not associated with any feature, as it will be requested
1074 # through a custom action
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001075 tcldata = []
1076 if have_tcl:
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001077 tcldata = [(tcltk.id, "pythonw.exe")]
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001078 add_data(db, "FeatureComponents",
1079 [(default_feature.id, "REGISTRY"),
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001080 (htmlfiles.id, "REGISTRY.doc"),
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001081 (ext_feature.id, "REGISTRY.def")] +
1082 tcldata
1083 )
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001084 # Extensions are not advertised. For advertised extensions,
1085 # we would need separate binaries that install along with the
1086 # extension.
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001087 pat = r"Software\Classes\%sPython.%sFile\shell\%s\command"
1088 ewi = "Edit with IDLE"
1089 pat2 = r"Software\Classes\%sPython.%sFile\DefaultIcon"
1090 pat3 = r"Software\Classes\%sPython.%sFile"
Martin v. Löwiseac02e62004-11-18 08:00:33 +00001091 tcl_verbs = []
1092 if have_tcl:
1093 tcl_verbs=[
1094 ("py.IDLE", -1, pat % (testprefix, "", ewi), "",
1095 r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"',
1096 "REGISTRY.tcl"),
1097 ("pyw.IDLE", -1, pat % (testprefix, "NoCon", ewi), "",
1098 r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"',
1099 "REGISTRY.tcl"),
1100 ]
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001101 add_data(db, "Registry",
1102 [# Extensions
1103 ("py.ext", -1, r"Software\Classes\."+ext, "",
1104 "Python.File", "REGISTRY.def"),
1105 ("pyw.ext", -1, r"Software\Classes\."+ext+'w', "",
1106 "Python.NoConFile", "REGISTRY.def"),
1107 ("pyc.ext", -1, r"Software\Classes\."+ext+'c', "",
1108 "Python.CompiledFile", "REGISTRY.def"),
1109 ("pyo.ext", -1, r"Software\Classes\."+ext+'o', "",
1110 "Python.CompiledFile", "REGISTRY.def"),
1111 # MIME types
1112 ("py.mime", -1, r"Software\Classes\."+ext, "Content Type",
1113 "text/plain", "REGISTRY.def"),
1114 ("pyw.mime", -1, r"Software\Classes\."+ext+'w', "Content Type",
1115 "text/plain", "REGISTRY.def"),
1116 #Verbs
1117 ("py.open", -1, pat % (testprefix, "", "open"), "",
1118 r'"[TARGETDIR]python.exe" "%1" %*', "REGISTRY.def"),
1119 ("pyw.open", -1, pat % (testprefix, "NoCon", "open"), "",
1120 r'"[TARGETDIR]pythonw.exe" "%1" %*', "REGISTRY.def"),
1121 ("pyc.open", -1, pat % (testprefix, "Compiled", "open"), "",
1122 r'"[TARGETDIR]python.exe" "%1" %*', "REGISTRY.def"),
Martin v. Löwiseac02e62004-11-18 08:00:33 +00001123 ] + tcl_verbs + [
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001124 #Icons
1125 ("py.icon", -1, pat2 % (testprefix, ""), "",
1126 r'[TARGETDIR]py.ico', "REGISTRY.def"),
1127 ("pyw.icon", -1, pat2 % (testprefix, "NoCon"), "",
1128 r'[TARGETDIR]py.ico', "REGISTRY.def"),
1129 ("pyc.icon", -1, pat2 % (testprefix, "Compiled"), "",
1130 r'[TARGETDIR]pyc.ico', "REGISTRY.def"),
1131 # Descriptions
1132 ("py.txt", -1, pat3 % (testprefix, ""), "",
1133 "Python File", "REGISTRY.def"),
1134 ("pyw.txt", -1, pat3 % (testprefix, "NoCon"), "",
1135 "Python File (no console)", "REGISTRY.def"),
1136 ("pyc.txt", -1, pat3 % (testprefix, "Compiled"), "",
1137 "Compiled Python File", "REGISTRY.def"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001138 ])
Tim Peters66cb0182004-08-26 05:23:19 +00001139
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001140 # Registry keys
1141 prefix = r"Software\%sPython\PythonCore\%s" % (testprefix, short_version)
1142 add_data(db, "Registry",
1143 [("InstallPath", -1, prefix+r"\InstallPath", "", "[TARGETDIR]", "REGISTRY"),
1144 ("InstallGroup", -1, prefix+r"\InstallPath\InstallGroup", "",
1145 "Python %s" % short_version, "REGISTRY"),
1146 ("PythonPath", -1, prefix+r"\PythonPath", "",
Martin v. Löwisf13337d2004-09-19 18:36:45 +00001147 r"[TARGETDIR]Lib;[TARGETDIR]DLLs;[TARGETDIR]Lib\lib-tk", "REGISTRY"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001148 ("Documentation", -1, prefix+r"\Help\Main Python Documentation", "",
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001149 r"[TARGETDIR]Doc\Python%s%s.chm" % (major, minor), "REGISTRY.doc"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001150 ("Modules", -1, prefix+r"\Modules", "+", None, "REGISTRY"),
1151 ("AppPaths", -1, r"Software\Microsoft\Windows\CurrentVersion\App Paths\Python.exe",
1152 "", r"[TARGETDIR]Python.exe", "REGISTRY.def")
1153 ])
1154 # Shortcuts, see "Shortcut Table"
1155 add_data(db, "Directory",
1156 [("ProgramMenuFolder", "TARGETDIR", "."),
1157 ("MenuDir", "ProgramMenuFolder", "PY%s%s|%sPython %s.%s" % (major,minor,testprefix,major,minor))])
1158 add_data(db, "RemoveFile",
1159 [("MenuDir", "TARGETDIR", None, "MenuDir", 2)])
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001160 tcltkshortcuts = []
1161 if have_tcl:
1162 tcltkshortcuts = [
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001163 ("IDLE", "MenuDir", "IDLE|IDLE (Python GUI)", "pythonw.exe",
Martin v. Löwisac191da2004-12-22 12:55:44 +00001164 tcltk.id, r'"[TARGETDIR]Lib\idlelib\idle.pyw"', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001165 ("PyDoc", "MenuDir", "MODDOCS|Module Docs", "pythonw.exe",
Martin v. Löwisac191da2004-12-22 12:55:44 +00001166 tcltk.id, r'"[TARGETDIR]Tools\scripts\pydocgui.pyw"', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001167 ]
1168 add_data(db, "Shortcut",
1169 tcltkshortcuts +
1170 [# Advertised shortcuts: targets are features, not files
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001171 ("Python", "MenuDir", "PYTHON|Python (command line)", "python.exe",
1172 default_feature.id, None, None, None, "python_icon.exe", 2, None, "TARGETDIR"),
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001173 # Advertising the Manual breaks on (some?) Win98, and the shortcut lacks an
1174 # icon first.
1175 #("Manual", "MenuDir", "MANUAL|Python Manuals", "documentation",
1176 # htmlfiles.id, None, None, None, None, None, None, None),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001177 ## Non-advertised shortcuts: must be associated with a registry component
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001178 ("Manual", "MenuDir", "MANUAL|Python Manuals", "REGISTRY.doc",
1179 "[#Python%s%s.chm]" % (major,minor), None,
1180 None, None, None, None, None, None),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001181 ("Uninstall", "MenuDir", "UNINST|Uninstall Python", "REGISTRY",
1182 SystemFolderName+"msiexec", "/x%s" % product_code,
1183 None, None, None, None, None, None),
1184 ])
1185 db.Commit()
1186
1187db = build_database()
1188try:
1189 add_features(db)
1190 add_ui(db)
1191 add_files(db)
1192 add_registry(db)
1193 remove_old_versions(db)
1194 db.Commit()
1195finally:
1196 del db