sign 0.6.0 → 1.0.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -7
- data/README.md +32 -16
- data/lib/sign/version.rb +1 -1
- data/sign.gemspec +2 -2
- data/vendor/licenses/afl-3.0.txt +43 -0
- data/vendor/licenses/artistic-2.0.txt +201 -0
- data/vendor/licenses/cc-by-4.0.txt +395 -0
- data/vendor/licenses/cc-by-sa-4.0.txt +427 -0
- data/vendor/licenses/cc0-1.0.txt +116 -0
- data/vendor/licenses/ecl-2.0.txt +203 -0
- data/vendor/licenses/epl-1.0.txt +203 -0
- data/vendor/licenses/eupl-1.1.txt +311 -0
- data/vendor/licenses/isc.txt +15 -0
- data/vendor/licenses/lgpl-2.1.txt +504 -0
- data/vendor/licenses/lgpl-3.0.txt +165 -0
- data/vendor/licenses/lppl-1.3c.txt +415 -0
- data/vendor/licenses/mpl-2.0.txt +373 -0
- data/vendor/licenses/ms-pl.txt +22 -0
- data/vendor/licenses/ms-rl.txt +21 -0
- data/vendor/licenses/osl-3.0.txt +172 -0
- data/vendor/licenses/postgresql.txt +19 -0
- data/vendor/licenses/wtfpl.txt +13 -0
- metadata +22 -3
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
Educational Community License
|
|
2
|
+
|
|
3
|
+
Version 2.0, April 2007
|
|
4
|
+
|
|
5
|
+
http://opensource.org/licenses/ECL-2.0
|
|
6
|
+
|
|
7
|
+
The Educational Community License version 2.0 ("ECL") consists of the Apache
|
|
8
|
+
2.0 license, modified to change the scope of the patent grant in section 3 to
|
|
9
|
+
be specific to the needs of the education communities using this license. The
|
|
10
|
+
original Apache 2.0 license can be found at:
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
14
|
+
|
|
15
|
+
1. Definitions.
|
|
16
|
+
|
|
17
|
+
"License" shall mean the terms and conditions for use, reproduction, and
|
|
18
|
+
distribution as defined by Sections 1 through 9 of this document.
|
|
19
|
+
|
|
20
|
+
"Licensor" shall mean the copyright owner or entity authorized by the
|
|
21
|
+
copyright owner that is granting the License.
|
|
22
|
+
|
|
23
|
+
"Legal Entity" shall mean the union of the acting entity and all other
|
|
24
|
+
entities that control, are controlled by, or are under common control with
|
|
25
|
+
that entity. For the purposes of this definition, "control" means (i) the
|
|
26
|
+
power, direct or indirect, to cause the direction or management of such
|
|
27
|
+
entity, whether by contract or otherwise, or (ii) ownership of fifty percent
|
|
28
|
+
(50%) or more of the outstanding shares, or (iii) beneficial ownership of such
|
|
29
|
+
entity.
|
|
30
|
+
|
|
31
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
|
32
|
+
permissions granted by this License.
|
|
33
|
+
|
|
34
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
35
|
+
including but not limited to software source code, documentation source, and
|
|
36
|
+
configuration files.
|
|
37
|
+
|
|
38
|
+
"Object" form shall mean any form resulting from mechanical transformation or
|
|
39
|
+
translation of a Source form, including but not limited to compiled object
|
|
40
|
+
code, generated documentation, and conversions to other media types.
|
|
41
|
+
|
|
42
|
+
"Work" shall mean the work of authorship, whether in Source or Object form,
|
|
43
|
+
made available under the License, as indicated by a copyright notice that is
|
|
44
|
+
included in or attached to the work (an example is provided in the Appendix
|
|
45
|
+
below).
|
|
46
|
+
|
|
47
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that
|
|
48
|
+
is based on (or derived from) the Work and for which the editorial revisions,
|
|
49
|
+
annotations, elaborations, or other modifications represent, as a whole, an
|
|
50
|
+
original work of authorship. For the purposes of this License, Derivative
|
|
51
|
+
Works shall not include works that remain separable from, or merely link (or
|
|
52
|
+
bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
53
|
+
|
|
54
|
+
"Contribution" shall mean any work of authorship, including the original
|
|
55
|
+
version of the Work and any modifications or additions to that Work or
|
|
56
|
+
Derivative Works thereof, that is intentionally submitted to Licensor for
|
|
57
|
+
inclusion in the Work by the copyright owner or by an individual or Legal
|
|
58
|
+
Entity authorized to submit on behalf of the copyright owner. For the purposes
|
|
59
|
+
of this definition, "submitted" means any form of electronic, verbal, or
|
|
60
|
+
written communication sent to the Licensor or its representatives, including
|
|
61
|
+
but not limited to communication on electronic mailing lists, source code
|
|
62
|
+
control systems, and issue tracking systems that are managed by, or on behalf
|
|
63
|
+
of, the Licensor for the purpose of discussing and improving the Work, but
|
|
64
|
+
excluding communication that is conspicuously marked or otherwise designated
|
|
65
|
+
in writing by the copyright owner as "Not a Contribution."
|
|
66
|
+
|
|
67
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
|
|
68
|
+
of whom a Contribution has been received by Licensor and subsequently
|
|
69
|
+
incorporated within the Work.
|
|
70
|
+
|
|
71
|
+
2. Grant of Copyright License.
|
|
72
|
+
|
|
73
|
+
Subject to the terms and conditions of this License, each Contributor hereby
|
|
74
|
+
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
|
75
|
+
irrevocable copyright license to reproduce, prepare Derivative Works of,
|
|
76
|
+
publicly display, publicly perform, sublicense, and distribute the Work and
|
|
77
|
+
such Derivative Works in Source or Object form.
|
|
78
|
+
|
|
79
|
+
3. Grant of Patent License.
|
|
80
|
+
|
|
81
|
+
Subject to the terms and conditions of this License, each Contributor hereby
|
|
82
|
+
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
|
|
83
|
+
irrevocable (except as stated in this section) patent license to make, have
|
|
84
|
+
made, use, offer to sell, sell, import, and otherwise transfer the Work, where
|
|
85
|
+
such license applies only to those patent claims licensable by such
|
|
86
|
+
Contributor that are necessarily infringed by their Contribution(s) alone or
|
|
87
|
+
by combination of their Contribution(s) with the Work to which such
|
|
88
|
+
Contribution(s) was submitted. If You institute patent litigation against any
|
|
89
|
+
entity (including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
90
|
+
the Work or a Contribution incorporated within the Work constitutes direct or
|
|
91
|
+
contributory patent infringement, then any patent licenses granted to You
|
|
92
|
+
under this License for that Work shall terminate as of the date such
|
|
93
|
+
litigation is filed. Any patent license granted hereby with respect to
|
|
94
|
+
contributions by an individual employed by an institution or organization is
|
|
95
|
+
limited to patent claims where the individual that is the author of the Work
|
|
96
|
+
is also the inventor of the patent claims licensed, and where the organization
|
|
97
|
+
or institution has the right to grant such license under applicable grant and
|
|
98
|
+
research funding agreements. No other express or implied licenses are granted.
|
|
99
|
+
|
|
100
|
+
4. Redistribution.
|
|
101
|
+
|
|
102
|
+
You may reproduce and distribute copies of the Work or Derivative Works
|
|
103
|
+
thereof in any medium, with or without modifications, and in Source or Object
|
|
104
|
+
form, provided that You meet the following conditions:
|
|
105
|
+
|
|
106
|
+
You must give any other recipients of the Work or Derivative Works a copy of
|
|
107
|
+
this License; and You must cause any modified files to carry prominent notices
|
|
108
|
+
stating that You changed the files; and You must retain, in the Source form of
|
|
109
|
+
any Derivative Works that You distribute, all copyright, patent, trademark,
|
|
110
|
+
and attribution notices from the Source form of the Work, excluding those
|
|
111
|
+
notices that do not pertain to any part of the Derivative Works; and If the
|
|
112
|
+
Work includes a "NOTICE" text file as part of its distribution, then any
|
|
113
|
+
Derivative Works that You distribute must include a readable copy of the
|
|
114
|
+
attribution notices contained within such NOTICE file, excluding those notices
|
|
115
|
+
that do not pertain to any part of the Derivative Works, in at least one of
|
|
116
|
+
the following places: within a NOTICE text file distributed as part of the
|
|
117
|
+
Derivative Works; within the Source form or documentation, if provided along
|
|
118
|
+
with the Derivative Works; or, within a display generated by the Derivative
|
|
119
|
+
Works, if and wherever such third-party notices normally appear. The contents
|
|
120
|
+
of the NOTICE file are for informational purposes only and do not modify the
|
|
121
|
+
License. You may add Your own attribution notices within Derivative Works that
|
|
122
|
+
You distribute, alongside or as an addendum to the NOTICE text from the Work,
|
|
123
|
+
provided that such additional attribution notices cannot be construed as
|
|
124
|
+
modifying the License. You may add Your own copyright statement to Your
|
|
125
|
+
modifications and may provide additional or different license terms and
|
|
126
|
+
conditions for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use, reproduction, and
|
|
128
|
+
distribution of the Work otherwise complies with the conditions stated in this
|
|
129
|
+
License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions.
|
|
132
|
+
|
|
133
|
+
Unless You explicitly state otherwise, any Contribution intentionally
|
|
134
|
+
submitted for inclusion in the Work by You to the Licensor shall be under the
|
|
135
|
+
terms and conditions of this License, without any additional terms or
|
|
136
|
+
conditions. Notwithstanding the above, nothing herein shall supersede or
|
|
137
|
+
modify the terms of any separate license agreement you may have executed with
|
|
138
|
+
Licensor regarding such Contributions.
|
|
139
|
+
|
|
140
|
+
6. Trademarks.
|
|
141
|
+
|
|
142
|
+
This License does not grant permission to use the trade names, trademarks,
|
|
143
|
+
service marks, or product names of the Licensor, except as required for
|
|
144
|
+
reasonable and customary use in describing the origin of the Work and
|
|
145
|
+
reproducing the content of the NOTICE file.
|
|
146
|
+
|
|
147
|
+
7. Disclaimer of Warranty.
|
|
148
|
+
|
|
149
|
+
Unless required by applicable law or agreed to in writing, Licensor provides
|
|
150
|
+
the Work (and each Contributor provides its Contributions) on an "AS IS"
|
|
151
|
+
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
152
|
+
implied, including, without limitation, any warranties or conditions of TITLE,
|
|
153
|
+
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You
|
|
154
|
+
are solely responsible for determining the appropriateness of using or
|
|
155
|
+
redistributing the Work and assume any risks associated with Your exercise of
|
|
156
|
+
permissions under this License.
|
|
157
|
+
|
|
158
|
+
8. Limitation of Liability.
|
|
159
|
+
|
|
160
|
+
In no event and under no legal theory, whether in tort (including negligence),
|
|
161
|
+
contract, or otherwise, unless required by applicable law (such as deliberate
|
|
162
|
+
and grossly negligent acts) or agreed to in writing, shall any Contributor be
|
|
163
|
+
liable to You for damages, including any direct, indirect, special,
|
|
164
|
+
incidental, or consequential damages of any character arising as a result of
|
|
165
|
+
this License or out of the use or inability to use the Work (including but not
|
|
166
|
+
limited to damages for loss of goodwill, work stoppage, computer failure or
|
|
167
|
+
malfunction, or any and all other commercial damages or losses), even if such
|
|
168
|
+
Contributor has been advised of the possibility of such damages.
|
|
169
|
+
|
|
170
|
+
9. Accepting Warranty or Additional Liability.
|
|
171
|
+
|
|
172
|
+
While redistributing the Work or Derivative Works thereof, You may choose to
|
|
173
|
+
offer, and charge a fee for, acceptance of support, warranty, indemnity, or
|
|
174
|
+
other liability obligations and/or rights consistent with this License.
|
|
175
|
+
However, in accepting such obligations, You may act only on Your own behalf
|
|
176
|
+
and on Your sole responsibility, not on behalf of any other Contributor, and
|
|
177
|
+
only if You agree to indemnify, defend, and hold each Contributor harmless for
|
|
178
|
+
any liability incurred by, or claims asserted against, such Contributor by
|
|
179
|
+
reason of your accepting any such warranty or additional liability.
|
|
180
|
+
|
|
181
|
+
END OF TERMS AND CONDITIONS
|
|
182
|
+
|
|
183
|
+
APPENDIX: How to apply the Educational Community License to your work
|
|
184
|
+
|
|
185
|
+
To apply the Educational Community License to your work, attach the following
|
|
186
|
+
boilerplate notice, with the fields enclosed by brackets "[]" replaced with
|
|
187
|
+
your own identifying information. (Don't include the brackets!) The text
|
|
188
|
+
should be enclosed in the appropriate comment syntax for the file format. We
|
|
189
|
+
also recommend that a file or class name and description of purpose be
|
|
190
|
+
included on the same "printed page" as the copyright notice for easier
|
|
191
|
+
identification within third-party archives.
|
|
192
|
+
|
|
193
|
+
Copyright [YEAR] [AUTHOR] Licensed under the Educational
|
|
194
|
+
Community License, Version 2.0 (the "License"); you may not use this file
|
|
195
|
+
except in compliance with the License. You may obtain a copy of the License at
|
|
196
|
+
|
|
197
|
+
http://opensource.org/licenses/ECL-2.0
|
|
198
|
+
|
|
199
|
+
Unless required by applicable law or agreed to in writing, software
|
|
200
|
+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
201
|
+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
202
|
+
License for the specific language governing permissions and limitations under
|
|
203
|
+
the License.
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
Eclipse Public License - v 1.0
|
|
2
|
+
|
|
3
|
+
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
|
|
4
|
+
LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
|
|
5
|
+
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
|
|
6
|
+
|
|
7
|
+
1. DEFINITIONS
|
|
8
|
+
|
|
9
|
+
"Contribution" means:
|
|
10
|
+
|
|
11
|
+
a) in the case of the initial Contributor, the initial code and documentation
|
|
12
|
+
distributed under this Agreement, and
|
|
13
|
+
b) in the case of each subsequent Contributor:
|
|
14
|
+
i) changes to the Program, and
|
|
15
|
+
ii) additions to the Program;
|
|
16
|
+
|
|
17
|
+
where such changes and/or additions to the Program originate from and are
|
|
18
|
+
distributed by that particular Contributor. A Contribution 'originates'
|
|
19
|
+
from a Contributor if it was added to the Program by such Contributor
|
|
20
|
+
itself or anyone acting on such Contributor's behalf. Contributions do not
|
|
21
|
+
include additions to the Program which: (i) are separate modules of
|
|
22
|
+
software distributed in conjunction with the Program under their own
|
|
23
|
+
license agreement, and (ii) are not derivative works of the Program.
|
|
24
|
+
|
|
25
|
+
"Contributor" means any person or entity that distributes the Program.
|
|
26
|
+
|
|
27
|
+
"Licensed Patents" mean patent claims licensable by a Contributor which are
|
|
28
|
+
necessarily infringed by the use or sale of its Contribution alone or when
|
|
29
|
+
combined with the Program.
|
|
30
|
+
|
|
31
|
+
"Program" means the Contributions distributed in accordance with this
|
|
32
|
+
Agreement.
|
|
33
|
+
|
|
34
|
+
"Recipient" means anyone who receives the Program under this Agreement,
|
|
35
|
+
including all Contributors.
|
|
36
|
+
|
|
37
|
+
2. GRANT OF RIGHTS
|
|
38
|
+
a) Subject to the terms of this Agreement, each Contributor hereby grants
|
|
39
|
+
Recipient a non-exclusive, worldwide, royalty-free copyright license to
|
|
40
|
+
reproduce, prepare derivative works of, publicly display, publicly
|
|
41
|
+
perform, distribute and sublicense the Contribution of such Contributor,
|
|
42
|
+
if any, and such derivative works, in source code and object code form.
|
|
43
|
+
b) Subject to the terms of this Agreement, each Contributor hereby grants
|
|
44
|
+
Recipient a non-exclusive, worldwide, royalty-free patent license under
|
|
45
|
+
Licensed Patents to make, use, sell, offer to sell, import and otherwise
|
|
46
|
+
transfer the Contribution of such Contributor, if any, in source code and
|
|
47
|
+
object code form. This patent license shall apply to the combination of
|
|
48
|
+
the Contribution and the Program if, at the time the Contribution is
|
|
49
|
+
added by the Contributor, such addition of the Contribution causes such
|
|
50
|
+
combination to be covered by the Licensed Patents. The patent license
|
|
51
|
+
shall not apply to any other combinations which include the Contribution.
|
|
52
|
+
No hardware per se is licensed hereunder.
|
|
53
|
+
c) Recipient understands that although each Contributor grants the licenses
|
|
54
|
+
to its Contributions set forth herein, no assurances are provided by any
|
|
55
|
+
Contributor that the Program does not infringe the patent or other
|
|
56
|
+
intellectual property rights of any other entity. Each Contributor
|
|
57
|
+
disclaims any liability to Recipient for claims brought by any other
|
|
58
|
+
entity based on infringement of intellectual property rights or
|
|
59
|
+
otherwise. As a condition to exercising the rights and licenses granted
|
|
60
|
+
hereunder, each Recipient hereby assumes sole responsibility to secure
|
|
61
|
+
any other intellectual property rights needed, if any. For example, if a
|
|
62
|
+
third party patent license is required to allow Recipient to distribute
|
|
63
|
+
the Program, it is Recipient's responsibility to acquire that license
|
|
64
|
+
before distributing the Program.
|
|
65
|
+
d) Each Contributor represents that to its knowledge it has sufficient
|
|
66
|
+
copyright rights in its Contribution, if any, to grant the copyright
|
|
67
|
+
license set forth in this Agreement.
|
|
68
|
+
|
|
69
|
+
3. REQUIREMENTS
|
|
70
|
+
|
|
71
|
+
A Contributor may choose to distribute the Program in object code form under
|
|
72
|
+
its own license agreement, provided that:
|
|
73
|
+
|
|
74
|
+
a) it complies with the terms and conditions of this Agreement; and
|
|
75
|
+
b) its license agreement:
|
|
76
|
+
i) effectively disclaims on behalf of all Contributors all warranties
|
|
77
|
+
and conditions, express and implied, including warranties or
|
|
78
|
+
conditions of title and non-infringement, and implied warranties or
|
|
79
|
+
conditions of merchantability and fitness for a particular purpose;
|
|
80
|
+
ii) effectively excludes on behalf of all Contributors all liability for
|
|
81
|
+
damages, including direct, indirect, special, incidental and
|
|
82
|
+
consequential damages, such as lost profits;
|
|
83
|
+
iii) states that any provisions which differ from this Agreement are
|
|
84
|
+
offered by that Contributor alone and not by any other party; and
|
|
85
|
+
iv) states that source code for the Program is available from such
|
|
86
|
+
Contributor, and informs licensees how to obtain it in a reasonable
|
|
87
|
+
manner on or through a medium customarily used for software exchange.
|
|
88
|
+
|
|
89
|
+
When the Program is made available in source code form:
|
|
90
|
+
|
|
91
|
+
a) it must be made available under this Agreement; and
|
|
92
|
+
b) a copy of this Agreement must be included with each copy of the Program.
|
|
93
|
+
Contributors may not remove or alter any copyright notices contained
|
|
94
|
+
within the Program.
|
|
95
|
+
|
|
96
|
+
Each Contributor must identify itself as the originator of its Contribution,
|
|
97
|
+
if
|
|
98
|
+
any, in a manner that reasonably allows subsequent Recipients to identify the
|
|
99
|
+
originator of the Contribution.
|
|
100
|
+
|
|
101
|
+
4. COMMERCIAL DISTRIBUTION
|
|
102
|
+
|
|
103
|
+
Commercial distributors of software may accept certain responsibilities with
|
|
104
|
+
respect to end users, business partners and the like. While this license is
|
|
105
|
+
intended to facilitate the commercial use of the Program, the Contributor who
|
|
106
|
+
includes the Program in a commercial product offering should do so in a manner
|
|
107
|
+
which does not create potential liability for other Contributors. Therefore,
|
|
108
|
+
if a Contributor includes the Program in a commercial product offering, such
|
|
109
|
+
Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
|
|
110
|
+
every other Contributor ("Indemnified Contributor") against any losses,
|
|
111
|
+
damages and costs (collectively "Losses") arising from claims, lawsuits and
|
|
112
|
+
other legal actions brought by a third party against the Indemnified
|
|
113
|
+
Contributor to the extent caused by the acts or omissions of such Commercial
|
|
114
|
+
Contributor in connection with its distribution of the Program in a commercial
|
|
115
|
+
product offering. The obligations in this section do not apply to any claims
|
|
116
|
+
or Losses relating to any actual or alleged intellectual property
|
|
117
|
+
infringement. In order to qualify, an Indemnified Contributor must:
|
|
118
|
+
a) promptly notify the Commercial Contributor in writing of such claim, and
|
|
119
|
+
b) allow the Commercial Contributor to control, and cooperate with the
|
|
120
|
+
Commercial Contributor in, the defense and any related settlement
|
|
121
|
+
negotiations. The Indemnified Contributor may participate in any such claim at
|
|
122
|
+
its own expense.
|
|
123
|
+
|
|
124
|
+
For example, a Contributor might include the Program in a commercial product
|
|
125
|
+
offering, Product X. That Contributor is then a Commercial Contributor. If
|
|
126
|
+
that Commercial Contributor then makes performance claims, or offers
|
|
127
|
+
warranties related to Product X, those performance claims and warranties are
|
|
128
|
+
such Commercial Contributor's responsibility alone. Under this section, the
|
|
129
|
+
Commercial Contributor would have to defend claims against the other
|
|
130
|
+
Contributors related to those performance claims and warranties, and if a
|
|
131
|
+
court requires any other Contributor to pay any damages as a result, the
|
|
132
|
+
Commercial Contributor must pay those damages.
|
|
133
|
+
|
|
134
|
+
5. NO WARRANTY
|
|
135
|
+
|
|
136
|
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
|
|
137
|
+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
|
|
138
|
+
IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
|
|
139
|
+
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
|
|
140
|
+
Recipient is solely responsible for determining the appropriateness of using
|
|
141
|
+
and distributing the Program and assumes all risks associated with its
|
|
142
|
+
exercise of rights under this Agreement , including but not limited to the
|
|
143
|
+
risks and costs of program errors, compliance with applicable laws, damage to
|
|
144
|
+
or loss of data, programs or equipment, and unavailability or interruption of
|
|
145
|
+
operations.
|
|
146
|
+
|
|
147
|
+
6. DISCLAIMER OF LIABILITY
|
|
148
|
+
|
|
149
|
+
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
|
|
150
|
+
CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
151
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
|
|
152
|
+
LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
153
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
154
|
+
ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
|
|
155
|
+
EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
|
|
156
|
+
OF SUCH DAMAGES.
|
|
157
|
+
|
|
158
|
+
7. GENERAL
|
|
159
|
+
|
|
160
|
+
If any provision of this Agreement is invalid or unenforceable under
|
|
161
|
+
applicable law, it shall not affect the validity or enforceability of the
|
|
162
|
+
remainder of the terms of this Agreement, and without further action by the
|
|
163
|
+
parties hereto, such provision shall be reformed to the minimum extent
|
|
164
|
+
necessary to make such provision valid and enforceable.
|
|
165
|
+
|
|
166
|
+
If Recipient institutes patent litigation against any entity (including a
|
|
167
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Program itself
|
|
168
|
+
(excluding combinations of the Program with other software or hardware)
|
|
169
|
+
infringes such Recipient's patent(s), then such Recipient's rights granted
|
|
170
|
+
under Section 2(b) shall terminate as of the date such litigation is filed.
|
|
171
|
+
|
|
172
|
+
All Recipient's rights under this Agreement shall terminate if it fails to
|
|
173
|
+
comply with any of the material terms or conditions of this Agreement and does
|
|
174
|
+
not cure such failure in a reasonable period of time after becoming aware of
|
|
175
|
+
such noncompliance. If all Recipient's rights under this Agreement terminate,
|
|
176
|
+
Recipient agrees to cease use and distribution of the Program as soon as
|
|
177
|
+
reasonably practicable. However, Recipient's obligations under this Agreement
|
|
178
|
+
and any licenses granted by Recipient relating to the Program shall continue
|
|
179
|
+
and survive.
|
|
180
|
+
|
|
181
|
+
Everyone is permitted to copy and distribute copies of this Agreement, but in
|
|
182
|
+
order to avoid inconsistency the Agreement is copyrighted and may only be
|
|
183
|
+
modified in the following manner. The Agreement Steward reserves the right to
|
|
184
|
+
publish new versions (including revisions) of this Agreement from time to
|
|
185
|
+
time. No one other than the Agreement Steward has the right to modify this
|
|
186
|
+
Agreement. The Eclipse Foundation is the initial Agreement Steward. The
|
|
187
|
+
Eclipse Foundation may assign the responsibility to serve as the Agreement
|
|
188
|
+
Steward to a suitable separate entity. Each new version of the Agreement will
|
|
189
|
+
be given a distinguishing version number. The Program (including
|
|
190
|
+
Contributions) may always be distributed subject to the version of the
|
|
191
|
+
Agreement under which it was received. In addition, after a new version of the
|
|
192
|
+
Agreement is published, Contributor may elect to distribute the Program
|
|
193
|
+
(including its Contributions) under the new version. Except as expressly
|
|
194
|
+
stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
|
|
195
|
+
licenses to the intellectual property of any Contributor under this Agreement,
|
|
196
|
+
whether expressly, by implication, estoppel or otherwise. All rights in the
|
|
197
|
+
Program not expressly granted under this Agreement are reserved.
|
|
198
|
+
|
|
199
|
+
This Agreement is governed by the laws of the State of New York and the
|
|
200
|
+
intellectual property laws of the United States of America. No party to this
|
|
201
|
+
Agreement will bring a legal action under this Agreement more than one year
|
|
202
|
+
after the cause of action arose. Each party waives its rights to a jury trial in
|
|
203
|
+
any resulting litigation.
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
European Union Public Licence
|
|
2
|
+
V. 1.1
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
EUPL © the European Community 2007
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
This European Union Public Licence (the “EUPL”) applies to the
|
|
9
|
+
Work or Software (as defined below) which is provided under the terms of this
|
|
10
|
+
Licence. Any use of the Work, other than as authorised under this Licence is
|
|
11
|
+
prohibited (to the extent such use is covered by a right of the copyright
|
|
12
|
+
holder of the Work).
|
|
13
|
+
|
|
14
|
+
The Original Work is provided under the terms of this
|
|
15
|
+
Licence when the Licensor (as defined below) has placed the following notice
|
|
16
|
+
immediately following the copyright notice for the Original Work:
|
|
17
|
+
|
|
18
|
+
Licensed under the EUPL V.1.1
|
|
19
|
+
|
|
20
|
+
or has expressed by any other mean his willingness to license under the EUPL.
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
1. Definitions
|
|
24
|
+
|
|
25
|
+
In this Licence, the
|
|
26
|
+
following terms have the following meaning:
|
|
27
|
+
|
|
28
|
+
- The Licence: this Licence.
|
|
29
|
+
|
|
30
|
+
- The Original Work or the Software: the software distributed
|
|
31
|
+
and/or communicated by the Licensor under this Licence, available as Source
|
|
32
|
+
Code and also as Executable Code as the case may be.
|
|
33
|
+
|
|
34
|
+
- Derivative Works:
|
|
35
|
+
the works or software that could be created by the Licensee, based upon the
|
|
36
|
+
Original Work or modifications thereof. This Licence does not define the
|
|
37
|
+
extent of modification or dependence on the Original Work required in order to
|
|
38
|
+
classify a work as a Derivative Work; this extent is determined by copyright
|
|
39
|
+
law applicable in the country mentioned in Article 15.
|
|
40
|
+
|
|
41
|
+
- The Work: the Original Work and/or its Derivative Works.
|
|
42
|
+
|
|
43
|
+
- The Source Code: the human-readable form of the Work which is the most
|
|
44
|
+
convenient for people to study and modify.
|
|
45
|
+
|
|
46
|
+
- The Executable Code: any code which has generally been compiled and which
|
|
47
|
+
is meant to be interpreted by a computer as a program.
|
|
48
|
+
|
|
49
|
+
- The Licensor: the natural or legal person that distributes and/or
|
|
50
|
+
communicates the Work under the Licence.
|
|
51
|
+
|
|
52
|
+
- Contributor(s): any natural or legal person who modifies the Work under the
|
|
53
|
+
Licence, or otherwise contributes to the creation of a Derivative Work.
|
|
54
|
+
|
|
55
|
+
- The Licensee or “You”: any natural or legal person who makes any usage of
|
|
56
|
+
the Software under the terms of the Licence.
|
|
57
|
+
|
|
58
|
+
- Distribution and/or Communication: any act of selling, giving, lending,
|
|
59
|
+
renting, distributing, communicating, transmitting, or otherwise
|
|
60
|
+
making available, on-line or off-line, copies of the Work or providing access
|
|
61
|
+
to its essential functionalities at the disposal of any other natural or legal
|
|
62
|
+
person.
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
2. Scope of the rights granted by the Licence
|
|
66
|
+
|
|
67
|
+
The Licensor hereby grants You a world-wide, royalty-free, non-exclusive,
|
|
68
|
+
sub-licensable licence to do the following, for the duration of copyright
|
|
69
|
+
vested in the Original Work:
|
|
70
|
+
|
|
71
|
+
- use the Work in any circumstance and for all usage,
|
|
72
|
+
- reproduce the Work,
|
|
73
|
+
- modify the Original Work, and make Derivative Works
|
|
74
|
+
based upon the Work,
|
|
75
|
+
- communicate to the public, including the right to make available or display
|
|
76
|
+
the Work or copies thereof to the public and perform publicly, as the case
|
|
77
|
+
may be, the Work,
|
|
78
|
+
- distribute the Work or copies thereof,
|
|
79
|
+
- lend and rent the Work or copies thereof,
|
|
80
|
+
- sub-license rights in the Work or copies thereof.
|
|
81
|
+
|
|
82
|
+
Those rights can be exercised on any media, supports and formats, whether now
|
|
83
|
+
known or later invented, as far as the applicable law permits so.
|
|
84
|
+
|
|
85
|
+
In the countries where moral rights apply, the Licensor waives his right to
|
|
86
|
+
exercise his moral right to the extent allowed by law in order to make
|
|
87
|
+
effective the licence of the economic rights here above listed.
|
|
88
|
+
|
|
89
|
+
The Licensor grants to the Licensee royalty-free, non exclusive usage rights
|
|
90
|
+
to any patents held by the Licensor, to the extent necessary to make use of
|
|
91
|
+
the rights granted on the Work under this Licence.
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
3. Communication of the Source Code
|
|
95
|
+
|
|
96
|
+
The Licensor may provide the Work either
|
|
97
|
+
in its Source Code form, or as Executable Code. If the Work is provided as
|
|
98
|
+
Executable Code, the Licensor provides in addition a machine-readable copy of
|
|
99
|
+
the Source Code of the Work along with each copy of the Work that the Licensor
|
|
100
|
+
distributes or indicates, in a notice following the copyright notice attached
|
|
101
|
+
to the Work, a repository where the Source Code is easily and freely
|
|
102
|
+
accessible for as long as the Licensor continues to distribute and/or
|
|
103
|
+
communicate the Work.
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
4. Limitations on copyright
|
|
107
|
+
|
|
108
|
+
Nothing in this Licence is intended to deprive the Licensee of the benefits
|
|
109
|
+
from any exception or limitation to the exclusive rights of the rights owners
|
|
110
|
+
in the Original Work or Software, of the exhaustion of those rights or of
|
|
111
|
+
other applicable limitations thereto.
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
5. Obligations of the Licensee
|
|
115
|
+
|
|
116
|
+
The grant of the rights mentioned above is subject to some restrictions and
|
|
117
|
+
obligations imposed on the Licensee. Those obligations are the following:
|
|
118
|
+
|
|
119
|
+
Attribution right:
|
|
120
|
+
the Licensee shall keep intact all copyright, patent or trademarks notices and
|
|
121
|
+
all notices that refer to the Licence and to the disclaimer of warranties. The
|
|
122
|
+
Licensee must include a copy of such notices and a copy of the Licence with
|
|
123
|
+
every copy of the Work he/she distributes and/or communicates. The Licensee
|
|
124
|
+
must cause any Derivative Work to carry prominent notices stating that the
|
|
125
|
+
Work has been modified and the date of modification.
|
|
126
|
+
|
|
127
|
+
Copyleft clause:
|
|
128
|
+
If the Licensee distributes and/or communicates copies of the Original Works
|
|
129
|
+
or Derivative Works based upon the Original Work, this Distribution and/or
|
|
130
|
+
Communication will be done under the terms of this Licence or of a later
|
|
131
|
+
version of this Licence unless the Original Work is expressly distributed only
|
|
132
|
+
under this version of the Licence. The Licensee (becoming Licensor) cannot
|
|
133
|
+
offer or impose any additional terms or conditions on the Work or Derivative
|
|
134
|
+
Work that alter or restrict the terms of the Licence.
|
|
135
|
+
|
|
136
|
+
Compatibility clause:
|
|
137
|
+
If the Licensee Distributes and/or Communicates Derivative Works or copies
|
|
138
|
+
thereof based upon both the Original Work and another work licensed under a
|
|
139
|
+
Compatible Licence, this Distribution and/or Communication can be done under
|
|
140
|
+
the terms of this Compatible Licence. For the sake of this clause,
|
|
141
|
+
“Compatible Licence” refers to the licences listed in the appendix
|
|
142
|
+
attached to this Licence. Should the Licensee’s obligations under the
|
|
143
|
+
Compatible Licence conflict with his/her obligations under this Licence, the
|
|
144
|
+
obligations of the Compatible Licence shall prevail.
|
|
145
|
+
|
|
146
|
+
Provision of Source Code:
|
|
147
|
+
When distributing and/or communicating copies of the Work, the Licensee
|
|
148
|
+
will provide a machine-readable copy of the Source Code or indicate a
|
|
149
|
+
repository where this Source will be easily and freely available for as long
|
|
150
|
+
as the Licensee continues to distribute and/or communicate the Work.
|
|
151
|
+
|
|
152
|
+
Legal Protection:
|
|
153
|
+
This Licence does not grant permission to use the trade names,
|
|
154
|
+
trademarks, service marks, or names of the Licensor, except as required for
|
|
155
|
+
reasonable and customary use in describing the origin of the Work and
|
|
156
|
+
reproducing the content of the copyright notice.
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
6. Chain of Authorship
|
|
160
|
+
|
|
161
|
+
The original Licensor warrants that the copyright in the Original Work
|
|
162
|
+
granted hereunder is owned by him/her or licensed to him/her and
|
|
163
|
+
that he/she has the power and authority to grant the Licence.
|
|
164
|
+
|
|
165
|
+
Each Contributor warrants that the copyright in the modifications he/she
|
|
166
|
+
brings to the Work are owned by him/her or licensed to him/her and that
|
|
167
|
+
he/she has the power and authority to grant the Licence.
|
|
168
|
+
|
|
169
|
+
Each time You accept the Licence, the original Licensor and subsequent
|
|
170
|
+
Contributors grant You a licence to their contributions to the Work, under
|
|
171
|
+
the terms of this Licence.
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
7. Disclaimer of Warranty
|
|
175
|
+
|
|
176
|
+
The Work is a work in progress, which is continuously improved by numerous
|
|
177
|
+
contributors. It is not a finished work and may therefore contain defects or
|
|
178
|
+
“bugs” inherent to this type of software development.
|
|
179
|
+
|
|
180
|
+
For the above reason, the Work is provided under the Licence on an “as is”
|
|
181
|
+
basis and without warranties of any kind concerning the Work, including
|
|
182
|
+
without limitation merchantability, fitness for a particular purpose, absence
|
|
183
|
+
of defects or errors, accuracy, non-infringement of intellectual property
|
|
184
|
+
rights other than copyright as stated in Article 6 of this Licence.
|
|
185
|
+
|
|
186
|
+
This disclaimer of warranty is an essential part of the Licence and a
|
|
187
|
+
condition for the grant of any rights to the Work.
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
8. Disclaimer of Liability
|
|
191
|
+
|
|
192
|
+
Except in the cases of wilful misconduct or damages directly caused to
|
|
193
|
+
natural persons, the Licensor will in no event be liable for any direct or
|
|
194
|
+
indirect, material or moral, damages of any kind, arising out of the Licence
|
|
195
|
+
or of the use of the Work, including without limitation,
|
|
196
|
+
damages for loss of goodwill, work stoppage, computer failure or malfunction,
|
|
197
|
+
loss of data or any commercial damage, even if the Licensor has been advised
|
|
198
|
+
of the possibility of such damage. However, the Licensor will be liable under
|
|
199
|
+
statutory product liability laws as far such laws apply to the Work.
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
9. Additional agreements
|
|
203
|
+
|
|
204
|
+
While distributing the Original Work or Derivative Works, You may choose
|
|
205
|
+
to conclude an additional agreement to offer, and charge a fee for,
|
|
206
|
+
acceptance of support, warranty, indemnity, or other liability
|
|
207
|
+
obligations and/or services consistent with this Licence. However, in
|
|
208
|
+
accepting such obligations, You may act only on your own behalf and on your
|
|
209
|
+
sole responsibility, not on behalf of the original Licensor or any other
|
|
210
|
+
Contributor, and only if You agree to indemnify, defend, and hold each
|
|
211
|
+
Contributor harmless for any liability incurred by, or claims asserted against
|
|
212
|
+
such Contributor by the fact You have accepted any such warranty or additional
|
|
213
|
+
liability.
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
10. Acceptance of the Licence
|
|
217
|
+
|
|
218
|
+
The provisions of this Licence can be accepted by clicking on
|
|
219
|
+
an icon “I agree” placed under the bottom of a window displaying the text of
|
|
220
|
+
this Licence or by affirming consent in any other similar way, in accordance
|
|
221
|
+
with the rules of applicable law. Clicking on that icon indicates your clear
|
|
222
|
+
and irrevocable acceptance of this Licence and
|
|
223
|
+
all of its terms and conditions.
|
|
224
|
+
|
|
225
|
+
Similarly, you irrevocably accept this Licence and
|
|
226
|
+
all of its terms and conditions by exercising any rights granted to You
|
|
227
|
+
by Article 2 of this Licence, such as the use of the Work,
|
|
228
|
+
the creation by You of a Derivative Work or the Distribution and/or
|
|
229
|
+
Communication by You of the Work or copies thereof.
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
11. Information to the public
|
|
233
|
+
|
|
234
|
+
In case of any Distribution and/or Communication of the Work by means of
|
|
235
|
+
electronic communication by You (for example, by offering to download
|
|
236
|
+
the Work from a remote location) the distribution channel or media (for
|
|
237
|
+
example, a website) must at least provide to the public the information
|
|
238
|
+
requested by the applicable law regarding the Licensor, the Licence and the
|
|
239
|
+
way it may be accessible, concluded, stored and reproduced by the
|
|
240
|
+
Licensee.
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
12. Termination of the Licence
|
|
244
|
+
|
|
245
|
+
The Licence and the rights granted hereunder will terminate automatically
|
|
246
|
+
upon any breach by the Licensee of the terms of the Licence.
|
|
247
|
+
|
|
248
|
+
Such a termination will not terminate the licences of any person who has
|
|
249
|
+
received the Work from the Licensee under the Licence, provided such persons
|
|
250
|
+
remain in full compliance with the Licence.
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
13. Miscellaneous
|
|
254
|
+
|
|
255
|
+
Without prejudice of Article 9 above, the Licence represents the complete
|
|
256
|
+
agreement between the Parties as to the Work licensed hereunder.
|
|
257
|
+
|
|
258
|
+
If any provision of the Licence is invalid or unenforceable under applicable
|
|
259
|
+
law, this will not affect the validity or enforceability of the Licence as a
|
|
260
|
+
whole. Such provision will be construed and/or reformed so as necessary
|
|
261
|
+
to make it valid and enforceable.
|
|
262
|
+
|
|
263
|
+
The European Commission may publish other linguistic versions and/or new
|
|
264
|
+
versions of this Licence, so far this is required and reasonable, without
|
|
265
|
+
reducing the scope of the rights granted by the Licence.
|
|
266
|
+
New versions of the Licence will be published with a unique version number.
|
|
267
|
+
|
|
268
|
+
All linguistic versions of this Licence, approved by the European Commission,
|
|
269
|
+
have identical value. Parties can take advantage of the linguistic version
|
|
270
|
+
of their choice.
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
14. Jurisdiction
|
|
274
|
+
|
|
275
|
+
Any litigation resulting from the interpretation of this License, arising
|
|
276
|
+
between the European Commission, as a Licensor, and any Licensee,
|
|
277
|
+
will be subject to the jurisdiction of the Court of Justice of the
|
|
278
|
+
European Communities, as laid down in article 238 of the Treaty establishing
|
|
279
|
+
the European Community.
|
|
280
|
+
|
|
281
|
+
Any litigation arising between Parties, other than the European Commission,
|
|
282
|
+
and resulting from the interpretation of this License, will be subject to the
|
|
283
|
+
exclusive jurisdiction of the competent court where the Licensor resides or
|
|
284
|
+
conducts its primary business.
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
15. Applicable Law
|
|
288
|
+
|
|
289
|
+
This Licence shall be governed by the law of the European Union country where
|
|
290
|
+
the Licensor resides or has his registered office.
|
|
291
|
+
|
|
292
|
+
This licence shall be governed by the Belgian law if:
|
|
293
|
+
|
|
294
|
+
- a litigation arises between the European Commission, as a Licensor, and any
|
|
295
|
+
Licensee;
|
|
296
|
+
- the Licensor, other than the European Commission, has no residence or
|
|
297
|
+
registered office inside a European Union country.
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
===
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
Appendix
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
“Compatible Licences” according to article 5 EUPL are:
|
|
307
|
+
- GNU General Public License (GNU GPL) v. 2
|
|
308
|
+
- Open Software License (OSL) v. 2.1, v. 3.0
|
|
309
|
+
- Common Public License v. 1.0
|
|
310
|
+
- Eclipse Public License v. 1.0
|
|
311
|
+
- Cecill v. 2.0
|