python-msilib 0.4.2__cp314-cp314-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- msilib/__init__.py +778 -0
- msilib/_msi.c +1260 -0
- msilib/_msi.cp314-win32.pyd +0 -0
- msilib/include/_msi.h +701 -0
- msilib/include/pythoncapi_compat.h +2666 -0
- msilib/schema.py +5762 -0
- msilib/sequence.py +137 -0
- msilib/text.py +296 -0
- python_msilib-0.4.2.dist-info/METADATA +94 -0
- python_msilib-0.4.2.dist-info/RECORD +13 -0
- python_msilib-0.4.2.dist-info/WHEEL +5 -0
- python_msilib-0.4.2.dist-info/licenses/LICENSE +43 -0
- python_msilib-0.4.2.dist-info/top_level.txt +1 -0
msilib/sequence.py
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
"""Table contents for the standard sequence tables:
|
|
2
|
+
AdminExecuteSequence, AdminUISequence, AdvtExecuteSequence,
|
|
3
|
+
InstallExecuteSequence, and InstallUISequence.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
AdminExecuteSequence = [
|
|
7
|
+
("InstallInitialize", None, 1500),
|
|
8
|
+
("InstallFinalize", None, 6600),
|
|
9
|
+
("InstallFiles", None, 4000),
|
|
10
|
+
("InstallAdminPackage", None, 3900),
|
|
11
|
+
("FileCost", None, 900),
|
|
12
|
+
("CostInitialize", None, 800),
|
|
13
|
+
("CostFinalize", None, 1000),
|
|
14
|
+
("InstallValidate", None, 1400),
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
AdminUISequence = [
|
|
18
|
+
("FileCost", None, 900),
|
|
19
|
+
("CostInitialize", None, 800),
|
|
20
|
+
("CostFinalize", None, 1000),
|
|
21
|
+
("ExecuteAction", None, 1300),
|
|
22
|
+
("ExitDialog", None, -1),
|
|
23
|
+
("FatalError", None, -3),
|
|
24
|
+
("UserExit", None, -2),
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
AdvtExecuteSequence = [
|
|
28
|
+
("InstallInitialize", None, 1500),
|
|
29
|
+
("InstallFinalize", None, 6600),
|
|
30
|
+
("CostInitialize", None, 800),
|
|
31
|
+
("CostFinalize", None, 1000),
|
|
32
|
+
("InstallValidate", None, 1400),
|
|
33
|
+
("CreateShortcuts", None, 4500),
|
|
34
|
+
("MsiPublishAssemblies", None, 6250),
|
|
35
|
+
("PublishComponents", None, 6200),
|
|
36
|
+
("PublishFeatures", None, 6300),
|
|
37
|
+
("PublishProduct", None, 6400),
|
|
38
|
+
("RegisterClassInfo", None, 4600),
|
|
39
|
+
("RegisterExtensionInfo", None, 4700),
|
|
40
|
+
("RegisterMIMEInfo", None, 4900),
|
|
41
|
+
("RegisterProgIdInfo", None, 4800),
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
InstallExecuteSequence = [
|
|
45
|
+
("InstallInitialize", None, 1500),
|
|
46
|
+
("InstallFinalize", None, 6600),
|
|
47
|
+
("InstallFiles", None, 4000),
|
|
48
|
+
("FileCost", None, 900),
|
|
49
|
+
("CostInitialize", None, 800),
|
|
50
|
+
("CostFinalize", None, 1000),
|
|
51
|
+
("InstallValidate", None, 1400),
|
|
52
|
+
("CreateShortcuts", None, 4500),
|
|
53
|
+
("MsiPublishAssemblies", None, 6250),
|
|
54
|
+
("PublishComponents", None, 6200),
|
|
55
|
+
("PublishFeatures", None, 6300),
|
|
56
|
+
("PublishProduct", None, 6400),
|
|
57
|
+
("RegisterClassInfo", None, 4600),
|
|
58
|
+
("RegisterExtensionInfo", None, 4700),
|
|
59
|
+
("RegisterMIMEInfo", None, 4900),
|
|
60
|
+
("RegisterProgIdInfo", None, 4800),
|
|
61
|
+
("AllocateRegistrySpace", "NOT Installed", 1550),
|
|
62
|
+
("AppSearch", None, 400),
|
|
63
|
+
("BindImage", None, 4300),
|
|
64
|
+
("CCPSearch", "NOT Installed", 500),
|
|
65
|
+
("CreateFolders", None, 3700),
|
|
66
|
+
("DeleteServices", "VersionNT", 2000),
|
|
67
|
+
("DuplicateFiles", None, 4210),
|
|
68
|
+
("FindRelatedProducts", None, 200),
|
|
69
|
+
("InstallODBC", None, 5400),
|
|
70
|
+
("InstallServices", "VersionNT", 5800),
|
|
71
|
+
("IsolateComponents", None, 950),
|
|
72
|
+
("LaunchConditions", None, 100),
|
|
73
|
+
("MigrateFeatureStates", None, 1200),
|
|
74
|
+
("MoveFiles", None, 3800),
|
|
75
|
+
("PatchFiles", None, 4090),
|
|
76
|
+
("ProcessComponents", None, 1600),
|
|
77
|
+
("RegisterComPlus", None, 5700),
|
|
78
|
+
("RegisterFonts", None, 5300),
|
|
79
|
+
("RegisterProduct", None, 6100),
|
|
80
|
+
("RegisterTypeLibraries", None, 5500),
|
|
81
|
+
("RegisterUser", None, 6000),
|
|
82
|
+
("RemoveDuplicateFiles", None, 3400),
|
|
83
|
+
("RemoveEnvironmentStrings", None, 3300),
|
|
84
|
+
("RemoveExistingProducts", None, 6700),
|
|
85
|
+
("RemoveFiles", None, 3500),
|
|
86
|
+
("RemoveFolders", None, 3600),
|
|
87
|
+
("RemoveIniValues", None, 3100),
|
|
88
|
+
("RemoveODBC", None, 2400),
|
|
89
|
+
("RemoveRegistryValues", None, 2600),
|
|
90
|
+
("RemoveShortcuts", None, 3200),
|
|
91
|
+
("RMCCPSearch", "NOT Installed", 600),
|
|
92
|
+
("SelfRegModules", None, 5600),
|
|
93
|
+
("SelfUnregModules", None, 2200),
|
|
94
|
+
("SetODBCFolders", None, 1100),
|
|
95
|
+
("StartServices", "VersionNT", 5900),
|
|
96
|
+
("StopServices", "VersionNT", 1900),
|
|
97
|
+
("MsiUnpublishAssemblies", None, 1750),
|
|
98
|
+
("UnpublishComponents", None, 1700),
|
|
99
|
+
("UnpublishFeatures", None, 1800),
|
|
100
|
+
("UnregisterClassInfo", None, 2700),
|
|
101
|
+
("UnregisterComPlus", None, 2100),
|
|
102
|
+
("UnregisterExtensionInfo", None, 2800),
|
|
103
|
+
("UnregisterFonts", None, 2500),
|
|
104
|
+
("UnregisterMIMEInfo", None, 3000),
|
|
105
|
+
("UnregisterProgIdInfo", None, 2900),
|
|
106
|
+
("UnregisterTypeLibraries", None, 2300),
|
|
107
|
+
("ValidateProductID", None, 700),
|
|
108
|
+
("WriteEnvironmentStrings", None, 5200),
|
|
109
|
+
("WriteIniValues", None, 5100),
|
|
110
|
+
("WriteRegistryValues", None, 5000),
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
InstallUISequence = [
|
|
114
|
+
("FileCost", None, 900),
|
|
115
|
+
("CostInitialize", None, 800),
|
|
116
|
+
("CostFinalize", None, 1000),
|
|
117
|
+
("ExecuteAction", None, 1300),
|
|
118
|
+
("ExitDialog", None, -1),
|
|
119
|
+
("FatalError", None, -3),
|
|
120
|
+
("UserExit", None, -2),
|
|
121
|
+
("AppSearch", None, 400),
|
|
122
|
+
("CCPSearch", "NOT Installed", 500),
|
|
123
|
+
("FindRelatedProducts", None, 200),
|
|
124
|
+
("IsolateComponents", None, 950),
|
|
125
|
+
("LaunchConditions", None, 100),
|
|
126
|
+
("MigrateFeatureStates", None, 1200),
|
|
127
|
+
("RMCCPSearch", "NOT Installed", 600),
|
|
128
|
+
("ValidateProductID", None, 700),
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
tables = [
|
|
132
|
+
"AdminExecuteSequence",
|
|
133
|
+
"AdminUISequence",
|
|
134
|
+
"AdvtExecuteSequence",
|
|
135
|
+
"InstallExecuteSequence",
|
|
136
|
+
"InstallUISequence",
|
|
137
|
+
]
|
msilib/text.py
ADDED
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
"""Definitions for the UIText and ActionText tables, for the standard installer
|
|
2
|
+
actions.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
import os
|
|
6
|
+
|
|
7
|
+
dirname = os.path.dirname(__file__)
|
|
8
|
+
|
|
9
|
+
ActionText = [
|
|
10
|
+
("InstallValidate", "Validating install", None),
|
|
11
|
+
(
|
|
12
|
+
"InstallFiles",
|
|
13
|
+
"Copying new files",
|
|
14
|
+
"File: [1], Directory: [9], Size: [6]",
|
|
15
|
+
),
|
|
16
|
+
(
|
|
17
|
+
"InstallAdminPackage",
|
|
18
|
+
"Copying network install files",
|
|
19
|
+
"File: [1], Directory: [9], Size: [6]",
|
|
20
|
+
),
|
|
21
|
+
("FileCost", "Computing space requirements", None),
|
|
22
|
+
("CostInitialize", "Computing space requirements", None),
|
|
23
|
+
("CostFinalize", "Computing space requirements", None),
|
|
24
|
+
("CreateShortcuts", "Creating shortcuts", "Shortcut: [1]"),
|
|
25
|
+
(
|
|
26
|
+
"PublishComponents",
|
|
27
|
+
"Publishing Qualified Components",
|
|
28
|
+
"Component ID: [1], Qualifier: [2]",
|
|
29
|
+
),
|
|
30
|
+
("PublishFeatures", "Publishing Product Features", "Feature: [1]"),
|
|
31
|
+
("PublishProduct", "Publishing product information", None),
|
|
32
|
+
("RegisterClassInfo", "Registering Class servers", "Class Id: [1]"),
|
|
33
|
+
(
|
|
34
|
+
"RegisterExtensionInfo",
|
|
35
|
+
"Registering extension servers",
|
|
36
|
+
"Extension: [1]",
|
|
37
|
+
),
|
|
38
|
+
(
|
|
39
|
+
"RegisterMIMEInfo",
|
|
40
|
+
"Registering MIME info",
|
|
41
|
+
"MIME Content Type: [1], Extension: [2]",
|
|
42
|
+
),
|
|
43
|
+
("RegisterProgIdInfo", "Registering program identifiers", "ProgId: [1]"),
|
|
44
|
+
("AllocateRegistrySpace", "Allocating registry space", "Free space: [1]"),
|
|
45
|
+
(
|
|
46
|
+
"AppSearch",
|
|
47
|
+
"Searching for installed applications",
|
|
48
|
+
"Property: [1], Signature: [2]",
|
|
49
|
+
),
|
|
50
|
+
("BindImage", "Binding executables", "File: [1]"),
|
|
51
|
+
("CCPSearch", "Searching for qualifying products", None),
|
|
52
|
+
("CreateFolders", "Creating folders", "Folder: [1]"),
|
|
53
|
+
("DeleteServices", "Deleting services", "Service: [1]"),
|
|
54
|
+
(
|
|
55
|
+
"DuplicateFiles",
|
|
56
|
+
"Creating duplicate files",
|
|
57
|
+
"File: [1], Directory: [9], Size: [6]",
|
|
58
|
+
),
|
|
59
|
+
(
|
|
60
|
+
"FindRelatedProducts",
|
|
61
|
+
"Searching for related applications",
|
|
62
|
+
"Found application: [1]",
|
|
63
|
+
),
|
|
64
|
+
("InstallODBC", "Installing ODBC components", None),
|
|
65
|
+
("InstallServices", "Installing new services", "Service: [2]"),
|
|
66
|
+
("LaunchConditions", "Evaluating launch conditions", None),
|
|
67
|
+
(
|
|
68
|
+
"MigrateFeatureStates",
|
|
69
|
+
"Migrating feature states from related applications",
|
|
70
|
+
"Application: [1]",
|
|
71
|
+
),
|
|
72
|
+
("MoveFiles", "Moving files", "File: [1], Directory: [9], Size: [6]"),
|
|
73
|
+
("PatchFiles", "Patching files", "File: [1], Directory: [2], Size: [3]"),
|
|
74
|
+
("ProcessComponents", "Updating component registration", None),
|
|
75
|
+
(
|
|
76
|
+
"RegisterComPlus",
|
|
77
|
+
"Registering COM+ Applications and Components",
|
|
78
|
+
"AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}",
|
|
79
|
+
),
|
|
80
|
+
("RegisterFonts", "Registering fonts", "Font: [1]"),
|
|
81
|
+
("RegisterProduct", "Registering product", "[1]"),
|
|
82
|
+
("RegisterTypeLibraries", "Registering type libraries", "LibID: [1]"),
|
|
83
|
+
("RegisterUser", "Registering user", "[1]"),
|
|
84
|
+
(
|
|
85
|
+
"RemoveDuplicateFiles",
|
|
86
|
+
"Removing duplicated files",
|
|
87
|
+
"File: [1], Directory: [9]",
|
|
88
|
+
),
|
|
89
|
+
(
|
|
90
|
+
"RemoveEnvironmentStrings",
|
|
91
|
+
"Updating environment strings",
|
|
92
|
+
"Name: [1], Value: [2], Action [3]",
|
|
93
|
+
),
|
|
94
|
+
(
|
|
95
|
+
"RemoveExistingProducts",
|
|
96
|
+
"Removing applications",
|
|
97
|
+
"Application: [1], Command line: [2]",
|
|
98
|
+
),
|
|
99
|
+
("RemoveFiles", "Removing files", "File: [1], Directory: [9]"),
|
|
100
|
+
("RemoveFolders", "Removing folders", "Folder: [1]"),
|
|
101
|
+
(
|
|
102
|
+
"RemoveIniValues",
|
|
103
|
+
"Removing INI files entries",
|
|
104
|
+
"File: [1], Section: [2], Key: [3], Value: [4]",
|
|
105
|
+
),
|
|
106
|
+
("RemoveODBC", "Removing ODBC components", None),
|
|
107
|
+
(
|
|
108
|
+
"RemoveRegistryValues",
|
|
109
|
+
"Removing system registry values",
|
|
110
|
+
"Key: [1], Name: [2]",
|
|
111
|
+
),
|
|
112
|
+
("RemoveShortcuts", "Removing shortcuts", "Shortcut: [1]"),
|
|
113
|
+
("RMCCPSearch", "Searching for qualifying products", None),
|
|
114
|
+
("SelfRegModules", "Registering modules", "File: [1], Folder: [2]"),
|
|
115
|
+
("SelfUnregModules", "Unregistering modules", "File: [1], Folder: [2]"),
|
|
116
|
+
("SetODBCFolders", "Initializing ODBC directories", None),
|
|
117
|
+
("StartServices", "Starting services", "Service: [1]"),
|
|
118
|
+
("StopServices", "Stopping services", "Service: [1]"),
|
|
119
|
+
(
|
|
120
|
+
"UnpublishComponents",
|
|
121
|
+
"Unpublishing Qualified Components",
|
|
122
|
+
"Component ID: [1], Qualifier: [2]",
|
|
123
|
+
),
|
|
124
|
+
("UnpublishFeatures", "Unpublishing Product Features", "Feature: [1]"),
|
|
125
|
+
("UnregisterClassInfo", "Unregister Class servers", "Class Id: [1]"),
|
|
126
|
+
(
|
|
127
|
+
"UnregisterComPlus",
|
|
128
|
+
"Unregistering COM+ Applications and Components",
|
|
129
|
+
"AppId: [1]{{, AppType: [2]}}",
|
|
130
|
+
),
|
|
131
|
+
(
|
|
132
|
+
"UnregisterExtensionInfo",
|
|
133
|
+
"Unregistering extension servers",
|
|
134
|
+
"Extension: [1]",
|
|
135
|
+
),
|
|
136
|
+
("UnregisterFonts", "Unregistering fonts", "Font: [1]"),
|
|
137
|
+
(
|
|
138
|
+
"UnregisterMIMEInfo",
|
|
139
|
+
"Unregistering MIME info",
|
|
140
|
+
"MIME Content Type: [1], Extension: [2]",
|
|
141
|
+
),
|
|
142
|
+
(
|
|
143
|
+
"UnregisterProgIdInfo",
|
|
144
|
+
"Unregistering program identifiers",
|
|
145
|
+
"ProgId: [1]",
|
|
146
|
+
),
|
|
147
|
+
("UnregisterTypeLibraries", "Unregistering type libraries", "LibID: [1]"),
|
|
148
|
+
(
|
|
149
|
+
"WriteEnvironmentStrings",
|
|
150
|
+
"Updating environment strings",
|
|
151
|
+
"Name: [1], Value: [2], Action [3]",
|
|
152
|
+
),
|
|
153
|
+
(
|
|
154
|
+
"WriteIniValues",
|
|
155
|
+
"Writing INI files values",
|
|
156
|
+
"File: [1], Section: [2], Key: [3], Value: [4]",
|
|
157
|
+
),
|
|
158
|
+
(
|
|
159
|
+
"WriteRegistryValues",
|
|
160
|
+
"Writing system registry values",
|
|
161
|
+
"Key: [1], Name: [2], Value: [3]",
|
|
162
|
+
),
|
|
163
|
+
("Advertise", "Advertising application", None),
|
|
164
|
+
("GenerateScript", "Generating script operations for action:", "[1]"),
|
|
165
|
+
(
|
|
166
|
+
"InstallSFPCatalogFile",
|
|
167
|
+
"Installing system catalog",
|
|
168
|
+
"File: [1], Dependencies: [2]",
|
|
169
|
+
),
|
|
170
|
+
(
|
|
171
|
+
"MsiPublishAssemblies",
|
|
172
|
+
"Publishing assembly information",
|
|
173
|
+
"Application Context:[1], Assembly Name:[2]",
|
|
174
|
+
),
|
|
175
|
+
(
|
|
176
|
+
"MsiUnpublishAssemblies",
|
|
177
|
+
"Unpublishing assembly information",
|
|
178
|
+
"Application Context:[1], Assembly Name:[2]",
|
|
179
|
+
),
|
|
180
|
+
("Rollback", "Rolling back action:", "[1]"),
|
|
181
|
+
("RollbackCleanup", "Removing backup files", "File: [1]"),
|
|
182
|
+
("UnmoveFiles", "Removing moved files", "File: [1], Directory: [9]"),
|
|
183
|
+
("UnpublishProduct", "Unpublishing product information", None),
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
UIText = [
|
|
187
|
+
("AbsentPath", None),
|
|
188
|
+
("bytes", "bytes"),
|
|
189
|
+
("GB", "GB"),
|
|
190
|
+
("KB", "KB"),
|
|
191
|
+
("MB", "MB"),
|
|
192
|
+
("MenuAbsent", "Entire feature will be unavailable"),
|
|
193
|
+
("MenuAdvertise", "Feature will be installed when required"),
|
|
194
|
+
("MenuAllCD", "Entire feature will be installed to run from CD"),
|
|
195
|
+
("MenuAllLocal", "Entire feature will be installed on local hard drive"),
|
|
196
|
+
("MenuAllNetwork", "Entire feature will be installed to run from network"),
|
|
197
|
+
("MenuCD", "Will be installed to run from CD"),
|
|
198
|
+
("MenuLocal", "Will be installed on local hard drive"),
|
|
199
|
+
("MenuNetwork", "Will be installed to run from network"),
|
|
200
|
+
("ScriptInProgress", "Gathering required information..."),
|
|
201
|
+
("SelAbsentAbsent", "This feature will remain uninstalled"),
|
|
202
|
+
(
|
|
203
|
+
"SelAbsentAdvertise",
|
|
204
|
+
"This feature will be set to be installed when required",
|
|
205
|
+
),
|
|
206
|
+
("SelAbsentCD", "This feature will be installed to run from CD"),
|
|
207
|
+
(
|
|
208
|
+
"SelAbsentLocal",
|
|
209
|
+
"This feature will be installed on the local hard drive",
|
|
210
|
+
),
|
|
211
|
+
(
|
|
212
|
+
"SelAbsentNetwork",
|
|
213
|
+
"This feature will be installed to run from the network",
|
|
214
|
+
),
|
|
215
|
+
("SelAdvertiseAbsent", "This feature will become unavailable"),
|
|
216
|
+
("SelAdvertiseAdvertise", "Will be installed when required"),
|
|
217
|
+
("SelAdvertiseCD", "This feature will be available to run from CD"),
|
|
218
|
+
(
|
|
219
|
+
"SelAdvertiseLocal",
|
|
220
|
+
"This feature will be installed on your local hard drive",
|
|
221
|
+
),
|
|
222
|
+
(
|
|
223
|
+
"SelAdvertiseNetwork",
|
|
224
|
+
"This feature will be available to run from the network",
|
|
225
|
+
),
|
|
226
|
+
(
|
|
227
|
+
"SelCDAbsent",
|
|
228
|
+
"This feature will be uninstalled completely, you won't be able to run it from CD",
|
|
229
|
+
),
|
|
230
|
+
(
|
|
231
|
+
"SelCDAdvertise",
|
|
232
|
+
"This feature will change from run from CD state to set to be installed when required",
|
|
233
|
+
),
|
|
234
|
+
("SelCDCD", "This feature will remain to be run from CD"),
|
|
235
|
+
(
|
|
236
|
+
"SelCDLocal",
|
|
237
|
+
"This feature will change from run from CD state to be installed on the local hard drive",
|
|
238
|
+
),
|
|
239
|
+
("SelChildCostNeg", "This feature frees up [1] on your hard drive."),
|
|
240
|
+
("SelChildCostPos", "This feature requires [1] on your hard drive."),
|
|
241
|
+
("SelCostPending", "Compiling cost for this feature..."),
|
|
242
|
+
("SelLocalAbsent", "This feature will be completely removed"),
|
|
243
|
+
(
|
|
244
|
+
"SelLocalAdvertise",
|
|
245
|
+
"This feature will be removed from your local hard drive, but will be set to be installed when required",
|
|
246
|
+
),
|
|
247
|
+
(
|
|
248
|
+
"SelLocalCD",
|
|
249
|
+
"This feature will be removed from your local hard drive, but will be still available to run from CD",
|
|
250
|
+
),
|
|
251
|
+
("SelLocalLocal", "This feature will remain on you local hard drive"),
|
|
252
|
+
(
|
|
253
|
+
"SelLocalNetwork",
|
|
254
|
+
"This feature will be removed from your local hard drive, but will be still available to run from the network",
|
|
255
|
+
),
|
|
256
|
+
(
|
|
257
|
+
"SelNetworkAbsent",
|
|
258
|
+
"This feature will be uninstalled completely, you won't be able to run it from the network",
|
|
259
|
+
),
|
|
260
|
+
(
|
|
261
|
+
"SelNetworkAdvertise",
|
|
262
|
+
"This feature will change from run from network state to set to be installed when required",
|
|
263
|
+
),
|
|
264
|
+
(
|
|
265
|
+
"SelNetworkLocal",
|
|
266
|
+
"This feature will change from run from network state to be installed on the local hard drive",
|
|
267
|
+
),
|
|
268
|
+
(
|
|
269
|
+
"SelNetworkNetwork",
|
|
270
|
+
"This feature will remain to be run from the network",
|
|
271
|
+
),
|
|
272
|
+
(
|
|
273
|
+
"SelParentCostNegNeg",
|
|
274
|
+
"This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.",
|
|
275
|
+
),
|
|
276
|
+
(
|
|
277
|
+
"SelParentCostNegPos",
|
|
278
|
+
"This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.",
|
|
279
|
+
),
|
|
280
|
+
(
|
|
281
|
+
"SelParentCostPosNeg",
|
|
282
|
+
"This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.",
|
|
283
|
+
),
|
|
284
|
+
(
|
|
285
|
+
"SelParentCostPosPos",
|
|
286
|
+
"This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.",
|
|
287
|
+
),
|
|
288
|
+
("TimeRemaining", "Time remaining: {[1] minutes }{[2] seconds}"),
|
|
289
|
+
("VolumeCostAvailable", "Available"),
|
|
290
|
+
("VolumeCostDifference", "Difference"),
|
|
291
|
+
("VolumeCostRequired", "Required"),
|
|
292
|
+
("VolumeCostSize", "Disk Size"),
|
|
293
|
+
("VolumeCostVolume", "Volume"),
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
tables = ["ActionText", "UIText"]
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: python-msilib
|
|
3
|
+
Version: 0.4.2
|
|
4
|
+
Summary: Read and write Microsoft Installer files
|
|
5
|
+
Author: Martin v. Löwis
|
|
6
|
+
Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>
|
|
7
|
+
License-Expression: PSF-2.0
|
|
8
|
+
Project-URL: Source, https://github.com/marcelotduarte/python-msilib
|
|
9
|
+
Project-URL: Changelog, https://github.com/marcelotduarte/python-msilib/releases
|
|
10
|
+
Project-URL: Documentation, https://docs.python.org/3.12/library/msilib.html
|
|
11
|
+
Keywords: msilib
|
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Natural Language :: English
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: C
|
|
17
|
+
Classifier: Programming Language :: Python
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
22
|
+
Classifier: Programming Language :: Python :: Free Threading :: 2 - Beta
|
|
23
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
24
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
|
+
Classifier: Topic :: System :: Software Distribution
|
|
26
|
+
Classifier: Topic :: Utilities
|
|
27
|
+
Requires-Python: >=3.13
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Provides-Extra: dev
|
|
31
|
+
Requires-Dist: bump-my-version==1.2.3; extra == "dev"
|
|
32
|
+
Requires-Dist: cibuildwheel==3.2.1; extra == "dev"
|
|
33
|
+
Requires-Dist: pre-commit==4.4.0; extra == "dev"
|
|
34
|
+
Provides-Extra: tests
|
|
35
|
+
Requires-Dist: coverage==7.11.3; extra == "tests"
|
|
36
|
+
Requires-Dist: pytest==9.0.0; extra == "tests"
|
|
37
|
+
Dynamic: license-file
|
|
38
|
+
|
|
39
|
+
# python-msilib
|
|
40
|
+
|
|
41
|
+
Read and write Microsoft Installer files.
|
|
42
|
+
|
|
43
|
+
This library is legacy code borrowed from Python 3.12, intended to allow
|
|
44
|
+
cx_Freeze's `bdist_msi` command to continue working in Python 3.13 and 3.14.
|
|
45
|
+
|
|
46
|
+
[](https://pypi.org/project/python-msilib/)
|
|
47
|
+
[](https://pypistats.org/packages/python-msilib)
|
|
48
|
+
[](https://anaconda.org/conda-forge/python-msilib)
|
|
49
|
+
[](https://anaconda.org/conda-forge/python-msilib)
|
|
50
|
+
[](https://www.python.org/)
|
|
51
|
+
[](https://htmlpreview.github.io/?https://github.com/marcelotduarte/python-msilib/blob/python-coverage-comment-action-data/htmlcov/index.html)
|
|
52
|
+
[](https://github.com/astral-sh/ruff)
|
|
53
|
+
|
|
54
|
+
## Installation
|
|
55
|
+
|
|
56
|
+
Choose the Python package manager according to your system. See how the
|
|
57
|
+
installation works with the most common ones, which are pip and conda.
|
|
58
|
+
|
|
59
|
+
To install the latest version of `python-msilib` into a virtual environment:
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
uv pip install --upgrade python-msilib
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
If using pip:
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
pip install --upgrade python-msilib
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
From the conda-forge channel:
|
|
72
|
+
|
|
73
|
+
```
|
|
74
|
+
conda install conda-forge::python-msilib
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
To install the latest development build:
|
|
78
|
+
|
|
79
|
+
```
|
|
80
|
+
uv pip uninstall python-msilib
|
|
81
|
+
uv pip install --extra-index-url https://test.pypi.org/simple/ python-msilib --prerelease=allow --index-strategy=unsafe-best-match
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
If using pip:
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
pip uninstall python-msilib
|
|
88
|
+
pip install --extra-index-url https://test.pypi.org/simple/ python-msilib --pre --no-cache
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## Documentation
|
|
92
|
+
|
|
93
|
+
Please read the documentation at Python
|
|
94
|
+
[docs](https://docs.python.org/3.12/library/msilib.html).
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
msilib/__init__.py,sha256=IU9CgPFVQtZEOh5yzRBYeJL5pqkfRDXSafQtvUEBbUM,23631
|
|
2
|
+
msilib/_msi.c,sha256=xPgxiCH___904SmeJf6SxZ4m7Q1chSi9JlKsSx592ko,38426
|
|
3
|
+
msilib/_msi.cp314-win32.pyd,sha256=PCtX5dS7KAg56H4egcQDMcG1cNjUDPbX22PBA2eS8Pw,24064
|
|
4
|
+
msilib/schema.py,sha256=USaXE5O_3pkt8VLbJcSIjhTtvOgprJgjoRn9wMvIJv4,128781
|
|
5
|
+
msilib/sequence.py,sha256=MF0rHrOQ1WX-cQ9oFRV55Snk6Fa9wJqgSOSNIpErDME,4695
|
|
6
|
+
msilib/text.py,sha256=XbcropSwKsrL5WoNTiW-Lbmj9CGY3r4op4ENHfPki94,11129
|
|
7
|
+
msilib/include/_msi.h,sha256=hDS-3E6dRHj8f6sg3FArpD1CHM9m8kGfH5gDYD8eang,20945
|
|
8
|
+
msilib/include/pythoncapi_compat.h,sha256=-eJOWGFrKjROvJxCoiT1zp3JbNar5Snzrh4lQ5OndVs,75110
|
|
9
|
+
python_msilib-0.4.2.dist-info/licenses/LICENSE,sha256=Wju9Q0A41nBaSfjgklLmLoONJJJSYQD8agr81R5HUnI,2584
|
|
10
|
+
python_msilib-0.4.2.dist-info/METADATA,sha256=ZPgzRAsz4iFl35FBavq7wvuGcFh3iSbkJ1F7NHQRjwA,3841
|
|
11
|
+
python_msilib-0.4.2.dist-info/WHEEL,sha256=avp3B09fSRXVHn4cshTNKc58MtFVN-cVe0NyrqeYT2s,97
|
|
12
|
+
python_msilib-0.4.2.dist-info/top_level.txt,sha256=reGDwqhWKgUpH6z4VDR3W4MUnrUixkQv8pFZxMzH4Es,7
|
|
13
|
+
python_msilib-0.4.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
|
|
2
|
+
--------------------------------------------
|
|
3
|
+
|
|
4
|
+
1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and
|
|
5
|
+
the Individual or Organization ("Licensee") accessing and otherwise using this
|
|
6
|
+
software ("Python") in source or binary form and its associated documentation.
|
|
7
|
+
|
|
8
|
+
2. Subject to the terms and conditions of this License Agreement, PSF hereby
|
|
9
|
+
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
|
|
10
|
+
analyze, test, perform and/or display publicly, prepare derivative works,
|
|
11
|
+
distribute, and otherwise use Python alone or in any derivative
|
|
12
|
+
version, provided, however, that PSF's License Agreement and PSF's notice of
|
|
13
|
+
copyright, i.e., "Copyright © 2001-2023 Python Software Foundation; All Rights
|
|
14
|
+
Reserved" are retained in Python alone or in any derivative version
|
|
15
|
+
prepared by Licensee.
|
|
16
|
+
|
|
17
|
+
3. In the event Licensee prepares a derivative work that is based on or
|
|
18
|
+
incorporates Python or any part thereof, and wants to make the
|
|
19
|
+
derivative work available to others as provided herein, then Licensee hereby
|
|
20
|
+
agrees to include in any such work a brief summary of the changes made to Python.
|
|
21
|
+
|
|
22
|
+
4. PSF is making Python available to Licensee on an "AS IS" basis.
|
|
23
|
+
PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
|
|
24
|
+
EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
|
|
25
|
+
WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
|
|
26
|
+
USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
|
|
27
|
+
|
|
28
|
+
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
|
|
29
|
+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
|
|
30
|
+
MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE
|
|
31
|
+
THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
|
32
|
+
|
|
33
|
+
6. This License Agreement will automatically terminate upon a material breach of
|
|
34
|
+
its terms and conditions.
|
|
35
|
+
|
|
36
|
+
7. Nothing in this License Agreement shall be deemed to create any relationship
|
|
37
|
+
of agency, partnership, or joint venture between PSF and Licensee. This License
|
|
38
|
+
Agreement does not grant permission to use PSF trademarks or trade name in a
|
|
39
|
+
trademark sense to endorse or promote products or services of Licensee, or any
|
|
40
|
+
third party.
|
|
41
|
+
|
|
42
|
+
8. By copying, installing or otherwise using Python, Licensee agrees
|
|
43
|
+
to be bound by the terms and conditions of this License Agreement.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
msilib
|