gptcmd 1.0.0__tar.gz
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.
- gptcmd-1.0.0/COPYING.txt +1149 -0
- gptcmd-1.0.0/PKG-INFO +669 -0
- gptcmd-1.0.0/README.md +655 -0
- gptcmd-1.0.0/pyproject.toml +34 -0
- gptcmd-1.0.0/setup.cfg +4 -0
- gptcmd-1.0.0/src/gptcmd/__init__.py +8 -0
- gptcmd-1.0.0/src/gptcmd/cli.py +883 -0
- gptcmd-1.0.0/src/gptcmd/message.py +418 -0
- gptcmd-1.0.0/src/gptcmd.egg-info/PKG-INFO +669 -0
- gptcmd-1.0.0/src/gptcmd.egg-info/SOURCES.txt +13 -0
- gptcmd-1.0.0/src/gptcmd.egg-info/dependency_links.txt +1 -0
- gptcmd-1.0.0/src/gptcmd.egg-info/entry_points.txt +2 -0
- gptcmd-1.0.0/src/gptcmd.egg-info/requires.txt +1 -0
- gptcmd-1.0.0/src/gptcmd.egg-info/top_level.txt +1 -0
- gptcmd-1.0.0/tests/test_message.py +138 -0
gptcmd-1.0.0/COPYING.txt
ADDED
|
@@ -0,0 +1,1149 @@
|
|
|
1
|
+
Mozilla Public License Version 2.0
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
1. Definitions
|
|
5
|
+
--------------
|
|
6
|
+
|
|
7
|
+
1.1. "Contributor"
|
|
8
|
+
means each individual or legal entity that creates, contributes to
|
|
9
|
+
the creation of, or owns Covered Software.
|
|
10
|
+
|
|
11
|
+
1.2. "Contributor Version"
|
|
12
|
+
means the combination of the Contributions of others (if any) used
|
|
13
|
+
by a Contributor and that particular Contributor's Contribution.
|
|
14
|
+
|
|
15
|
+
1.3. "Contribution"
|
|
16
|
+
means Covered Software of a particular Contributor.
|
|
17
|
+
|
|
18
|
+
1.4. "Covered Software"
|
|
19
|
+
means Source Code Form to which the initial Contributor has attached
|
|
20
|
+
the notice in Exhibit A, the Executable Form of such Source Code
|
|
21
|
+
Form, and Modifications of such Source Code Form, in each case
|
|
22
|
+
including portions thereof.
|
|
23
|
+
|
|
24
|
+
1.5. "Incompatible With Secondary Licenses"
|
|
25
|
+
means
|
|
26
|
+
|
|
27
|
+
(a) that the initial Contributor has attached the notice described
|
|
28
|
+
in Exhibit B to the Covered Software; or
|
|
29
|
+
|
|
30
|
+
(b) that the Covered Software was made available under the terms of
|
|
31
|
+
version 1.1 or earlier of the License, but not also under the
|
|
32
|
+
terms of a Secondary License.
|
|
33
|
+
|
|
34
|
+
1.6. "Executable Form"
|
|
35
|
+
means any form of the work other than Source Code Form.
|
|
36
|
+
|
|
37
|
+
1.7. "Larger Work"
|
|
38
|
+
means a work that combines Covered Software with other material, in
|
|
39
|
+
a separate file or files, that is not Covered Software.
|
|
40
|
+
|
|
41
|
+
1.8. "License"
|
|
42
|
+
means this document.
|
|
43
|
+
|
|
44
|
+
1.9. "Licensable"
|
|
45
|
+
means having the right to grant, to the maximum extent possible,
|
|
46
|
+
whether at the time of the initial grant or subsequently, any and
|
|
47
|
+
all of the rights conveyed by this License.
|
|
48
|
+
|
|
49
|
+
1.10. "Modifications"
|
|
50
|
+
means any of the following:
|
|
51
|
+
|
|
52
|
+
(a) any file in Source Code Form that results from an addition to,
|
|
53
|
+
deletion from, or modification of the contents of Covered
|
|
54
|
+
Software; or
|
|
55
|
+
|
|
56
|
+
(b) any new file in Source Code Form that contains any Covered
|
|
57
|
+
Software.
|
|
58
|
+
|
|
59
|
+
1.11. "Patent Claims" of a Contributor
|
|
60
|
+
means any patent claim(s), including without limitation, method,
|
|
61
|
+
process, and apparatus claims, in any patent Licensable by such
|
|
62
|
+
Contributor that would be infringed, but for the grant of the
|
|
63
|
+
License, by the making, using, selling, offering for sale, having
|
|
64
|
+
made, import, or transfer of either its Contributions or its
|
|
65
|
+
Contributor Version.
|
|
66
|
+
|
|
67
|
+
1.12. "Secondary License"
|
|
68
|
+
means either the GNU General Public License, Version 2.0, the GNU
|
|
69
|
+
Lesser General Public License, Version 2.1, the GNU Affero General
|
|
70
|
+
Public License, Version 3.0, or any later versions of those
|
|
71
|
+
licenses.
|
|
72
|
+
|
|
73
|
+
1.13. "Source Code Form"
|
|
74
|
+
means the form of the work preferred for making modifications.
|
|
75
|
+
|
|
76
|
+
1.14. "You" (or "Your")
|
|
77
|
+
means an individual or a legal entity exercising rights under this
|
|
78
|
+
License. For legal entities, "You" includes any entity that
|
|
79
|
+
controls, is controlled by, or is under common control with You. For
|
|
80
|
+
purposes of this definition, "control" means (a) the power, direct
|
|
81
|
+
or indirect, to cause the direction or management of such entity,
|
|
82
|
+
whether by contract or otherwise, or (b) ownership of more than
|
|
83
|
+
fifty percent (50%) of the outstanding shares or beneficial
|
|
84
|
+
ownership of such entity.
|
|
85
|
+
|
|
86
|
+
2. License Grants and Conditions
|
|
87
|
+
--------------------------------
|
|
88
|
+
|
|
89
|
+
2.1. Grants
|
|
90
|
+
|
|
91
|
+
Each Contributor hereby grants You a world-wide, royalty-free,
|
|
92
|
+
non-exclusive license:
|
|
93
|
+
|
|
94
|
+
(a) under intellectual property rights (other than patent or trademark)
|
|
95
|
+
Licensable by such Contributor to use, reproduce, make available,
|
|
96
|
+
modify, display, perform, distribute, and otherwise exploit its
|
|
97
|
+
Contributions, either on an unmodified basis, with Modifications, or
|
|
98
|
+
as part of a Larger Work; and
|
|
99
|
+
|
|
100
|
+
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
|
101
|
+
for sale, have made, import, and otherwise transfer either its
|
|
102
|
+
Contributions or its Contributor Version.
|
|
103
|
+
|
|
104
|
+
2.2. Effective Date
|
|
105
|
+
|
|
106
|
+
The licenses granted in Section 2.1 with respect to any Contribution
|
|
107
|
+
become effective for each Contribution on the date the Contributor first
|
|
108
|
+
distributes such Contribution.
|
|
109
|
+
|
|
110
|
+
2.3. Limitations on Grant Scope
|
|
111
|
+
|
|
112
|
+
The licenses granted in this Section 2 are the only rights granted under
|
|
113
|
+
this License. No additional rights or licenses will be implied from the
|
|
114
|
+
distribution or licensing of Covered Software under this License.
|
|
115
|
+
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
|
116
|
+
Contributor:
|
|
117
|
+
|
|
118
|
+
(a) for any code that a Contributor has removed from Covered Software;
|
|
119
|
+
or
|
|
120
|
+
|
|
121
|
+
(b) for infringements caused by: (i) Your and any other third party's
|
|
122
|
+
modifications of Covered Software, or (ii) the combination of its
|
|
123
|
+
Contributions with other software (except as part of its Contributor
|
|
124
|
+
Version); or
|
|
125
|
+
|
|
126
|
+
(c) under Patent Claims infringed by Covered Software in the absence of
|
|
127
|
+
its Contributions.
|
|
128
|
+
|
|
129
|
+
This License does not grant any rights in the trademarks, service marks,
|
|
130
|
+
or logos of any Contributor (except as may be necessary to comply with
|
|
131
|
+
the notice requirements in Section 3.4).
|
|
132
|
+
|
|
133
|
+
2.4. Subsequent Licenses
|
|
134
|
+
|
|
135
|
+
No Contributor makes additional grants as a result of Your choice to
|
|
136
|
+
distribute the Covered Software under a subsequent version of this
|
|
137
|
+
License (see Section 10.2) or under the terms of a Secondary License (if
|
|
138
|
+
permitted under the terms of Section 3.3).
|
|
139
|
+
|
|
140
|
+
2.5. Representation
|
|
141
|
+
|
|
142
|
+
Each Contributor represents that the Contributor believes its
|
|
143
|
+
Contributions are its original creation(s) or it has sufficient rights
|
|
144
|
+
to grant the rights to its Contributions conveyed by this License.
|
|
145
|
+
|
|
146
|
+
2.6. Fair Use
|
|
147
|
+
|
|
148
|
+
This License is not intended to limit any rights You have under
|
|
149
|
+
applicable copyright doctrines of fair use, fair dealing, or other
|
|
150
|
+
equivalents.
|
|
151
|
+
|
|
152
|
+
2.7. Conditions
|
|
153
|
+
|
|
154
|
+
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
|
155
|
+
in Section 2.1.
|
|
156
|
+
|
|
157
|
+
3. Responsibilities
|
|
158
|
+
-------------------
|
|
159
|
+
|
|
160
|
+
3.1. Distribution of Source Form
|
|
161
|
+
|
|
162
|
+
All distribution of Covered Software in Source Code Form, including any
|
|
163
|
+
Modifications that You create or to which You contribute, must be under
|
|
164
|
+
the terms of this License. You must inform recipients that the Source
|
|
165
|
+
Code Form of the Covered Software is governed by the terms of this
|
|
166
|
+
License, and how they can obtain a copy of this License. You may not
|
|
167
|
+
attempt to alter or restrict the recipients' rights in the Source Code
|
|
168
|
+
Form.
|
|
169
|
+
|
|
170
|
+
3.2. Distribution of Executable Form
|
|
171
|
+
|
|
172
|
+
If You distribute Covered Software in Executable Form then:
|
|
173
|
+
|
|
174
|
+
(a) such Covered Software must also be made available in Source Code
|
|
175
|
+
Form, as described in Section 3.1, and You must inform recipients of
|
|
176
|
+
the Executable Form how they can obtain a copy of such Source Code
|
|
177
|
+
Form by reasonable means in a timely manner, at a charge no more
|
|
178
|
+
than the cost of distribution to the recipient; and
|
|
179
|
+
|
|
180
|
+
(b) You may distribute such Executable Form under the terms of this
|
|
181
|
+
License, or sublicense it under different terms, provided that the
|
|
182
|
+
license for the Executable Form does not attempt to limit or alter
|
|
183
|
+
the recipients' rights in the Source Code Form under this License.
|
|
184
|
+
|
|
185
|
+
3.3. Distribution of a Larger Work
|
|
186
|
+
|
|
187
|
+
You may create and distribute a Larger Work under terms of Your choice,
|
|
188
|
+
provided that You also comply with the requirements of this License for
|
|
189
|
+
the Covered Software. If the Larger Work is a combination of Covered
|
|
190
|
+
Software with a work governed by one or more Secondary Licenses, and the
|
|
191
|
+
Covered Software is not Incompatible With Secondary Licenses, this
|
|
192
|
+
License permits You to additionally distribute such Covered Software
|
|
193
|
+
under the terms of such Secondary License(s), so that the recipient of
|
|
194
|
+
the Larger Work may, at their option, further distribute the Covered
|
|
195
|
+
Software under the terms of either this License or such Secondary
|
|
196
|
+
License(s).
|
|
197
|
+
|
|
198
|
+
3.4. Notices
|
|
199
|
+
|
|
200
|
+
You may not remove or alter the substance of any license notices
|
|
201
|
+
(including copyright notices, patent notices, disclaimers of warranty,
|
|
202
|
+
or limitations of liability) contained within the Source Code Form of
|
|
203
|
+
the Covered Software, except that You may alter any license notices to
|
|
204
|
+
the extent required to remedy known factual inaccuracies.
|
|
205
|
+
|
|
206
|
+
3.5. Application of Additional Terms
|
|
207
|
+
|
|
208
|
+
You may choose to offer, and to charge a fee for, warranty, support,
|
|
209
|
+
indemnity or liability obligations to one or more recipients of Covered
|
|
210
|
+
Software. However, You may do so only on Your own behalf, and not on
|
|
211
|
+
behalf of any Contributor. You must make it absolutely clear that any
|
|
212
|
+
such warranty, support, indemnity, or liability obligation is offered by
|
|
213
|
+
You alone, and You hereby agree to indemnify every Contributor for any
|
|
214
|
+
liability incurred by such Contributor as a result of warranty, support,
|
|
215
|
+
indemnity or liability terms You offer. You may include additional
|
|
216
|
+
disclaimers of warranty and limitations of liability specific to any
|
|
217
|
+
jurisdiction.
|
|
218
|
+
|
|
219
|
+
4. Inability to Comply Due to Statute or Regulation
|
|
220
|
+
---------------------------------------------------
|
|
221
|
+
|
|
222
|
+
If it is impossible for You to comply with any of the terms of this
|
|
223
|
+
License with respect to some or all of the Covered Software due to
|
|
224
|
+
statute, judicial order, or regulation then You must: (a) comply with
|
|
225
|
+
the terms of this License to the maximum extent possible; and (b)
|
|
226
|
+
describe the limitations and the code they affect. Such description must
|
|
227
|
+
be placed in a text file included with all distributions of the Covered
|
|
228
|
+
Software under this License. Except to the extent prohibited by statute
|
|
229
|
+
or regulation, such description must be sufficiently detailed for a
|
|
230
|
+
recipient of ordinary skill to be able to understand it.
|
|
231
|
+
|
|
232
|
+
5. Termination
|
|
233
|
+
--------------
|
|
234
|
+
|
|
235
|
+
5.1. The rights granted under this License will terminate automatically
|
|
236
|
+
if You fail to comply with any of its terms. However, if You become
|
|
237
|
+
compliant, then the rights granted under this License from a particular
|
|
238
|
+
Contributor are reinstated (a) provisionally, unless and until such
|
|
239
|
+
Contributor explicitly and finally terminates Your grants, and (b) on an
|
|
240
|
+
ongoing basis, if such Contributor fails to notify You of the
|
|
241
|
+
non-compliance by some reasonable means prior to 60 days after You have
|
|
242
|
+
come back into compliance. Moreover, Your grants from a particular
|
|
243
|
+
Contributor are reinstated on an ongoing basis if such Contributor
|
|
244
|
+
notifies You of the non-compliance by some reasonable means, this is the
|
|
245
|
+
first time You have received notice of non-compliance with this License
|
|
246
|
+
from such Contributor, and You become compliant prior to 30 days after
|
|
247
|
+
Your receipt of the notice.
|
|
248
|
+
|
|
249
|
+
5.2. If You initiate litigation against any entity by asserting a patent
|
|
250
|
+
infringement claim (excluding declaratory judgment actions,
|
|
251
|
+
counter-claims, and cross-claims) alleging that a Contributor Version
|
|
252
|
+
directly or indirectly infringes any patent, then the rights granted to
|
|
253
|
+
You by any and all Contributors for the Covered Software under Section
|
|
254
|
+
2.1 of this License shall terminate.
|
|
255
|
+
|
|
256
|
+
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
|
257
|
+
end user license agreements (excluding distributors and resellers) which
|
|
258
|
+
have been validly granted by You or Your distributors under this License
|
|
259
|
+
prior to termination shall survive termination.
|
|
260
|
+
|
|
261
|
+
************************************************************************
|
|
262
|
+
* *
|
|
263
|
+
* 6. Disclaimer of Warranty *
|
|
264
|
+
* ------------------------- *
|
|
265
|
+
* *
|
|
266
|
+
* Covered Software is provided under this License on an "as is" *
|
|
267
|
+
* basis, without warranty of any kind, either expressed, implied, or *
|
|
268
|
+
* statutory, including, without limitation, warranties that the *
|
|
269
|
+
* Covered Software is free of defects, merchantable, fit for a *
|
|
270
|
+
* particular purpose or non-infringing. The entire risk as to the *
|
|
271
|
+
* quality and performance of the Covered Software is with You. *
|
|
272
|
+
* Should any Covered Software prove defective in any respect, You *
|
|
273
|
+
* (not any Contributor) assume the cost of any necessary servicing, *
|
|
274
|
+
* repair, or correction. This disclaimer of warranty constitutes an *
|
|
275
|
+
* essential part of this License. No use of any Covered Software is *
|
|
276
|
+
* authorized under this License except under this disclaimer. *
|
|
277
|
+
* *
|
|
278
|
+
************************************************************************
|
|
279
|
+
|
|
280
|
+
************************************************************************
|
|
281
|
+
* *
|
|
282
|
+
* 7. Limitation of Liability *
|
|
283
|
+
* -------------------------- *
|
|
284
|
+
* *
|
|
285
|
+
* Under no circumstances and under no legal theory, whether tort *
|
|
286
|
+
* (including negligence), contract, or otherwise, shall any *
|
|
287
|
+
* Contributor, or anyone who distributes Covered Software as *
|
|
288
|
+
* permitted above, be liable to You for any direct, indirect, *
|
|
289
|
+
* special, incidental, or consequential damages of any character *
|
|
290
|
+
* including, without limitation, damages for lost profits, loss of *
|
|
291
|
+
* goodwill, work stoppage, computer failure or malfunction, or any *
|
|
292
|
+
* and all other commercial damages or losses, even if such party *
|
|
293
|
+
* shall have been informed of the possibility of such damages. This *
|
|
294
|
+
* limitation of liability shall not apply to liability for death or *
|
|
295
|
+
* personal injury resulting from such party's negligence to the *
|
|
296
|
+
* extent applicable law prohibits such limitation. Some *
|
|
297
|
+
* jurisdictions do not allow the exclusion or limitation of *
|
|
298
|
+
* incidental or consequential damages, so this exclusion and *
|
|
299
|
+
* limitation may not apply to You. *
|
|
300
|
+
* *
|
|
301
|
+
************************************************************************
|
|
302
|
+
|
|
303
|
+
8. Litigation
|
|
304
|
+
-------------
|
|
305
|
+
|
|
306
|
+
Any litigation relating to this License may be brought only in the
|
|
307
|
+
courts of a jurisdiction where the defendant maintains its principal
|
|
308
|
+
place of business and such litigation shall be governed by laws of that
|
|
309
|
+
jurisdiction, without reference to its conflict-of-law provisions.
|
|
310
|
+
Nothing in this Section shall prevent a party's ability to bring
|
|
311
|
+
cross-claims or counter-claims.
|
|
312
|
+
|
|
313
|
+
9. Miscellaneous
|
|
314
|
+
----------------
|
|
315
|
+
|
|
316
|
+
This License represents the complete agreement concerning the subject
|
|
317
|
+
matter hereof. If any provision of this License is held to be
|
|
318
|
+
unenforceable, such provision shall be reformed only to the extent
|
|
319
|
+
necessary to make it enforceable. Any law or regulation which provides
|
|
320
|
+
that the language of a contract shall be construed against the drafter
|
|
321
|
+
shall not be used to construe this License against a Contributor.
|
|
322
|
+
|
|
323
|
+
10. Versions of the License
|
|
324
|
+
---------------------------
|
|
325
|
+
|
|
326
|
+
10.1. New Versions
|
|
327
|
+
|
|
328
|
+
Mozilla Foundation is the license steward. Except as provided in Section
|
|
329
|
+
10.3, no one other than the license steward has the right to modify or
|
|
330
|
+
publish new versions of this License. Each version will be given a
|
|
331
|
+
distinguishing version number.
|
|
332
|
+
|
|
333
|
+
10.2. Effect of New Versions
|
|
334
|
+
|
|
335
|
+
You may distribute the Covered Software under the terms of the version
|
|
336
|
+
of the License under which You originally received the Covered Software,
|
|
337
|
+
or under the terms of any subsequent version published by the license
|
|
338
|
+
steward.
|
|
339
|
+
|
|
340
|
+
10.3. Modified Versions
|
|
341
|
+
|
|
342
|
+
If you create software not governed by this License, and you want to
|
|
343
|
+
create a new license for such software, you may create and use a
|
|
344
|
+
modified version of this License if you rename the license and remove
|
|
345
|
+
any references to the name of the license steward (except to note that
|
|
346
|
+
such modified license differs from this License).
|
|
347
|
+
|
|
348
|
+
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
|
349
|
+
Licenses
|
|
350
|
+
|
|
351
|
+
If You choose to distribute Source Code Form that is Incompatible With
|
|
352
|
+
Secondary Licenses under the terms of this version of the License, the
|
|
353
|
+
notice described in Exhibit B of this License must be attached.
|
|
354
|
+
|
|
355
|
+
Exhibit A - Source Code Form License Notice
|
|
356
|
+
-------------------------------------------
|
|
357
|
+
|
|
358
|
+
This Source Code Form is subject to the terms of the Mozilla Public
|
|
359
|
+
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
360
|
+
file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
361
|
+
|
|
362
|
+
If it is not possible or desirable to put the notice in a particular
|
|
363
|
+
file, then You may include the notice in a location (such as a LICENSE
|
|
364
|
+
file in a relevant directory) where a recipient would be likely to look
|
|
365
|
+
for such a notice.
|
|
366
|
+
|
|
367
|
+
You may add additional accurate notices of copyright ownership.
|
|
368
|
+
|
|
369
|
+
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
370
|
+
---------------------------------------------------------
|
|
371
|
+
|
|
372
|
+
This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
373
|
+
defined by the Mozilla Public License, v. 2.0.
|
|
374
|
+
|
|
375
|
+
Python
|
|
376
|
+
A. HISTORY OF THE SOFTWARE
|
|
377
|
+
==========================
|
|
378
|
+
|
|
379
|
+
Python was created in the early 1990s by Guido van Rossum at Stichting
|
|
380
|
+
Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
|
|
381
|
+
as a successor of a language called ABC. Guido remains Python's
|
|
382
|
+
principal author, although it includes many contributions from others.
|
|
383
|
+
|
|
384
|
+
In 1995, Guido continued his work on Python at the Corporation for
|
|
385
|
+
National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
|
|
386
|
+
in Reston, Virginia where he released several versions of the
|
|
387
|
+
software.
|
|
388
|
+
|
|
389
|
+
In May 2000, Guido and the Python core development team moved to
|
|
390
|
+
BeOpen.com to form the BeOpen PythonLabs team. In October of the same
|
|
391
|
+
year, the PythonLabs team moved to Digital Creations, which became
|
|
392
|
+
Zope Corporation. In 2001, the Python Software Foundation (PSF, see
|
|
393
|
+
https://www.python.org/psf/) was formed, a non-profit organization
|
|
394
|
+
created specifically to own Python-related Intellectual Property.
|
|
395
|
+
Zope Corporation was a sponsoring member of the PSF.
|
|
396
|
+
|
|
397
|
+
All Python releases are Open Source (see http://www.opensource.org for
|
|
398
|
+
the Open Source Definition). Historically, most, but not all, Python
|
|
399
|
+
releases have also been GPL-compatible; the table below summarizes
|
|
400
|
+
the various releases.
|
|
401
|
+
|
|
402
|
+
Release Derived Year Owner GPL-
|
|
403
|
+
from compatible? (1)
|
|
404
|
+
|
|
405
|
+
0.9.0 thru 1.2 1991-1995 CWI yes
|
|
406
|
+
1.3 thru 1.5.2 1.2 1995-1999 CNRI yes
|
|
407
|
+
1.6 1.5.2 2000 CNRI no
|
|
408
|
+
2.0 1.6 2000 BeOpen.com no
|
|
409
|
+
1.6.1 1.6 2001 CNRI yes (2)
|
|
410
|
+
2.1 2.0+1.6.1 2001 PSF no
|
|
411
|
+
2.0.1 2.0+1.6.1 2001 PSF yes
|
|
412
|
+
2.1.1 2.1+2.0.1 2001 PSF yes
|
|
413
|
+
2.1.2 2.1.1 2002 PSF yes
|
|
414
|
+
2.1.3 2.1.2 2002 PSF yes
|
|
415
|
+
2.2 and above 2.1.1 2001-now PSF yes
|
|
416
|
+
|
|
417
|
+
Footnotes:
|
|
418
|
+
|
|
419
|
+
(1) GPL-compatible doesn't mean that we're distributing Python under
|
|
420
|
+
the GPL. All Python licenses, unlike the GPL, let you distribute
|
|
421
|
+
a modified version without making your changes open source. The
|
|
422
|
+
GPL-compatible licenses make it possible to combine Python with
|
|
423
|
+
other software that is released under the GPL; the others don't.
|
|
424
|
+
|
|
425
|
+
(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
|
|
426
|
+
because its license has a choice of law clause. According to
|
|
427
|
+
CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
|
|
428
|
+
is "not incompatible" with the GPL.
|
|
429
|
+
|
|
430
|
+
Thanks to the many outside volunteers who have worked under Guido's
|
|
431
|
+
direction to make these releases possible.
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
|
|
435
|
+
===============================================================
|
|
436
|
+
|
|
437
|
+
Python software and documentation are licensed under the
|
|
438
|
+
Python Software Foundation License Version 2.
|
|
439
|
+
|
|
440
|
+
Starting with Python 3.8.6, examples, recipes, and other code in
|
|
441
|
+
the documentation are dual licensed under the PSF License Version 2
|
|
442
|
+
and the Zero-Clause BSD license.
|
|
443
|
+
|
|
444
|
+
Some software incorporated into Python is under different licenses.
|
|
445
|
+
The licenses are listed with code falling under that license.
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
|
|
449
|
+
--------------------------------------------
|
|
450
|
+
|
|
451
|
+
1. This LICENSE AGREEMENT is between the Python Software Foundation
|
|
452
|
+
("PSF"), and the Individual or Organization ("Licensee") accessing and
|
|
453
|
+
otherwise using this software ("Python") in source or binary form and
|
|
454
|
+
its associated documentation.
|
|
455
|
+
|
|
456
|
+
2. Subject to the terms and conditions of this License Agreement, PSF hereby
|
|
457
|
+
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
|
|
458
|
+
analyze, test, perform and/or display publicly, prepare derivative works,
|
|
459
|
+
distribute, and otherwise use Python alone or in any derivative version,
|
|
460
|
+
provided, however, that PSF's License Agreement and PSF's notice of copyright,
|
|
461
|
+
i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
|
|
462
|
+
2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Python Software Foundation;
|
|
463
|
+
All Rights Reserved" are retained in Python alone or in any derivative version
|
|
464
|
+
prepared by Licensee.
|
|
465
|
+
|
|
466
|
+
3. In the event Licensee prepares a derivative work that is based on
|
|
467
|
+
or incorporates Python or any part thereof, and wants to make
|
|
468
|
+
the derivative work available to others as provided herein, then
|
|
469
|
+
Licensee hereby agrees to include in any such work a brief summary of
|
|
470
|
+
the changes made to Python.
|
|
471
|
+
|
|
472
|
+
4. PSF is making Python available to Licensee on an "AS IS"
|
|
473
|
+
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
|
474
|
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
|
|
475
|
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
|
476
|
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
|
|
477
|
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
|
478
|
+
|
|
479
|
+
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
|
|
480
|
+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
|
|
481
|
+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
|
|
482
|
+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
|
483
|
+
|
|
484
|
+
6. This License Agreement will automatically terminate upon a material
|
|
485
|
+
breach of its terms and conditions.
|
|
486
|
+
|
|
487
|
+
7. Nothing in this License Agreement shall be deemed to create any
|
|
488
|
+
relationship of agency, partnership, or joint venture between PSF and
|
|
489
|
+
Licensee. This License Agreement does not grant permission to use PSF
|
|
490
|
+
trademarks or trade name in a trademark sense to endorse or promote
|
|
491
|
+
products or services of Licensee, or any third party.
|
|
492
|
+
|
|
493
|
+
8. By copying, installing or otherwise using Python, Licensee
|
|
494
|
+
agrees to be bound by the terms and conditions of this License
|
|
495
|
+
Agreement.
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
|
|
499
|
+
-------------------------------------------
|
|
500
|
+
|
|
501
|
+
BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
|
|
502
|
+
|
|
503
|
+
1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
|
|
504
|
+
office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
|
|
505
|
+
Individual or Organization ("Licensee") accessing and otherwise using
|
|
506
|
+
this software in source or binary form and its associated
|
|
507
|
+
documentation ("the Software").
|
|
508
|
+
|
|
509
|
+
2. Subject to the terms and conditions of this BeOpen Python License
|
|
510
|
+
Agreement, BeOpen hereby grants Licensee a non-exclusive,
|
|
511
|
+
royalty-free, world-wide license to reproduce, analyze, test, perform
|
|
512
|
+
and/or display publicly, prepare derivative works, distribute, and
|
|
513
|
+
otherwise use the Software alone or in any derivative version,
|
|
514
|
+
provided, however, that the BeOpen Python License is retained in the
|
|
515
|
+
Software, alone or in any derivative version prepared by Licensee.
|
|
516
|
+
|
|
517
|
+
3. BeOpen is making the Software available to Licensee on an "AS IS"
|
|
518
|
+
basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
|
519
|
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
|
|
520
|
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
|
521
|
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
|
|
522
|
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
|
523
|
+
|
|
524
|
+
4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
|
|
525
|
+
SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
|
|
526
|
+
AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
|
|
527
|
+
DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
|
528
|
+
|
|
529
|
+
5. This License Agreement will automatically terminate upon a material
|
|
530
|
+
breach of its terms and conditions.
|
|
531
|
+
|
|
532
|
+
6. This License Agreement shall be governed by and interpreted in all
|
|
533
|
+
respects by the law of the State of California, excluding conflict of
|
|
534
|
+
law provisions. Nothing in this License Agreement shall be deemed to
|
|
535
|
+
create any relationship of agency, partnership, or joint venture
|
|
536
|
+
between BeOpen and Licensee. This License Agreement does not grant
|
|
537
|
+
permission to use BeOpen trademarks or trade names in a trademark
|
|
538
|
+
sense to endorse or promote products or services of Licensee, or any
|
|
539
|
+
third party. As an exception, the "BeOpen Python" logos available at
|
|
540
|
+
http://www.pythonlabs.com/logos.html may be used according to the
|
|
541
|
+
permissions granted on that web page.
|
|
542
|
+
|
|
543
|
+
7. By copying, installing or otherwise using the software, Licensee
|
|
544
|
+
agrees to be bound by the terms and conditions of this License
|
|
545
|
+
Agreement.
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
|
|
549
|
+
---------------------------------------
|
|
550
|
+
|
|
551
|
+
1. This LICENSE AGREEMENT is between the Corporation for National
|
|
552
|
+
Research Initiatives, having an office at 1895 Preston White Drive,
|
|
553
|
+
Reston, VA 20191 ("CNRI"), and the Individual or Organization
|
|
554
|
+
("Licensee") accessing and otherwise using Python 1.6.1 software in
|
|
555
|
+
source or binary form and its associated documentation.
|
|
556
|
+
|
|
557
|
+
2. Subject to the terms and conditions of this License Agreement, CNRI
|
|
558
|
+
hereby grants Licensee a nonexclusive, royalty-free, world-wide
|
|
559
|
+
license to reproduce, analyze, test, perform and/or display publicly,
|
|
560
|
+
prepare derivative works, distribute, and otherwise use Python 1.6.1
|
|
561
|
+
alone or in any derivative version, provided, however, that CNRI's
|
|
562
|
+
License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
|
|
563
|
+
1995-2001 Corporation for National Research Initiatives; All Rights
|
|
564
|
+
Reserved" are retained in Python 1.6.1 alone or in any derivative
|
|
565
|
+
version prepared by Licensee. Alternately, in lieu of CNRI's License
|
|
566
|
+
Agreement, Licensee may substitute the following text (omitting the
|
|
567
|
+
quotes): "Python 1.6.1 is made available subject to the terms and
|
|
568
|
+
conditions in CNRI's License Agreement. This Agreement together with
|
|
569
|
+
Python 1.6.1 may be located on the Internet using the following
|
|
570
|
+
unique, persistent identifier (known as a handle): 1895.22/1013. This
|
|
571
|
+
Agreement may also be obtained from a proxy server on the Internet
|
|
572
|
+
using the following URL: http://hdl.handle.net/1895.22/1013".
|
|
573
|
+
|
|
574
|
+
3. In the event Licensee prepares a derivative work that is based on
|
|
575
|
+
or incorporates Python 1.6.1 or any part thereof, and wants to make
|
|
576
|
+
the derivative work available to others as provided herein, then
|
|
577
|
+
Licensee hereby agrees to include in any such work a brief summary of
|
|
578
|
+
the changes made to Python 1.6.1.
|
|
579
|
+
|
|
580
|
+
4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
|
|
581
|
+
basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
|
582
|
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
|
|
583
|
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
|
584
|
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
|
|
585
|
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
|
586
|
+
|
|
587
|
+
5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
|
|
588
|
+
1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
|
|
589
|
+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
|
|
590
|
+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
|
591
|
+
|
|
592
|
+
6. This License Agreement will automatically terminate upon a material
|
|
593
|
+
breach of its terms and conditions.
|
|
594
|
+
|
|
595
|
+
7. This License Agreement shall be governed by the federal
|
|
596
|
+
intellectual property law of the United States, including without
|
|
597
|
+
limitation the federal copyright law, and, to the extent such
|
|
598
|
+
U.S. federal law does not apply, by the law of the Commonwealth of
|
|
599
|
+
Virginia, excluding Virginia's conflict of law provisions.
|
|
600
|
+
Notwithstanding the foregoing, with regard to derivative works based
|
|
601
|
+
on Python 1.6.1 that incorporate non-separable material that was
|
|
602
|
+
previously distributed under the GNU General Public License (GPL), the
|
|
603
|
+
law of the Commonwealth of Virginia shall govern this License
|
|
604
|
+
Agreement only as to issues arising under or with respect to
|
|
605
|
+
Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
|
|
606
|
+
License Agreement shall be deemed to create any relationship of
|
|
607
|
+
agency, partnership, or joint venture between CNRI and Licensee. This
|
|
608
|
+
License Agreement does not grant permission to use CNRI trademarks or
|
|
609
|
+
trade name in a trademark sense to endorse or promote products or
|
|
610
|
+
services of Licensee, or any third party.
|
|
611
|
+
|
|
612
|
+
8. By clicking on the "ACCEPT" button where indicated, or by copying,
|
|
613
|
+
installing or otherwise using Python 1.6.1, Licensee agrees to be
|
|
614
|
+
bound by the terms and conditions of this License Agreement.
|
|
615
|
+
|
|
616
|
+
ACCEPT
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
|
|
620
|
+
--------------------------------------------------
|
|
621
|
+
|
|
622
|
+
Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
|
|
623
|
+
The Netherlands. All rights reserved.
|
|
624
|
+
|
|
625
|
+
Permission to use, copy, modify, and distribute this software and its
|
|
626
|
+
documentation for any purpose and without fee is hereby granted,
|
|
627
|
+
provided that the above copyright notice appear in all copies and that
|
|
628
|
+
both that copyright notice and this permission notice appear in
|
|
629
|
+
supporting documentation, and that the name of Stichting Mathematisch
|
|
630
|
+
Centrum or CWI not be used in advertising or publicity pertaining to
|
|
631
|
+
distribution of the software without specific, written prior
|
|
632
|
+
permission.
|
|
633
|
+
|
|
634
|
+
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
635
|
+
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
636
|
+
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
|
637
|
+
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
638
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
639
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
640
|
+
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
641
|
+
|
|
642
|
+
ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION
|
|
643
|
+
----------------------------------------------------------------------
|
|
644
|
+
|
|
645
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
646
|
+
purpose with or without fee is hereby granted.
|
|
647
|
+
|
|
648
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
649
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
650
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
651
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
652
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
653
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
654
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
Additional Conditions for this Windows binary build
|
|
659
|
+
---------------------------------------------------
|
|
660
|
+
|
|
661
|
+
This program is linked with and uses Microsoft Distributable Code,
|
|
662
|
+
copyrighted by Microsoft Corporation. The Microsoft Distributable Code
|
|
663
|
+
is embedded in each .exe, .dll and .pyd file as a result of running
|
|
664
|
+
the code through a linker.
|
|
665
|
+
|
|
666
|
+
If you further distribute programs that include the Microsoft
|
|
667
|
+
Distributable Code, you must comply with the restrictions on
|
|
668
|
+
distribution specified by Microsoft. In particular, you must require
|
|
669
|
+
distributors and external end users to agree to terms that protect the
|
|
670
|
+
Microsoft Distributable Code at least as much as Microsoft's own
|
|
671
|
+
requirements for the Distributable Code. See Microsoft's documentation
|
|
672
|
+
(included in its developer tools and on its website at microsoft.com)
|
|
673
|
+
for specific details.
|
|
674
|
+
|
|
675
|
+
Redistribution of the Windows binary build of the Python interpreter
|
|
676
|
+
complies with this agreement, provided that you do not:
|
|
677
|
+
|
|
678
|
+
- alter any copyright, trademark or patent notice in Microsoft's
|
|
679
|
+
Distributable Code;
|
|
680
|
+
|
|
681
|
+
- use Microsoft's trademarks in your programs' names or in a way that
|
|
682
|
+
suggests your programs come from or are endorsed by Microsoft;
|
|
683
|
+
|
|
684
|
+
- distribute Microsoft's Distributable Code to run on a platform other
|
|
685
|
+
than Microsoft operating systems, run-time technologies or application
|
|
686
|
+
platforms; or
|
|
687
|
+
|
|
688
|
+
- include Microsoft Distributable Code in malicious, deceptive or
|
|
689
|
+
unlawful programs.
|
|
690
|
+
|
|
691
|
+
These restrictions apply only to the Microsoft Distributable Code as
|
|
692
|
+
defined above, not to Python itself or any programs running on the
|
|
693
|
+
Python interpreter. The redistribution of the Python interpreter and
|
|
694
|
+
libraries is governed by the Python Software License included with this
|
|
695
|
+
file, or by other licenses as marked.
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
--------------------------------------------------------------------------
|
|
700
|
+
|
|
701
|
+
This program, "bzip2", the associated library "libbzip2", and all
|
|
702
|
+
documentation, are copyright (C) 1996-2010 Julian R Seward. All
|
|
703
|
+
rights reserved.
|
|
704
|
+
|
|
705
|
+
Redistribution and use in source and binary forms, with or without
|
|
706
|
+
modification, are permitted provided that the following conditions
|
|
707
|
+
are met:
|
|
708
|
+
|
|
709
|
+
1. Redistributions of source code must retain the above copyright
|
|
710
|
+
notice, this list of conditions and the following disclaimer.
|
|
711
|
+
|
|
712
|
+
2. The origin of this software must not be misrepresented; you must
|
|
713
|
+
not claim that you wrote the original software. If you use this
|
|
714
|
+
software in a product, an acknowledgment in the product
|
|
715
|
+
documentation would be appreciated but is not required.
|
|
716
|
+
|
|
717
|
+
3. Altered source versions must be plainly marked as such, and must
|
|
718
|
+
not be misrepresented as being the original software.
|
|
719
|
+
|
|
720
|
+
4. The name of the author may not be used to endorse or promote
|
|
721
|
+
products derived from this software without specific prior written
|
|
722
|
+
permission.
|
|
723
|
+
|
|
724
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
|
|
725
|
+
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
726
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
727
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
728
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
729
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
730
|
+
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
731
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
732
|
+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
733
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
734
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
735
|
+
|
|
736
|
+
Julian Seward, jseward@bzip.org
|
|
737
|
+
bzip2/libbzip2 version 1.0.6 of 6 September 2010
|
|
738
|
+
|
|
739
|
+
--------------------------------------------------------------------------
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
LICENSE ISSUES
|
|
743
|
+
==============
|
|
744
|
+
|
|
745
|
+
The OpenSSL toolkit stays under a double license, i.e. both the conditions of
|
|
746
|
+
the OpenSSL License and the original SSLeay license apply to the toolkit.
|
|
747
|
+
See below for the actual license texts.
|
|
748
|
+
|
|
749
|
+
OpenSSL License
|
|
750
|
+
---------------
|
|
751
|
+
|
|
752
|
+
/* ====================================================================
|
|
753
|
+
* Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
|
|
754
|
+
*
|
|
755
|
+
* Redistribution and use in source and binary forms, with or without
|
|
756
|
+
* modification, are permitted provided that the following conditions
|
|
757
|
+
* are met:
|
|
758
|
+
*
|
|
759
|
+
* 1. Redistributions of source code must retain the above copyright
|
|
760
|
+
* notice, this list of conditions and the following disclaimer.
|
|
761
|
+
*
|
|
762
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
|
763
|
+
* notice, this list of conditions and the following disclaimer in
|
|
764
|
+
* the documentation and/or other materials provided with the
|
|
765
|
+
* distribution.
|
|
766
|
+
*
|
|
767
|
+
* 3. All advertising materials mentioning features or use of this
|
|
768
|
+
* software must display the following acknowledgment:
|
|
769
|
+
* "This product includes software developed by the OpenSSL Project
|
|
770
|
+
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
|
771
|
+
*
|
|
772
|
+
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
|
773
|
+
* endorse or promote products derived from this software without
|
|
774
|
+
* prior written permission. For written permission, please contact
|
|
775
|
+
* openssl-core@openssl.org.
|
|
776
|
+
*
|
|
777
|
+
* 5. Products derived from this software may not be called "OpenSSL"
|
|
778
|
+
* nor may "OpenSSL" appear in their names without prior written
|
|
779
|
+
* permission of the OpenSSL Project.
|
|
780
|
+
*
|
|
781
|
+
* 6. Redistributions of any form whatsoever must retain the following
|
|
782
|
+
* acknowledgment:
|
|
783
|
+
* "This product includes software developed by the OpenSSL Project
|
|
784
|
+
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
|
785
|
+
*
|
|
786
|
+
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
|
787
|
+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
788
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
789
|
+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
|
790
|
+
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
791
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
792
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
793
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
794
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
795
|
+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
796
|
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
797
|
+
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
798
|
+
* ====================================================================
|
|
799
|
+
*
|
|
800
|
+
* This product includes cryptographic software written by Eric Young
|
|
801
|
+
* (eay@cryptsoft.com). This product includes software written by Tim
|
|
802
|
+
* Hudson (tjh@cryptsoft.com).
|
|
803
|
+
*
|
|
804
|
+
*/
|
|
805
|
+
|
|
806
|
+
Original SSLeay License
|
|
807
|
+
-----------------------
|
|
808
|
+
|
|
809
|
+
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
|
810
|
+
* All rights reserved.
|
|
811
|
+
*
|
|
812
|
+
* This package is an SSL implementation written
|
|
813
|
+
* by Eric Young (eay@cryptsoft.com).
|
|
814
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
|
815
|
+
*
|
|
816
|
+
* This library is free for commercial and non-commercial use as long as
|
|
817
|
+
* the following conditions are aheared to. The following conditions
|
|
818
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
|
819
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
|
820
|
+
* included with this distribution is covered by the same copyright terms
|
|
821
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
|
822
|
+
*
|
|
823
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
|
824
|
+
* the code are not to be removed.
|
|
825
|
+
* If this package is used in a product, Eric Young should be given attribution
|
|
826
|
+
* as the author of the parts of the library used.
|
|
827
|
+
* This can be in the form of a textual message at program startup or
|
|
828
|
+
* in documentation (online or textual) provided with the package.
|
|
829
|
+
*
|
|
830
|
+
* Redistribution and use in source and binary forms, with or without
|
|
831
|
+
* modification, are permitted provided that the following conditions
|
|
832
|
+
* are met:
|
|
833
|
+
* 1. Redistributions of source code must retain the copyright
|
|
834
|
+
* notice, this list of conditions and the following disclaimer.
|
|
835
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
|
836
|
+
* notice, this list of conditions and the following disclaimer in the
|
|
837
|
+
* documentation and/or other materials provided with the distribution.
|
|
838
|
+
* 3. All advertising materials mentioning features or use of this software
|
|
839
|
+
* must display the following acknowledgement:
|
|
840
|
+
* "This product includes cryptographic software written by
|
|
841
|
+
* Eric Young (eay@cryptsoft.com)"
|
|
842
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
|
843
|
+
* being used are not cryptographic related :-).
|
|
844
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
|
845
|
+
* the apps directory (application code) you must include an acknowledgement:
|
|
846
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
|
847
|
+
*
|
|
848
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
|
849
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
850
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
851
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
852
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
853
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
854
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
855
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
856
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
857
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
858
|
+
* SUCH DAMAGE.
|
|
859
|
+
*
|
|
860
|
+
* The licence and distribution terms for any publically available version or
|
|
861
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
|
862
|
+
* copied and put under another distribution licence
|
|
863
|
+
* [including the GNU Public Licence.]
|
|
864
|
+
*/
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
libffi - Copyright (c) 1996-2014 Anthony Green, Red Hat, Inc and others.
|
|
868
|
+
See source files for details.
|
|
869
|
+
|
|
870
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
871
|
+
a copy of this software and associated documentation files (the
|
|
872
|
+
``Software''), to deal in the Software without restriction, including
|
|
873
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
874
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
875
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
876
|
+
the following conditions:
|
|
877
|
+
|
|
878
|
+
The above copyright notice and this permission notice shall be
|
|
879
|
+
included in all copies or substantial portions of the Software.
|
|
880
|
+
|
|
881
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
|
882
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
883
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
884
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
885
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
886
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
887
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
888
|
+
|
|
889
|
+
This software is copyrighted by the Regents of the University of
|
|
890
|
+
California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState
|
|
891
|
+
Corporation and other parties. The following terms apply to all files
|
|
892
|
+
associated with the software unless explicitly disclaimed in
|
|
893
|
+
individual files.
|
|
894
|
+
|
|
895
|
+
The authors hereby grant permission to use, copy, modify, distribute,
|
|
896
|
+
and license this software and its documentation for any purpose, provided
|
|
897
|
+
that existing copyright notices are retained in all copies and that this
|
|
898
|
+
notice is included verbatim in any distributions. No written agreement,
|
|
899
|
+
license, or royalty fee is required for any of the authorized uses.
|
|
900
|
+
Modifications to this software may be copyrighted by their authors
|
|
901
|
+
and need not follow the licensing terms described here, provided that
|
|
902
|
+
the new terms are clearly indicated on the first page of each file where
|
|
903
|
+
they apply.
|
|
904
|
+
|
|
905
|
+
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
|
|
906
|
+
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
907
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
|
|
908
|
+
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
|
|
909
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
910
|
+
|
|
911
|
+
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
|
|
912
|
+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
|
|
913
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
|
|
914
|
+
IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
|
|
915
|
+
NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
|
|
916
|
+
MODIFICATIONS.
|
|
917
|
+
|
|
918
|
+
GOVERNMENT USE: If you are acquiring this software on behalf of the
|
|
919
|
+
U.S. government, the Government shall have only "Restricted Rights"
|
|
920
|
+
in the software and related documentation as defined in the Federal
|
|
921
|
+
Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
|
|
922
|
+
are acquiring the software on behalf of the Department of Defense, the
|
|
923
|
+
software shall be classified as "Commercial Computer Software" and the
|
|
924
|
+
Government shall have only "Restricted Rights" as defined in Clause
|
|
925
|
+
252.227-7014 (b) (3) of DFARs. Notwithstanding the foregoing, the
|
|
926
|
+
authors grant the U.S. Government and others acting in its behalf
|
|
927
|
+
permission to use and distribute the software in accordance with the
|
|
928
|
+
terms specified in this license.
|
|
929
|
+
|
|
930
|
+
This software is copyrighted by the Regents of the University of
|
|
931
|
+
California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState
|
|
932
|
+
Corporation, Apple Inc. and other parties. The following terms apply to
|
|
933
|
+
all files associated with the software unless explicitly disclaimed in
|
|
934
|
+
individual files.
|
|
935
|
+
|
|
936
|
+
The authors hereby grant permission to use, copy, modify, distribute,
|
|
937
|
+
and license this software and its documentation for any purpose, provided
|
|
938
|
+
that existing copyright notices are retained in all copies and that this
|
|
939
|
+
notice is included verbatim in any distributions. No written agreement,
|
|
940
|
+
license, or royalty fee is required for any of the authorized uses.
|
|
941
|
+
Modifications to this software may be copyrighted by their authors
|
|
942
|
+
and need not follow the licensing terms described here, provided that
|
|
943
|
+
the new terms are clearly indicated on the first page of each file where
|
|
944
|
+
they apply.
|
|
945
|
+
|
|
946
|
+
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
|
|
947
|
+
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
948
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
|
|
949
|
+
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
|
|
950
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
951
|
+
|
|
952
|
+
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
|
|
953
|
+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
|
|
954
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
|
|
955
|
+
IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
|
|
956
|
+
NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
|
|
957
|
+
MODIFICATIONS.
|
|
958
|
+
|
|
959
|
+
GOVERNMENT USE: If you are acquiring this software on behalf of the
|
|
960
|
+
U.S. government, the Government shall have only "Restricted Rights"
|
|
961
|
+
in the software and related documentation as defined in the Federal
|
|
962
|
+
Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
|
|
963
|
+
are acquiring the software on behalf of the Department of Defense, the
|
|
964
|
+
software shall be classified as "Commercial Computer Software" and the
|
|
965
|
+
Government shall have only "Restricted Rights" as defined in Clause
|
|
966
|
+
252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the
|
|
967
|
+
authors grant the U.S. Government and others acting in its behalf
|
|
968
|
+
permission to use and distribute the software in accordance with the
|
|
969
|
+
terms specified in this license.
|
|
970
|
+
|
|
971
|
+
Copyright (c) 1993-1999 Ioi Kim Lam.
|
|
972
|
+
Copyright (c) 2000-2001 Tix Project Group.
|
|
973
|
+
Copyright (c) 2004 ActiveState
|
|
974
|
+
|
|
975
|
+
This software is copyrighted by the above entities
|
|
976
|
+
and other parties. The following terms apply to all files associated
|
|
977
|
+
with the software unless explicitly disclaimed in individual files.
|
|
978
|
+
|
|
979
|
+
The authors hereby grant permission to use, copy, modify, distribute,
|
|
980
|
+
and license this software and its documentation for any purpose, provided
|
|
981
|
+
that existing copyright notices are retained in all copies and that this
|
|
982
|
+
notice is included verbatim in any distributions. No written agreement,
|
|
983
|
+
license, or royalty fee is required for any of the authorized uses.
|
|
984
|
+
Modifications to this software may be copyrighted by their authors
|
|
985
|
+
and need not follow the licensing terms described here, provided that
|
|
986
|
+
the new terms are clearly indicated on the first page of each file where
|
|
987
|
+
they apply.
|
|
988
|
+
|
|
989
|
+
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
|
|
990
|
+
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
991
|
+
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
|
|
992
|
+
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
|
|
993
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
994
|
+
|
|
995
|
+
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
|
|
996
|
+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
|
|
997
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
|
|
998
|
+
IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
|
|
999
|
+
NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
|
|
1000
|
+
MODIFICATIONS.
|
|
1001
|
+
|
|
1002
|
+
GOVERNMENT USE: If you are acquiring this software on behalf of the
|
|
1003
|
+
U.S. government, the Government shall have only "Restricted Rights"
|
|
1004
|
+
in the software and related documentation as defined in the Federal
|
|
1005
|
+
Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
|
|
1006
|
+
are acquiring the software on behalf of the Department of Defense, the
|
|
1007
|
+
software shall be classified as "Commercial Computer Software" and the
|
|
1008
|
+
Government shall have only "Restricted Rights" as defined in Clause
|
|
1009
|
+
252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
|
|
1010
|
+
authors grant the U.S. Government and others acting in its behalf
|
|
1011
|
+
permission to use and distribute the software in accordance with the
|
|
1012
|
+
terms specified in this license.
|
|
1013
|
+
|
|
1014
|
+
----------------------------------------------------------------------
|
|
1015
|
+
|
|
1016
|
+
Parts of this software are based on the Tcl/Tk software copyrighted by
|
|
1017
|
+
the Regents of the University of California, Sun Microsystems, Inc.,
|
|
1018
|
+
and other parties. The original license terms of the Tcl/Tk software
|
|
1019
|
+
distribution is included in the file docs/license.tcltk.
|
|
1020
|
+
|
|
1021
|
+
Parts of this software are based on the HTML Library software
|
|
1022
|
+
copyrighted by Sun Microsystems, Inc. The original license terms of
|
|
1023
|
+
the HTML Library software distribution is included in the file
|
|
1024
|
+
docs/license.html_lib.
|
|
1025
|
+
|
|
1026
|
+
|
|
1027
|
+
Graphviz
|
|
1028
|
+
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
|
|
1029
|
+
1. DEFINITIONS
|
|
1030
|
+
"Contribution" means:
|
|
1031
|
+
“
|
|
1032
|
+
a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and
|
|
1033
|
+
b) in the case of each subsequent Contributor:
|
|
1034
|
+
i) changes to the Program, and
|
|
1035
|
+
ii) additions to the Program;
|
|
1036
|
+
where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.
|
|
1037
|
+
"Contributor" means any person or entity that distributes the Program.
|
|
1038
|
+
"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.
|
|
1039
|
+
"Program" means the Contributions distributed in accordance with this Agreement.
|
|
1040
|
+
"Recipient" means anyone who receives the Program under this Agreement, including all Contributors.
|
|
1041
|
+
2. GRANT OF RIGHTS
|
|
1042
|
+
“
|
|
1043
|
+
a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.
|
|
1044
|
+
b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
|
|
1045
|
+
c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
|
|
1046
|
+
d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
|
|
1047
|
+
3. REQUIREMENTS
|
|
1048
|
+
A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:
|
|
1049
|
+
“
|
|
1050
|
+
a) it complies with the terms and conditions of this Agreement; and
|
|
1051
|
+
b) its license agreement:
|
|
1052
|
+
i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
|
|
1053
|
+
ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
|
|
1054
|
+
iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
|
|
1055
|
+
iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.
|
|
1056
|
+
When the Program is made available in source code form:
|
|
1057
|
+
“
|
|
1058
|
+
a) it must be made available under this Agreement; and
|
|
1059
|
+
b) a copy of this Agreement must be included with each copy of the Program.
|
|
1060
|
+
Contributors may not remove or alter any copyright notices contained within the Program.
|
|
1061
|
+
Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.
|
|
1062
|
+
4. COMMERCIAL DISTRIBUTION
|
|
1063
|
+
Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.
|
|
1064
|
+
For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.
|
|
1065
|
+
5. NO WARRANTY
|
|
1066
|
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.
|
|
1067
|
+
6. DISCLAIMER OF LIABILITY
|
|
1068
|
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
|
1069
|
+
7. GENERAL
|
|
1070
|
+
If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
|
|
1071
|
+
If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.
|
|
1072
|
+
All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.
|
|
1073
|
+
Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.
|
|
1074
|
+
This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.
|
|
1075
|
+
|
|
1076
|
+
Python Graphviz package
|
|
1077
|
+
The MIT License (MIT)
|
|
1078
|
+
|
|
1079
|
+
Copyright (c) 2013-2021 Sebastian Bank
|
|
1080
|
+
|
|
1081
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1082
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1083
|
+
in the Software without restriction, including without limitation the rights
|
|
1084
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1085
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1086
|
+
furnished to do so, subject to the following conditions:
|
|
1087
|
+
|
|
1088
|
+
The above copyright notice and this permission notice shall be included in
|
|
1089
|
+
all copies or substantial portions of the Software.
|
|
1090
|
+
|
|
1091
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1092
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1093
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1094
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1095
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1096
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1097
|
+
THE SOFTWARE.
|
|
1098
|
+
|
|
1099
|
+
wxWindows Library Licence, Version 3.1
|
|
1100
|
+
======================================
|
|
1101
|
+
|
|
1102
|
+
Copyright (c) 1998-2005 Julian Smart, Robert Roebling et al
|
|
1103
|
+
|
|
1104
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
1105
|
+
of this licence document, but changing it is not allowed.
|
|
1106
|
+
|
|
1107
|
+
WXWINDOWS LIBRARY LICENCE
|
|
1108
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
1109
|
+
|
|
1110
|
+
This library is free software; you can redistribute it and/or modify it
|
|
1111
|
+
under the terms of the GNU Library General Public Licence as published by
|
|
1112
|
+
the Free Software Foundation; either version 2 of the Licence, or (at
|
|
1113
|
+
your option) any later version.
|
|
1114
|
+
|
|
1115
|
+
This library is distributed in the hope that it will be useful, but
|
|
1116
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
1117
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library
|
|
1118
|
+
General Public Licence for more details.
|
|
1119
|
+
|
|
1120
|
+
You should have received a copy of the GNU Library General Public Licence
|
|
1121
|
+
along with this software, usually in a file named COPYING.LIB. If not,
|
|
1122
|
+
write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
1123
|
+
Boston, MA 02110-1301 USA.
|
|
1124
|
+
|
|
1125
|
+
EXCEPTION NOTICE
|
|
1126
|
+
|
|
1127
|
+
1. As a special exception, the copyright holders of this library give
|
|
1128
|
+
permission for additional uses of the text contained in this release of
|
|
1129
|
+
the library as licenced under the wxWindows Library Licence, applying
|
|
1130
|
+
either version 3.1 of the Licence, or (at your option) any later version of
|
|
1131
|
+
the Licence as published by the copyright holders of version
|
|
1132
|
+
3.1 of the Licence document.
|
|
1133
|
+
|
|
1134
|
+
2. The exception is that you may use, copy, link, modify and distribute
|
|
1135
|
+
under your own terms, binary object code versions of works based
|
|
1136
|
+
on the Library.
|
|
1137
|
+
|
|
1138
|
+
3. If you copy code from files distributed under the terms of the GNU
|
|
1139
|
+
General Public Licence or the GNU Library General Public Licence into a
|
|
1140
|
+
copy of this library, as this licence permits, the exception does not
|
|
1141
|
+
apply to the code that you add in this way. To avoid misleading anyone as
|
|
1142
|
+
to the status of such modified files, you must delete this exception
|
|
1143
|
+
notice from such code and/or adjust the licensing conditions notice
|
|
1144
|
+
accordingly.
|
|
1145
|
+
|
|
1146
|
+
4. If you write modifications of your own for this library, it is your
|
|
1147
|
+
choice whether to permit this exception to apply to your modifications.
|
|
1148
|
+
If you do not wish that, you must delete the exception notice from such
|
|
1149
|
+
code and/or adjust the licensing conditions notice accordingly.
|