blob: 7eced6f8d6b5b885cd9a06668562a072ea171719 [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',
106 'zlib.pyd',
107 '_bsddb.pyd',
108 '_socket.pyd',
109 '_ssl.pyd',
110 '_testcapi.pyd',
111 '_tkinter.pyd',
112]
113
114if major+minor <= "23":
115 extensions.extend([
116 '_csv.pyd',
117 '_sre.pyd',
118 '_symtable.pyd',
119 '_winreg.pyd',
120 'datetime.pyd'
121 'mmap.pyd',
Tim Peters66cb0182004-08-26 05:23:19 +0000122 'parser.pyd',
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000123 ])
124
Martin v. Löwis9fda9312004-12-22 13:41:49 +0000125# Build the mingw import library, libpythonXY.a
126# This requires 'nm' and 'dlltool' executables on your PATH
127def build_mingw_lib(lib_file, def_file, dll_file, mingw_lib):
128 warning = "WARNING: %s - libpythonXX.a not built"
129 nm = find_executable('nm')
130 dlltool = find_executable('dlltool')
131
132 if not nm or not dlltool:
133 print warning % "nm and/or dlltool were not found"
134 return False
135
136 nm_command = '%s -Cs %s' % (nm, lib_file)
137 dlltool_command = "%s --dllname %s --def %s --output-lib %s" % \
138 (dlltool, dll_file, def_file, mingw_lib)
139 export_match = re.compile(r"^_imp__(.*) in python\d+\.dll").match
140
141 f = open(def_file,'w')
142 print >>f, "LIBRARY %s" % dll_file
143 print >>f, "EXPORTS"
144
145 nm_pipe = os.popen(nm_command)
146 for line in nm_pipe.readlines():
147 m = export_match(line)
148 if m:
149 print >>f, m.group(1)
150 f.close()
151 exit = nm_pipe.close()
152
153 if exit:
154 print warning % "nm did not run successfully"
155 return False
156
157 if os.system(dlltool_command) != 0:
158 print warning % "dlltool did not run successfully"
159 return False
160
161 return True
162
163# Target files (.def and .a) go in PCBuild directory
164lib_file = os.path.join(srcdir, "PCBuild", "python%s%s.lib" % (major, minor))
165def_file = os.path.join(srcdir, "PCBuild", "python%s%s.def" % (major, minor))
166dll_file = "python%s%s.dll" % (major, minor)
167mingw_lib = os.path.join(srcdir, "PCBuild", "libpython%s%s.a" % (major, minor))
168
169have_mingw = build_mingw_lib(lib_file, def_file, dll_file, mingw_lib)
170
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000171if testpackage:
172 ext = 'px'
173 testprefix = 'x'
174else:
175 ext = 'py'
176 testprefix = ''
177
178if msilib.Win64:
179 SystemFolderName = "[SystemFolder64]"
180else:
181 SystemFolderName = "[SystemFolder]"
182
183msilib.reset()
184
185# condition in which to install pythonxy.dll in system32:
186# a) it is Windows 9x or
187# b) it is NT, the user is privileged, and has chosen per-machine installation
188sys32cond = "(Windows9x or (Privileged and ALLUSERS))"
189
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000190def build_database():
191 """Generate an empty database, with just the schema and the
192 Summary information stream."""
193 if snapshot:
194 uc = upgrade_code_snapshot
195 else:
196 uc = upgrade_code
197 # schema represents the installer 2.0 database schema.
198 # sequence is the set of standard sequences
199 # (ui/execute, admin/advt/install)
200 if msilib.Win64:
201 w64 = ".ia64"
202 else:
203 w64 = ""
Tim Peters66cb0182004-08-26 05:23:19 +0000204 db = msilib.init_database("python-%s%s.msi" % (full_current_version, w64),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000205 schema, ProductName="Python "+full_current_version,
206 ProductCode=product_code,
207 ProductVersion=current_version,
208 Manufacturer=u"Martin v. L\xf6wis")
209 # The default sequencing of the RemoveExistingProducts action causes
210 # removal of files that got just installed. Place it after
211 # InstallInitialize, so we first uninstall everything, but still roll
212 # back in case the installation is interrupted
213 msilib.change_sequence(sequence.InstallExecuteSequence,
214 "RemoveExistingProducts", 1510)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000215 msilib.add_tables(db, sequence)
216 # We cannot set ALLUSERS in the property table, as this cannot be
217 # reset if the user choses a per-user installation. Instead, we
218 # maintain WhichUsers, which can be "ALL" or "JUSTME". The UI manages
219 # this property, and when the execution starts, ALLUSERS is set
220 # accordingly.
221 add_data(db, "Property", [("UpgradeCode", uc),
222 ("WhichUsers", "ALL"),
223 ])
224 db.Commit()
225 return db
226
227def remove_old_versions(db):
228 "Fill the upgrade table."
229 start = "%s.%s.0" % (major, minor)
230 # This requests that feature selection states of an older
231 # installation should be forwarded into this one. Upgrading
232 # requires that both the old and the new installation are
233 # either both per-machine or per-user.
234 migrate_features = 1
235 # See "Upgrade Table". We remove releases with the same major and
236 # minor version. For an snapshot, we remove all earlier snapshots. For
237 # a release, we remove all snapshots, and all earlier releases.
238 if snapshot:
239 add_data(db, "Upgrade",
Tim Peters66cb0182004-08-26 05:23:19 +0000240 [(upgrade_code_snapshot, start,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000241 current_version,
242 None, # Ignore language
Tim Peters66cb0182004-08-26 05:23:19 +0000243 migrate_features,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000244 None, # Migrate ALL features
245 "REMOVEOLDSNAPSHOT")])
246 props = "REMOVEOLDSNAPSHOT"
247 else:
248 add_data(db, "Upgrade",
249 [(upgrade_code, start, current_version,
250 None, migrate_features, None, "REMOVEOLDVERSION"),
251 (upgrade_code_snapshot, start, "%s.%d.0" % (major, int(minor)+1),
252 None, migrate_features, None, "REMOVEOLDSNAPSHOT")])
253 props = "REMOVEOLDSNAPSHOT;REMOVEOLDVERSION"
254 # Installer collects the product codes of the earlier releases in
255 # these properties. In order to allow modification of the properties,
256 # they must be declared as secure. See "SecureCustomProperties Property"
257 add_data(db, "Property", [("SecureCustomProperties", props)])
258
259class PyDialog(Dialog):
260 """Dialog class with a fixed layout: controls at the top, then a ruler,
261 then a list of buttons: back, next, cancel. Optionally a bitmap at the
262 left."""
263 def __init__(self, *args, **kw):
264 """Dialog(database, name, x, y, w, h, attributes, title, first,
265 default, cancel, bitmap=true)"""
266 Dialog.__init__(self, *args)
267 ruler = self.h - 36
268 bmwidth = 152*ruler/328
269 if kw.get("bitmap", True):
270 self.bitmap("Bitmap", 0, 0, bmwidth, ruler, "PythonWin")
271 self.line("BottomLine", 0, ruler, self.w, 0)
272
273 def title(self, title):
274 "Set the title text of the dialog at the top."
275 # name, x, y, w, h, flags=Visible|Enabled|Transparent|NoPrefix,
276 # text, in VerdanaBold10
277 self.text("Title", 135, 10, 220, 60, 0x30003,
278 r"{\VerdanaBold10}%s" % title)
279
280 def back(self, title, next, name = "Back", active = 1):
281 """Add a back button with a given title, the tab-next button,
282 its name in the Control table, possibly initially disabled.
283
284 Return the button, so that events can be associated"""
285 if active:
286 flags = 3 # Visible|Enabled
287 else:
288 flags = 1 # Visible
289 return self.pushbutton(name, 180, self.h-27 , 56, 17, flags, title, next)
290
291 def cancel(self, title, next, name = "Cancel", active = 1):
292 """Add a cancel button with a given title, the tab-next button,
293 its name in the Control table, possibly initially disabled.
294
295 Return the button, so that events can be associated"""
296 if active:
297 flags = 3 # Visible|Enabled
298 else:
299 flags = 1 # Visible
300 return self.pushbutton(name, 304, self.h-27, 56, 17, flags, title, next)
301
302 def next(self, title, next, name = "Next", active = 1):
303 """Add a Next button with a given title, the tab-next button,
304 its name in the Control table, possibly initially disabled.
305
306 Return the button, so that events can be associated"""
307 if active:
308 flags = 3 # Visible|Enabled
309 else:
310 flags = 1 # Visible
311 return self.pushbutton(name, 236, self.h-27, 56, 17, flags, title, next)
312
313 def xbutton(self, name, title, next, xpos):
314 """Add a button with a given title, the tab-next button,
315 its name in the Control table, giving its x position; the
316 y-position is aligned with the other buttons.
317
318 Return the button, so that events can be associated"""
319 return self.pushbutton(name, int(self.w*xpos - 28), self.h-27, 56, 17, 3, title, next)
320
321def add_ui(db):
322 x = y = 50
323 w = 370
324 h = 300
325 title = "[ProductName] Setup"
326
327 # see "Dialog Style Bits"
328 modal = 3 # visible | modal
329 modeless = 1 # visible
330 track_disk_space = 32
331
332 add_data(db, 'ActionText', uisample.ActionText)
333 add_data(db, 'UIText', uisample.UIText)
334
335 # Bitmaps
336 if not os.path.exists(srcdir+r"\PC\python_icon.exe"):
337 raise "Run icons.mak in PC directory"
338 add_data(db, "Binary",
339 [("PythonWin", msilib.Binary(srcdir+r"\PCbuild\installer.bmp")), # 152x328 pixels
340 ("py.ico",msilib.Binary(srcdir+r"\PC\py.ico")),
341 ])
342 add_data(db, "Icon",
343 [("python_icon.exe", msilib.Binary(srcdir+r"\PC\python_icon.exe"))])
344
345 # Scripts
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000346 # CheckDir sets TargetExists if TARGETDIR exists.
347 # UpdateEditIDLE sets the REGISTRY.tcl component into
348 # the installed/uninstalled state according to both the
349 # Extensions and TclTk features.
Martin v. Löwiseb68be42004-12-12 15:29:21 +0000350 if os.system("nmake /nologo /c /f msisupport.mak") != 0:
351 raise "'nmake /f msisupport.mak' failed"
352 add_data(db, "Binary", [("Script", msilib.Binary("msisupport.dll"))])
353 # See "Custom Action Type 1"
Martin v. Löwis3390d332005-03-14 17:20:13 +0000354 if msilib.Win64:
355 CheckDir = "CheckDir"
356 UpdateEditIdle = "UpdateEditIDLE"
357 else:
358 CheckDir = "_CheckDir@4"
359 UpdateEditIDLE = "_UpdateEditIDLE@4"
Tim Peters0e9980f2004-09-12 03:49:31 +0000360 add_data(db, "CustomAction",
Martin v. Löwis3390d332005-03-14 17:20:13 +0000361 [("CheckDir", 1, "Script", CheckDir)])
Martin v. Löwiseac02e62004-11-18 08:00:33 +0000362 if have_tcl:
363 add_data(db, "CustomAction",
Martin v. Löwis3390d332005-03-14 17:20:13 +0000364 [("UpdateEditIDLE", 1, "Script", UpdateEditIDLE)])
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000365
366 # UI customization properties
367 add_data(db, "Property",
368 # See "DefaultUIFont Property"
369 [("DefaultUIFont", "DlgFont8"),
370 # See "ErrorDialog Style Bit"
371 ("ErrorDialog", "ErrorDlg"),
372 ("Progress1", "Install"), # modified in maintenance type dlg
373 ("Progress2", "installs"),
374 ("MaintenanceForm_Action", "Repair")])
375
376 # Fonts, see "TextStyle Table"
377 add_data(db, "TextStyle",
378 [("DlgFont8", "Tahoma", 9, None, 0),
379 ("DlgFontBold8", "Tahoma", 8, None, 1), #bold
380 ("VerdanaBold10", "Verdana", 10, None, 1),
381 ])
382
Martin v. Löwis7b2563b2004-11-02 22:59:56 +0000383 compileargs = r"-Wi [TARGETDIR]Lib\compileall.py -f -x badsyntax [TARGETDIR]Lib"
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000384 # See "CustomAction Table"
385 add_data(db, "CustomAction", [
386 # msidbCustomActionTypeFirstSequence + msidbCustomActionTypeTextData + msidbCustomActionTypeProperty
387 # See "Custom Action Type 51",
388 # "Custom Action Execution Scheduling Options"
389 ("InitialTargetDir", 307, "TARGETDIR",
390 "[WindowsVolume]Python%s%s" % (major, minor)),
391 ("SetDLLDirToTarget", 307, "DLLDIR", "[TARGETDIR]"),
392 ("SetDLLDirToSystem32", 307, "DLLDIR", SystemFolderName),
393 # msidbCustomActionTypeExe + msidbCustomActionTypeSourceFile
394 # See "Custom Action Type 18"
Martin v. Löwis7b2563b2004-11-02 22:59:56 +0000395 ("CompilePyc", 18, "python.exe", compileargs),
396 ("CompilePyo", 18, "python.exe", "-O "+compileargs),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000397 ])
398
399 # UI Sequences, see "InstallUISequence Table", "Using a Sequence Table"
400 # Numbers indicate sequence; see sequence.py for how these action integrate
401 add_data(db, "InstallUISequence",
402 [("PrepareDlg", "Not Privileged or Windows9x or Installed", 140),
403 ("WhichUsersDlg", "Privileged and not Windows9x and not Installed", 141),
404 ("InitialTargetDir", 'TARGETDIR=""', 750),
405 # In the user interface, assume all-users installation if privileged.
406 ("SetDLLDirToSystem32", 'DLLDIR="" and ' + sys32cond, 751),
407 ("SetDLLDirToTarget", 'DLLDIR="" and not ' + sys32cond, 752),
408 ("SelectDirectoryDlg", "Not Installed", 1230),
409 # XXX no support for resume installations yet
410 #("ResumeDlg", "Installed AND (RESUME OR Preselected)", 1240),
411 ("MaintenanceTypeDlg", "Installed AND NOT RESUME AND NOT Preselected", 1250),
412 ("ProgressDlg", None, 1280)])
413 add_data(db, "AdminUISequence",
414 [("InitialTargetDir", 'TARGETDIR=""', 750),
415 ("SetDLLDirToTarget", 'DLLDIR=""', 751),
416 ])
417
418 # Execute Sequences
419 add_data(db, "InstallExecuteSequence",
420 [("InitialTargetDir", 'TARGETDIR=""', 750),
421 ("SetDLLDirToSystem32", 'DLLDIR="" and ' + sys32cond, 751),
422 ("SetDLLDirToTarget", 'DLLDIR="" and not ' + sys32cond, 752),
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000423 ("UpdateEditIDLE", None, 1050),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000424 ("CompilePyc", "COMPILEALL", 6800),
425 ("CompilePyo", "COMPILEALL", 6801),
426 ])
427 add_data(db, "AdminExecuteSequence",
428 [("InitialTargetDir", 'TARGETDIR=""', 750),
429 ("SetDLLDirToTarget", 'DLLDIR=""', 751),
430 ("CompilePyc", "COMPILEALL", 6800),
431 ("CompilePyo", "COMPILEALL", 6801),
432 ])
433
434 #####################################################################
435 # Standard dialogs: FatalError, UserExit, ExitDialog
436 fatal=PyDialog(db, "FatalError", x, y, w, h, modal, title,
437 "Finish", "Finish", "Finish")
438 fatal.title("[ProductName] Installer ended prematurely")
439 fatal.back("< Back", "Finish", active = 0)
440 fatal.cancel("Cancel", "Back", active = 0)
441 fatal.text("Description1", 135, 70, 220, 80, 0x30003,
442 "[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.")
443 fatal.text("Description2", 135, 155, 220, 20, 0x30003,
444 "Click the Finish button to exit the Installer.")
445 c=fatal.next("Finish", "Cancel", name="Finish")
446 # See "ControlEvent Table". Parameters are the event, the parameter
447 # to the action, and optionally the condition for the event, and the order
448 # of events.
449 c.event("EndDialog", "Exit")
Tim Peters66cb0182004-08-26 05:23:19 +0000450
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000451 user_exit=PyDialog(db, "UserExit", x, y, w, h, modal, title,
452 "Finish", "Finish", "Finish")
453 user_exit.title("[ProductName] Installer was interrupted")
454 user_exit.back("< Back", "Finish", active = 0)
455 user_exit.cancel("Cancel", "Back", active = 0)
456 user_exit.text("Description1", 135, 70, 220, 80, 0x30003,
457 "[ProductName] setup was interrupted. Your system has not been modified. "
458 "To install this program at a later time, please run the installation again.")
459 user_exit.text("Description2", 135, 155, 220, 20, 0x30003,
460 "Click the Finish button to exit the Installer.")
461 c = user_exit.next("Finish", "Cancel", name="Finish")
462 c.event("EndDialog", "Exit")
Tim Peters66cb0182004-08-26 05:23:19 +0000463
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000464 exit_dialog = PyDialog(db, "ExitDialog", x, y, w, h, modal, title,
465 "Finish", "Finish", "Finish")
466 exit_dialog.title("Completing the [ProductName] Installer")
467 exit_dialog.back("< Back", "Finish", active = 0)
468 exit_dialog.cancel("Cancel", "Back", active = 0)
Martin v. Löwis2dd2a282004-08-22 17:10:12 +0000469 exit_dialog.text("Acknowledgements", 135, 95, 220, 120, 0x30003,
470 "Special Windows thanks to:\n"
Martin v. Löwisd3f61a22004-08-30 09:22:30 +0000471 " LettError, Erik van Blokland, for the \n"
472 " Python for Windows graphic.\n"
Martin v. Löwis2dd2a282004-08-22 17:10:12 +0000473 " http://www.letterror.com/\n"
474 "\n"
Martin v. Löwisd3f61a22004-08-30 09:22:30 +0000475 " Mark Hammond, without whose years of freely \n"
476 " shared Windows expertise, Python for Windows \n"
477 " would still be Python for DOS.")
Tim Peters66cb0182004-08-26 05:23:19 +0000478
Martin v. Löwis2dd2a282004-08-22 17:10:12 +0000479 exit_dialog.text("Description", 135, 235, 220, 20, 0x30003,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000480 "Click the Finish button to exit the Installer.")
481 c = exit_dialog.next("Finish", "Cancel", name="Finish")
482 c.event("EndDialog", "Return")
483
484 #####################################################################
485 # Required dialog: FilesInUse, ErrorDlg
486 inuse = PyDialog(db, "FilesInUse",
487 x, y, w, h,
488 19, # KeepModeless|Modal|Visible
489 title,
490 "Retry", "Retry", "Retry", bitmap=False)
491 inuse.text("Title", 15, 6, 200, 15, 0x30003,
492 r"{\DlgFontBold8}Files in Use")
493 inuse.text("Description", 20, 23, 280, 20, 0x30003,
494 "Some files that need to be updated are currently in use.")
495 inuse.text("Text", 20, 55, 330, 50, 3,
496 "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.")
497 inuse.control("List", "ListBox", 20, 107, 330, 130, 7, "FileInUseProcess",
498 None, None, None)
499 c=inuse.back("Exit", "Ignore", name="Exit")
500 c.event("EndDialog", "Exit")
501 c=inuse.next("Ignore", "Retry", name="Ignore")
502 c.event("EndDialog", "Ignore")
503 c=inuse.cancel("Retry", "Exit", name="Retry")
504 c.event("EndDialog","Retry")
505
506
507 # See "Error Dialog". See "ICE20" for the required names of the controls.
508 error = Dialog(db, "ErrorDlg",
509 50, 10, 330, 101,
510 65543, # Error|Minimize|Modal|Visible
511 title,
512 "ErrorText", None, None)
513 error.text("ErrorText", 50,9,280,48,3, "")
514 error.control("ErrorIcon", "Icon", 15, 9, 24, 24, 5242881, None, "py.ico", None, None)
515 error.pushbutton("N",120,72,81,21,3,"No",None).event("EndDialog","ErrorNo")
516 error.pushbutton("Y",240,72,81,21,3,"Yes",None).event("EndDialog","ErrorYes")
517 error.pushbutton("A",0,72,81,21,3,"Abort",None).event("EndDialog","ErrorAbort")
518 error.pushbutton("C",42,72,81,21,3,"Cancel",None).event("EndDialog","ErrorCancel")
519 error.pushbutton("I",81,72,81,21,3,"Ignore",None).event("EndDialog","ErrorIgnore")
520 error.pushbutton("O",159,72,81,21,3,"Ok",None).event("EndDialog","ErrorOk")
521 error.pushbutton("R",198,72,81,21,3,"Retry",None).event("EndDialog","ErrorRetry")
522
523 #####################################################################
524 # Global "Query Cancel" dialog
525 cancel = Dialog(db, "CancelDlg", 50, 10, 260, 85, 3, title,
526 "No", "No", "No")
Tim Peters66cb0182004-08-26 05:23:19 +0000527 cancel.text("Text", 48, 15, 194, 30, 3,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000528 "Are you sure you want to cancel [ProductName] installation?")
529 cancel.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
530 "py.ico", None, None)
531 c=cancel.pushbutton("Yes", 72, 57, 56, 17, 3, "Yes", "No")
532 c.event("EndDialog", "Exit")
Tim Peters66cb0182004-08-26 05:23:19 +0000533
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000534 c=cancel.pushbutton("No", 132, 57, 56, 17, 3, "No", "Yes")
535 c.event("EndDialog", "Return")
536
537 #####################################################################
538 # Global "Wait for costing" dialog
539 costing = Dialog(db, "WaitForCostingDlg", 50, 10, 260, 85, modal, title,
540 "Return", "Return", "Return")
541 costing.text("Text", 48, 15, 194, 30, 3,
542 "Please wait while the installer finishes determining your disk space requirements.")
543 costing.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
544 "py.ico", None, None)
545 c = costing.pushbutton("Return", 102, 57, 56, 17, 3, "Return", None)
546 c.event("EndDialog", "Exit")
547
548 #####################################################################
549 # Preparation dialog: no user input except cancellation
550 prep = PyDialog(db, "PrepareDlg", x, y, w, h, modeless, title,
551 "Cancel", "Cancel", "Cancel")
552 prep.text("Description", 135, 70, 220, 40, 0x30003,
553 "Please wait while the Installer prepares to guide you through the installation.")
554 prep.title("Welcome to the [ProductName] Installer")
555 c=prep.text("ActionText", 135, 110, 220, 20, 0x30003, "Pondering...")
556 c.mapping("ActionText", "Text")
557 c=prep.text("ActionData", 135, 135, 220, 30, 0x30003, None)
558 c.mapping("ActionData", "Text")
559 prep.back("Back", None, active=0)
560 prep.next("Next", None, active=0)
561 c=prep.cancel("Cancel", None)
562 c.event("SpawnDialog", "CancelDlg")
563
564 #####################################################################
565 # Target directory selection
566 seldlg = PyDialog(db, "SelectDirectoryDlg", x, y, w, h, modal, title,
567 "Next", "Next", "Cancel")
568 seldlg.title("Select Destination Directory")
569 seldlg.text("Description", 135, 50, 220, 40, 0x30003,
570 "Please select a directory for the [ProductName] files.")
571
572 seldlg.back("< Back", None, active=0)
573 c = seldlg.next("Next >", "Cancel")
574 c.event("DoAction", "CheckDir", "TargetExistsOk<>1", order=1)
575 # If the target exists, but we found that we are going to remove old versions, don't bother
576 # confirming that the target directory exists. Strictly speaking, we should determine that
577 # the target directory is indeed the target of the product that we are going to remove, but
578 # I don't know how to do that.
579 c.event("SpawnDialog", "ExistingDirectoryDlg", 'TargetExists=1 and REMOVEOLDVERSION="" and REMOVEOLDSNAPSHOT=""', 2)
580 c.event("SetTargetPath", "TARGETDIR", 'TargetExists=0 or REMOVEOLDVERSION<>"" or REMOVEOLDSNAPSHOT<>""', 3)
581 c.event("SpawnWaitDialog", "WaitForCostingDlg", "CostingComplete=1", 4)
582 c.event("NewDialog", "SelectFeaturesDlg", 'TargetExists=0 or REMOVEOLDVERSION<>"" or REMOVEOLDSNAPSHOT<>""', 5)
583
584 c = seldlg.cancel("Cancel", "DirectoryCombo")
585 c.event("SpawnDialog", "CancelDlg")
586
587 seldlg.control("DirectoryCombo", "DirectoryCombo", 135, 70, 172, 80, 393219,
588 "TARGETDIR", None, "DirectoryList", None)
589 seldlg.control("DirectoryList", "DirectoryList", 135, 90, 208, 136, 3, "TARGETDIR",
590 None, "PathEdit", None)
591 seldlg.control("PathEdit", "PathEdit", 135, 230, 206, 16, 3, "TARGETDIR", None, "Next", None)
592 c = seldlg.pushbutton("Up", 306, 70, 18, 18, 3, "Up", None)
593 c.event("DirectoryListUp", "0")
594 c = seldlg.pushbutton("NewDir", 324, 70, 30, 18, 3, "New", None)
595 c.event("DirectoryListNew", "0")
596
597 #####################################################################
598 # SelectFeaturesDlg
599 features = PyDialog(db, "SelectFeaturesDlg", x, y, w, h, modal|track_disk_space,
600 title, "Tree", "Next", "Cancel")
601 features.title("Customize [ProductName]")
602 features.text("Description", 135, 35, 220, 15, 0x30003,
603 "Select the way you want features to be installed.")
604 features.text("Text", 135,45,220,30, 3,
605 "Click on the icons in the tree below to change the way features will be installed.")
606
607 c=features.back("< Back", "Next")
608 c.event("NewDialog", "SelectDirectoryDlg")
609
610 c=features.next("Next >", "Cancel")
611 c.mapping("SelectionNoItems", "Enabled")
612 c.event("SpawnDialog", "DiskCostDlg", "OutOfDiskSpace=1", order=1)
613 c.event("EndDialog", "Return", "OutOfDiskSpace<>1", order=2)
614
615 c=features.cancel("Cancel", "Tree")
616 c.event("SpawnDialog", "CancelDlg")
617
Tim Peters66cb0182004-08-26 05:23:19 +0000618 # 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 +0000619 features.control("Tree", "SelectionTree", 135, 75, 220, 95, 7, "_BrowseProperty",
620 "Tree of selections", "Back", None)
621
622 #c=features.pushbutton("Reset", 42, 243, 56, 17, 3, "Reset", "DiskCost")
623 #c.mapping("SelectionNoItems", "Enabled")
624 #c.event("Reset", "0")
Tim Peters66cb0182004-08-26 05:23:19 +0000625
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000626 features.control("Box", "GroupBox", 135, 170, 225, 90, 1, None, None, None, None)
627
628 c=features.xbutton("DiskCost", "Disk &Usage", None, 0.10)
629 c.mapping("SelectionNoItems","Enabled")
630 c.event("SpawnDialog", "DiskCostDlg")
631
632 c=features.xbutton("Advanced", "Advanced", None, 0.30)
633 c.event("SpawnDialog", "AdvancedDlg")
634
635 c=features.text("ItemDescription", 140, 180, 210, 30, 3,
636 "Multiline description of the currently selected item.")
637 c.mapping("SelectionDescription","Text")
Tim Peters66cb0182004-08-26 05:23:19 +0000638
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000639 c=features.text("ItemSize", 140, 210, 210, 45, 3,
640 "The size of the currently selected item.")
641 c.mapping("SelectionSize", "Text")
642
643 #####################################################################
644 # Disk cost
645 cost = PyDialog(db, "DiskCostDlg", x, y, w, h, modal, title,
646 "OK", "OK", "OK", bitmap=False)
647 cost.text("Title", 15, 6, 200, 15, 0x30003,
648 "{\DlgFontBold8}Disk Space Requirements")
649 cost.text("Description", 20, 20, 280, 20, 0x30003,
650 "The disk space required for the installation of the selected features.")
651 cost.text("Text", 20, 53, 330, 60, 3,
652 "The highlighted volumes (if any) do not have enough disk space "
653 "available for the currently selected features. You can either "
654 "remove some files from the highlighted volumes, or choose to "
655 "install less features onto local drive(s), or select different "
656 "destination drive(s).")
657 cost.control("VolumeList", "VolumeCostList", 20, 100, 330, 150, 393223,
658 None, "{120}{70}{70}{70}{70}", None, None)
659 cost.xbutton("OK", "Ok", None, 0.5).event("EndDialog", "Return")
660
661 #####################################################################
662 # WhichUsers Dialog. Only available on NT, and for privileged users.
663 # This must be run before FindRelatedProducts, because that will
664 # take into account whether the previous installation was per-user
665 # or per-machine. We currently don't support going back to this
666 # dialog after "Next" was selected; to support this, we would need to
667 # find how to reset the ALLUSERS property, and how to re-run
668 # FindRelatedProducts.
669 # On Windows9x, the ALLUSERS property is ignored on the command line
670 # and in the Property table, but installer fails according to the documentation
671 # if a dialog attempts to set ALLUSERS.
672 whichusers = PyDialog(db, "WhichUsersDlg", x, y, w, h, modal, title,
673 "AdminInstall", "Next", "Cancel")
674 whichusers.title("Select whether to install [ProductName] for all users of this computer.")
675 # A radio group with two options: allusers, justme
676 g = whichusers.radiogroup("AdminInstall", 135, 60, 160, 50, 3,
677 "WhichUsers", "", "Next")
678 g.add("ALL", 0, 5, 150, 20, "Install for all users")
679 g.add("JUSTME", 0, 25, 150, 20, "Install just for me")
680
Tim Peters66cb0182004-08-26 05:23:19 +0000681 whichusers.back("Back", None, active=0)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000682
683 c = whichusers.next("Next >", "Cancel")
684 c.event("[ALLUSERS]", "1", 'WhichUsers="ALL"', 1)
685 c.event("EndDialog", "Return", order = 2)
686
687 c = whichusers.cancel("Cancel", "AdminInstall")
688 c.event("SpawnDialog", "CancelDlg")
Tim Peters66cb0182004-08-26 05:23:19 +0000689
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000690 #####################################################################
691 # Advanced Dialog.
692 advanced = PyDialog(db, "AdvancedDlg", x, y, w, h, modal, title,
693 "CompilePyc", "Next", "Cancel")
694 advanced.title("Advanced Options for [ProductName]")
695 # A radio group with two options: allusers, justme
696 advanced.checkbox("CompilePyc", 135, 60, 230, 50, 3,
697 "COMPILEALL", "Compile .py files to byte code after installation", "Next")
698
699 c = advanced.next("Finish", "Cancel")
700 c.event("EndDialog", "Return")
701
702 c = advanced.cancel("Cancel", "CompilePyc")
703 c.event("SpawnDialog", "CancelDlg")
Tim Peters66cb0182004-08-26 05:23:19 +0000704
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000705 #####################################################################
Tim Peters66cb0182004-08-26 05:23:19 +0000706 # Existing Directory dialog
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000707 dlg = Dialog(db, "ExistingDirectoryDlg", 50, 30, 200, 80, modal, title,
708 "No", "No", "No")
709 dlg.text("Title", 10, 20, 180, 40, 3,
710 "[TARGETDIR] exists. Are you sure you want to overwrite existing files?")
711 c=dlg.pushbutton("Yes", 30, 60, 55, 17, 3, "Yes", "No")
712 c.event("[TargetExists]", "0", order=1)
713 c.event("[TargetExistsOk]", "1", order=2)
714 c.event("EndDialog", "Return", order=3)
715 c=dlg.pushbutton("No", 115, 60, 55, 17, 3, "No", "Yes")
716 c.event("EndDialog", "Return")
717
718 #####################################################################
719 # Installation Progress dialog (modeless)
720 progress = PyDialog(db, "ProgressDlg", x, y, w, h, modeless, title,
721 "Cancel", "Cancel", "Cancel", bitmap=False)
722 progress.text("Title", 20, 15, 200, 15, 0x30003,
723 "{\DlgFontBold8}[Progress1] [ProductName]")
724 progress.text("Text", 35, 65, 300, 30, 3,
725 "Please wait while the Installer [Progress2] [ProductName]. "
726 "This may take several minutes.")
727 progress.text("StatusLabel", 35, 100, 35, 20, 3, "Status:")
728
729 c=progress.text("ActionText", 70, 100, w-70, 20, 3, "Pondering...")
730 c.mapping("ActionText", "Text")
731
732 #c=progress.text("ActionData", 35, 140, 300, 20, 3, None)
733 #c.mapping("ActionData", "Text")
734
735 c=progress.control("ProgressBar", "ProgressBar", 35, 120, 300, 10, 65537,
736 None, "Progress done", None, None)
737 c.mapping("SetProgress", "Progress")
738
739 progress.back("< Back", "Next", active=False)
740 progress.next("Next >", "Cancel", active=False)
741 progress.cancel("Cancel", "Back").event("SpawnDialog", "CancelDlg")
742
743 # Maintenance type: repair/uninstall
744 maint = PyDialog(db, "MaintenanceTypeDlg", x, y, w, h, modal, title,
745 "Next", "Next", "Cancel")
746 maint.title("Welcome to the [ProductName] Setup Wizard")
747 maint.text("BodyText", 135, 63, 230, 42, 3,
748 "Select whether you want to repair or remove [ProductName].")
749 g=maint.radiogroup("RepairRadioGroup", 135, 108, 230, 60, 3,
750 "MaintenanceForm_Action", "", "Next")
751 g.add("Change", 0, 0, 200, 17, "&Change [ProductName]")
752 g.add("Repair", 0, 18, 200, 17, "&Repair [ProductName]")
753 g.add("Remove", 0, 36, 200, 17, "Re&move [ProductName]")
Tim Peters66cb0182004-08-26 05:23:19 +0000754
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000755 maint.back("< Back", None, active=False)
756 c=maint.next("Finish", "Cancel")
757 # Change installation: Change progress dialog to "Change", then ask
758 # for feature selection
759 c.event("[Progress1]", "Change", 'MaintenanceForm_Action="Change"', 1)
760 c.event("[Progress2]", "changes", 'MaintenanceForm_Action="Change"', 2)
761
762 # Reinstall: Change progress dialog to "Repair", then invoke reinstall
763 # Also set list of reinstalled features to "ALL"
764 c.event("[REINSTALL]", "ALL", 'MaintenanceForm_Action="Repair"', 5)
765 c.event("[Progress1]", "Repairing", 'MaintenanceForm_Action="Repair"', 6)
Raymond Hettinger72f08012004-11-07 07:08:25 +0000766 c.event("[Progress2]", "repairs", 'MaintenanceForm_Action="Repair"', 7)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000767 c.event("Reinstall", "ALL", 'MaintenanceForm_Action="Repair"', 8)
768
769 # Uninstall: Change progress to "Remove", then invoke uninstall
770 # Also set list of removed features to "ALL"
771 c.event("[REMOVE]", "ALL", 'MaintenanceForm_Action="Remove"', 11)
772 c.event("[Progress1]", "Removing", 'MaintenanceForm_Action="Remove"', 12)
773 c.event("[Progress2]", "removes", 'MaintenanceForm_Action="Remove"', 13)
774 c.event("Remove", "ALL", 'MaintenanceForm_Action="Remove"', 14)
775
Tim Peters66cb0182004-08-26 05:23:19 +0000776 # Close dialog when maintenance action scheduled
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000777 c.event("EndDialog", "Return", 'MaintenanceForm_Action<>"Change"', 20)
778 c.event("NewDialog", "SelectFeaturesDlg", 'MaintenanceForm_Action="Change"', 21)
Tim Peters66cb0182004-08-26 05:23:19 +0000779
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000780 maint.cancel("Cancel", "RepairRadioGroup").event("SpawnDialog", "CancelDlg")
Tim Peters66cb0182004-08-26 05:23:19 +0000781
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000782
783# See "Feature Table". The feature level is 1 for all features,
784# and the feature attributes are 0 for the DefaultFeature, and
785# FollowParent for all other features. The numbers are the Display
786# column.
787def add_features(db):
788 # feature attributes:
789 # msidbFeatureAttributesFollowParent == 2
790 # msidbFeatureAttributesDisallowAdvertise == 8
791 # Features that need to be installed with together with the main feature
792 # (i.e. additional Python libraries) need to follow the parent feature.
793 # Features that have no advertisement trigger (e.g. the test suite)
794 # must not support advertisement
795 global default_feature, tcltk, htmlfiles, tools, testsuite, ext_feature
796 default_feature = Feature(db, "DefaultFeature", "Python",
797 "Python Interpreter and Libraries",
798 1, directory = "TARGETDIR")
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000799 # We don't support advertisement of extensions
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000800 ext_feature = Feature(db, "Extensions", "Register Extensions",
801 "Make this Python installation the default Python installation", 3,
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000802 parent = default_feature, attributes=2|8)
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000803 if have_tcl:
804 tcltk = Feature(db, "TclTk", "Tcl/Tk", "Tkinter, IDLE, pydoc", 5,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000805 parent = default_feature, attributes=2)
806 htmlfiles = Feature(db, "Documentation", "Documentation",
807 "Python HTMLHelp File", 7, parent = default_feature)
808 tools = Feature(db, "Tools", "Utility Scripts",
Tim Peters66cb0182004-08-26 05:23:19 +0000809 "Python utility scripts (Tools/", 9,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000810 parent = default_feature, attributes=2)
811 testsuite = Feature(db, "Testsuite", "Test suite",
812 "Python test suite (Lib/test/)", 11,
813 parent = default_feature, attributes=2|8)
Tim Peters66cb0182004-08-26 05:23:19 +0000814
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000815def extract_msvcr71():
816 import _winreg
817 # Find the location of the merge modules
818 k = _winreg.OpenKey(
819 _winreg.HKEY_LOCAL_MACHINE,
820 r"Software\Microsoft\VisualStudio\7.1\Setup\VS")
821 dir = _winreg.QueryValueEx(k, "MSMDir")[0]
822 _winreg.CloseKey(k)
823 files = glob.glob1(dir, "*CRT71*")
824 assert len(files) == 1
825 file = os.path.join(dir, files[0])
826 # Extract msvcr71.dll
827 m = msilib.MakeMerge2()
828 m.OpenModule(file, 0)
829 m.ExtractFiles(".")
830 m.CloseModule()
831 # Find the version/language of msvcr71.dll
832 installer = msilib.MakeInstaller()
833 return installer.FileVersion("msvcr71.dll", 0), \
834 installer.FileVersion("msvcr71.dll", 1)
835
836class PyDirectory(Directory):
837 """By default, all components in the Python installer
838 can run from source."""
839 def __init__(self, *args, **kw):
840 if not kw.has_key("componentflags"):
841 kw['componentflags'] = 2 #msidbComponentAttributesOptional
842 Directory.__init__(self, *args, **kw)
843
844# See "File Table", "Component Table", "Directory Table",
845# "FeatureComponents Table"
846def add_files(db):
847 cab = CAB("python")
848 tmpfiles = []
849 # Add all executables, icons, text files into the TARGETDIR component
850 root = PyDirectory(db, cab, None, srcdir, "TARGETDIR", "SourceDir")
851 default_feature.set_current()
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000852 if not msilib.Win64:
853 root.add_file("PCBuild/w9xpopen.exe")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000854 root.add_file("PC/py.ico")
855 root.add_file("PC/pyc.ico")
856 root.add_file("README.txt", src="README")
857 root.add_file("NEWS.txt", src="Misc/NEWS")
858 root.add_file("LICENSE.txt", src="LICENSE")
859 root.start_component("python.exe", keyfile="python.exe")
860 root.add_file("PCBuild/python.exe")
861 root.start_component("pythonw.exe", keyfile="pythonw.exe")
862 root.add_file("PCBuild/pythonw.exe")
863
864 # msidbComponentAttributesSharedDllRefCount = 8, see "Component Table"
865 dlldir = PyDirectory(db, cab, root, srcdir, "DLLDIR", ".")
866 pydll = "python%s%s.dll" % (major, minor)
867 pydllsrc = srcdir + "/PCBuild/" + pydll
868 dlldir.start_component("DLLDIR", flags = 8, keyfile = pydll)
869 installer = msilib.MakeInstaller()
870 pyversion = installer.FileVersion(pydllsrc, 0)
871 if not snapshot:
872 # For releases, the Python DLL has the same version as the
873 # installer package.
874 assert pyversion.split(".")[:3] == current_version.split(".")
875 dlldir.add_file("PCBuild/python%s%s.dll" % (major, minor),
876 version=pyversion,
877 language=installer.FileVersion(pydllsrc, 1))
878 # XXX determine dependencies
879 version, lang = extract_msvcr71()
880 dlldir.start_component("msvcr71", flags=8, keyfile="msvcr71.dll")
881 dlldir.add_file("msvcr71.dll", src=os.path.abspath("msvcr71.dll"),
882 version=version, language=lang)
883 tmpfiles.append("msvcr71.dll")
Tim Peters66cb0182004-08-26 05:23:19 +0000884
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000885 # Add all .py files in Lib, except lib-tk, test
886 dirs={}
887 pydirs = [(root,"Lib")]
888 while pydirs:
889 parent, dir = pydirs.pop()
890 if dir == "CVS" or dir.startswith("plat-"):
891 continue
892 elif dir in ["lib-tk", "idlelib", "Icons"]:
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000893 if not have_tcl:
894 continue
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000895 tcltk.set_current()
Martin v. Löwis5c9e55e2004-12-30 14:08:18 +0000896 elif dir in ['test', 'tests', 'data', 'output']:
897 # test: Lib, Lib/email, Lib/bsddb
898 # tests: Lib/distutils
899 # data: Lib/email/test
900 # output: Lib/test
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000901 testsuite.set_current()
902 else:
903 default_feature.set_current()
904 lib = PyDirectory(db, cab, parent, dir, dir, "%s|%s" % (parent.make_short(dir), dir))
905 # Add additional files
906 dirs[dir]=lib
907 lib.glob("*.txt")
908 if dir=='site-packages':
Martin v. Löwis6d60c092004-11-21 10:16:26 +0000909 lib.add_file("README.txt", src="README")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000910 continue
911 files = lib.glob("*.py")
912 files += lib.glob("*.pyw")
913 if files:
914 # Add an entry to the RemoveFile table to remove bytecode files.
915 lib.remove_pyc()
916 if dir=='test' and parent.physical=='Lib':
917 lib.add_file("185test.db")
918 lib.add_file("audiotest.au")
919 lib.add_file("cfgparser.1")
920 lib.add_file("test.xml")
921 lib.add_file("test.xml.out")
922 lib.add_file("testtar.tar")
Martin v. Löwis7d3755d2004-09-06 06:31:12 +0000923 lib.add_file("test_difflib_expect.html")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000924 lib.glob("*.uue")
925 lib.add_file("readme.txt", src="README")
926 if dir=='decimaltestdata':
927 lib.glob("*.decTest")
928 if dir=='output':
929 lib.glob("test_*")
930 if dir=='idlelib':
931 lib.glob("*.def")
932 lib.add_file("idle.bat")
933 if dir=="Icons":
934 lib.glob("*.gif")
935 lib.add_file("idle.icns")
936 if dir=="command":
937 lib.add_file("wininst-6.exe")
938 lib.add_file("wininst-7.1.exe")
939 if dir=="data" and parent.physical=="test" and parent.basedir.physical=="email":
940 # This should contain all non-CVS files listed in CVS
941 for f in os.listdir(lib.absolute):
942 if f.endswith(".txt") or f=="CVS":continue
943 if f.endswith(".au") or f.endswith(".gif"):
944 lib.add_file(f)
945 else:
946 print "WARNING: New file %s in email/test/data" % f
947 for f in os.listdir(lib.absolute):
948 if os.path.isdir(os.path.join(lib.absolute, f)):
949 pydirs.append((lib, f))
950 # Add DLLs
951 default_feature.set_current()
952 lib = PyDirectory(db, cab, root, srcdir+"/PCBuild", "DLLs", "DLLS|DLLs")
953 dlls = []
954 tclfiles = []
955 for f in extensions:
956 if f=="_tkinter.pyd":
957 continue
958 if not os.path.exists(srcdir+"/PCBuild/"+f):
959 print "WARNING: Missing extension", f
960 continue
961 dlls.append(f)
962 lib.add_file(f)
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000963 if have_tcl:
964 if not os.path.exists(srcdir+"/PCBuild/_tkinter.pyd"):
965 print "WARNING: Missing _tkinter.pyd"
966 else:
967 lib.start_component("TkDLLs", tcltk)
968 lib.add_file("_tkinter.pyd")
969 dlls.append("_tkinter.pyd")
970 tcldir = os.path.normpath(srcdir+"/../tcltk/bin")
971 for f in glob.glob1(tcldir, "*.dll"):
972 lib.add_file(f, src=os.path.join(tcldir, f))
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000973 # check whether there are any unknown extensions
974 for f in glob.glob1(srcdir+"/PCBuild", "*.pyd"):
975 if f.endswith("_d.pyd"): continue # debug version
976 if f in dlls: continue
977 print "WARNING: Unknown extension", f
Tim Peters66cb0182004-08-26 05:23:19 +0000978
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000979 # Add headers
980 default_feature.set_current()
981 lib = PyDirectory(db, cab, root, "include", "include", "INCLUDE|include")
982 lib.glob("*.h")
983 lib.add_file("pyconfig.h", src="../PC/pyconfig.h")
984 # Add import libraries
985 lib = PyDirectory(db, cab, root, "PCBuild", "libs", "LIBS|libs")
986 for f in dlls:
987 lib.add_file(f.replace('pyd','lib'))
988 lib.add_file('python%s%s.lib' % (major, minor))
Martin v. Löwis9fda9312004-12-22 13:41:49 +0000989 # Add the mingw-format library
990 if have_mingw:
Tim Peters5a9fb3c2005-01-07 16:01:32 +0000991 lib.add_file('libpython%s%s.a' % (major, minor))
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000992 if have_tcl:
993 # Add Tcl/Tk
994 tcldirs = [(root, '../tcltk/lib', 'tcl')]
995 tcltk.set_current()
996 while tcldirs:
997 parent, phys, dir = tcldirs.pop()
998 lib = PyDirectory(db, cab, parent, phys, dir, "%s|%s" % (parent.make_short(dir), dir))
999 if not os.path.exists(lib.absolute):
1000 continue
1001 for f in os.listdir(lib.absolute):
1002 if os.path.isdir(os.path.join(lib.absolute, f)):
1003 tcldirs.append((lib, f, f))
1004 else:
1005 lib.add_file(f)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001006 # Add tools
1007 tools.set_current()
1008 tooldir = PyDirectory(db, cab, root, "Tools", "Tools", "TOOLS|Tools")
1009 for f in ['i18n', 'pynche', 'Scripts', 'versioncheck', 'webchecker']:
1010 lib = PyDirectory(db, cab, tooldir, f, f, "%s|%s" % (tooldir.make_short(f), f))
1011 lib.glob("*.py")
1012 lib.glob("*.pyw", exclude=['pydocgui.pyw'])
1013 lib.remove_pyc()
1014 lib.glob("*.txt")
1015 if f == "pynche":
1016 x = PyDirectory(db, cab, lib, "X", "X", "X|X")
1017 x.glob("*.txt")
Martin v. Löwis4d930be2004-12-01 21:46:35 +00001018 if os.path.exists(os.path.join(lib.absolute, "README")):
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001019 lib.add_file("README.txt", src="README")
Martin v. Löwis4d930be2004-12-01 21:46:35 +00001020 if f == 'Scripts':
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001021 if have_tcl:
1022 lib.start_component("pydocgui.pyw", tcltk, keyfile="pydocgui.pyw")
1023 lib.add_file("pydocgui.pyw")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001024 # Add documentation
1025 htmlfiles.set_current()
1026 lib = PyDirectory(db, cab, root, "Doc", "Doc", "DOC|Doc")
1027 lib.start_component("documentation", keyfile="Python%s%s.chm" % (major,minor))
1028 lib.add_file("Python%s%s.chm" % (major, minor))
1029
1030 cab.commit(db)
1031
1032 for f in tmpfiles:
1033 os.unlink(f)
1034
1035# See "Registry Table", "Component Table"
1036def add_registry(db):
1037 # File extensions, associated with the REGISTRY.def component
1038 # IDLE verbs depend on the tcltk feature.
1039 # msidbComponentAttributesRegistryKeyPath = 4
1040 # -1 for Root specifies "dependent on ALLUSERS property"
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001041 tcldata = []
1042 if have_tcl:
1043 tcldata = [
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001044 ("REGISTRY.tcl", msilib.gen_uuid(), "TARGETDIR", 4, None,
1045 "py.IDLE")]
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001046 add_data(db, "Component",
1047 # msidbComponentAttributesRegistryKeyPath = 4
1048 [("REGISTRY", msilib.gen_uuid(), "TARGETDIR", 4, None,
1049 "InstallPath"),
1050 ("REGISTRY.def", msilib.gen_uuid(), "TARGETDIR", 4,
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001051 None, None)] + tcldata)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001052 # See "FeatureComponents Table".
1053 # The association between TclTk and pythonw.exe is necessary to make ICE59
1054 # happy, because the installer otherwise believes that the IDLE and PyDoc
1055 # shortcuts might get installed without pythonw.exe being install. This
1056 # is not true, since installing TclTk will install the default feature, which
1057 # will cause pythonw.exe to be installed.
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001058 # REGISTRY.tcl is not associated with any feature, as it will be requested
1059 # through a custom action
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001060 tcldata = []
1061 if have_tcl:
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001062 tcldata = [(tcltk.id, "pythonw.exe")]
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001063 add_data(db, "FeatureComponents",
1064 [(default_feature.id, "REGISTRY"),
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001065 (ext_feature.id, "REGISTRY.def")] +
1066 tcldata
1067 )
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001068 # Extensions are not advertised. For advertised extensions,
1069 # we would need separate binaries that install along with the
1070 # extension.
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001071 pat = r"Software\Classes\%sPython.%sFile\shell\%s\command"
1072 ewi = "Edit with IDLE"
1073 pat2 = r"Software\Classes\%sPython.%sFile\DefaultIcon"
1074 pat3 = r"Software\Classes\%sPython.%sFile"
Martin v. Löwiseac02e62004-11-18 08:00:33 +00001075 tcl_verbs = []
1076 if have_tcl:
1077 tcl_verbs=[
1078 ("py.IDLE", -1, pat % (testprefix, "", ewi), "",
1079 r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"',
1080 "REGISTRY.tcl"),
1081 ("pyw.IDLE", -1, pat % (testprefix, "NoCon", ewi), "",
1082 r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"',
1083 "REGISTRY.tcl"),
1084 ]
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001085 add_data(db, "Registry",
1086 [# Extensions
1087 ("py.ext", -1, r"Software\Classes\."+ext, "",
1088 "Python.File", "REGISTRY.def"),
1089 ("pyw.ext", -1, r"Software\Classes\."+ext+'w', "",
1090 "Python.NoConFile", "REGISTRY.def"),
1091 ("pyc.ext", -1, r"Software\Classes\."+ext+'c', "",
1092 "Python.CompiledFile", "REGISTRY.def"),
1093 ("pyo.ext", -1, r"Software\Classes\."+ext+'o', "",
1094 "Python.CompiledFile", "REGISTRY.def"),
1095 # MIME types
1096 ("py.mime", -1, r"Software\Classes\."+ext, "Content Type",
1097 "text/plain", "REGISTRY.def"),
1098 ("pyw.mime", -1, r"Software\Classes\."+ext+'w', "Content Type",
1099 "text/plain", "REGISTRY.def"),
1100 #Verbs
1101 ("py.open", -1, pat % (testprefix, "", "open"), "",
1102 r'"[TARGETDIR]python.exe" "%1" %*', "REGISTRY.def"),
1103 ("pyw.open", -1, pat % (testprefix, "NoCon", "open"), "",
1104 r'"[TARGETDIR]pythonw.exe" "%1" %*', "REGISTRY.def"),
1105 ("pyc.open", -1, pat % (testprefix, "Compiled", "open"), "",
1106 r'"[TARGETDIR]python.exe" "%1" %*', "REGISTRY.def"),
Martin v. Löwiseac02e62004-11-18 08:00:33 +00001107 ] + tcl_verbs + [
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001108 #Icons
1109 ("py.icon", -1, pat2 % (testprefix, ""), "",
1110 r'[TARGETDIR]py.ico', "REGISTRY.def"),
1111 ("pyw.icon", -1, pat2 % (testprefix, "NoCon"), "",
1112 r'[TARGETDIR]py.ico', "REGISTRY.def"),
1113 ("pyc.icon", -1, pat2 % (testprefix, "Compiled"), "",
1114 r'[TARGETDIR]pyc.ico', "REGISTRY.def"),
1115 # Descriptions
1116 ("py.txt", -1, pat3 % (testprefix, ""), "",
1117 "Python File", "REGISTRY.def"),
1118 ("pyw.txt", -1, pat3 % (testprefix, "NoCon"), "",
1119 "Python File (no console)", "REGISTRY.def"),
1120 ("pyc.txt", -1, pat3 % (testprefix, "Compiled"), "",
1121 "Compiled Python File", "REGISTRY.def"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001122 ])
Tim Peters66cb0182004-08-26 05:23:19 +00001123
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001124 # Registry keys
1125 prefix = r"Software\%sPython\PythonCore\%s" % (testprefix, short_version)
1126 add_data(db, "Registry",
1127 [("InstallPath", -1, prefix+r"\InstallPath", "", "[TARGETDIR]", "REGISTRY"),
1128 ("InstallGroup", -1, prefix+r"\InstallPath\InstallGroup", "",
1129 "Python %s" % short_version, "REGISTRY"),
1130 ("PythonPath", -1, prefix+r"\PythonPath", "",
Martin v. Löwisf13337d2004-09-19 18:36:45 +00001131 r"[TARGETDIR]Lib;[TARGETDIR]DLLs;[TARGETDIR]Lib\lib-tk", "REGISTRY"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001132 ("Documentation", -1, prefix+r"\Help\Main Python Documentation", "",
1133 r"[TARGETDIR]Doc\Python%s%s.chm" % (major, minor), "REGISTRY"),
1134 ("Modules", -1, prefix+r"\Modules", "+", None, "REGISTRY"),
1135 ("AppPaths", -1, r"Software\Microsoft\Windows\CurrentVersion\App Paths\Python.exe",
1136 "", r"[TARGETDIR]Python.exe", "REGISTRY.def")
1137 ])
1138 # Shortcuts, see "Shortcut Table"
1139 add_data(db, "Directory",
1140 [("ProgramMenuFolder", "TARGETDIR", "."),
1141 ("MenuDir", "ProgramMenuFolder", "PY%s%s|%sPython %s.%s" % (major,minor,testprefix,major,minor))])
1142 add_data(db, "RemoveFile",
1143 [("MenuDir", "TARGETDIR", None, "MenuDir", 2)])
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001144 tcltkshortcuts = []
1145 if have_tcl:
1146 tcltkshortcuts = [
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001147 ("IDLE", "MenuDir", "IDLE|IDLE (Python GUI)", "pythonw.exe",
Martin v. Löwisac191da2004-12-22 12:55:44 +00001148 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 +00001149 ("PyDoc", "MenuDir", "MODDOCS|Module Docs", "pythonw.exe",
Martin v. Löwisac191da2004-12-22 12:55:44 +00001150 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 +00001151 ]
1152 add_data(db, "Shortcut",
1153 tcltkshortcuts +
1154 [# Advertised shortcuts: targets are features, not files
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001155 ("Python", "MenuDir", "PYTHON|Python (command line)", "python.exe",
1156 default_feature.id, None, None, None, "python_icon.exe", 2, None, "TARGETDIR"),
1157 ("Manual", "MenuDir", "MANUAL|Python Manuals", "documentation",
1158 htmlfiles.id, None, None, None, None, None, None, None),
1159 ## Non-advertised shortcuts: must be associated with a registry component
1160 ("Uninstall", "MenuDir", "UNINST|Uninstall Python", "REGISTRY",
1161 SystemFolderName+"msiexec", "/x%s" % product_code,
1162 None, None, None, None, None, None),
1163 ])
1164 db.Commit()
1165
1166db = build_database()
1167try:
1168 add_features(db)
1169 add_ui(db)
1170 add_files(db)
1171 add_registry(db)
1172 remove_old_versions(db)
1173 db.Commit()
1174finally:
1175 del db