licensee 9.14.1 → 9.15.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.md +1 -1
  3. data/bin/licensee +1 -1
  4. data/lib/licensee/commands/detect.rb +3 -5
  5. data/lib/licensee/commands/diff.rb +3 -7
  6. data/lib/licensee/content_helper.rb +30 -28
  7. data/lib/licensee/hash_helper.rb +1 -1
  8. data/lib/licensee/license.rb +31 -18
  9. data/lib/licensee/matchers/copyright.rb +3 -8
  10. data/lib/licensee/matchers/cran.rb +1 -1
  11. data/lib/licensee/matchers/dice.rb +6 -8
  12. data/lib/licensee/project_files/license_file.rb +29 -24
  13. data/lib/licensee/project_files/project_file.rb +2 -4
  14. data/lib/licensee/project_files/readme_file.rb +1 -1
  15. data/lib/licensee/projects/fs_project.rb +1 -3
  16. data/lib/licensee/projects/git_project.rb +6 -6
  17. data/lib/licensee/projects/project.rb +14 -19
  18. data/lib/licensee/version.rb +1 -1
  19. data/lib/licensee.rb +7 -4
  20. data/licensee.gemspec +6 -4
  21. data/spec/fixture_spec.rb +2 -2
  22. data/spec/fixtures/bsd-3-authorowner/LICENSE +27 -0
  23. data/spec/fixtures/cc-by-sa-mdlinks/License.md +173 -0
  24. data/spec/fixtures/cc-by-sa-nocclicensor/License.md +425 -0
  25. data/spec/fixtures/detect.json +5 -5
  26. data/spec/fixtures/eupl-cal2017/LICENSE.txt +274 -0
  27. data/spec/fixtures/fixtures.yml +45 -25
  28. data/spec/fixtures/license-hashes.json +40 -38
  29. data/spec/fixtures/pixar-modified-apache/LICENSE.txt +174 -0
  30. data/spec/integration_spec.rb +46 -6
  31. data/spec/licensee/commands/detect_spec.rb +2 -2
  32. data/spec/licensee/content_helper_spec.rb +18 -13
  33. data/spec/licensee/license_spec.rb +6 -6
  34. data/spec/licensee/matchers/dice_matcher_spec.rb +3 -3
  35. data/spec/licensee/project_files/license_file_spec.rb +9 -3
  36. data/spec/licensee/project_files/package_info_spec.rb +2 -2
  37. data/spec/licensee/project_spec.rb +4 -5
  38. data/spec/licensee_spec.rb +8 -2
  39. data/spec/spec_helper.rb +3 -3
  40. data/spec/vendored_license_spec.rb +1 -3
  41. data/vendor/choosealicense.com/_licenses/0bsd.txt +4 -2
  42. data/vendor/choosealicense.com/_licenses/afl-3.0.txt +12 -12
  43. data/vendor/choosealicense.com/_licenses/apache-2.0.txt +1 -1
  44. data/vendor/choosealicense.com/_licenses/bsd-3-clause.txt +2 -2
  45. data/vendor/choosealicense.com/_licenses/bsl-1.0.txt +1 -1
  46. data/vendor/choosealicense.com/_licenses/cc-by-4.0.txt +1 -1
  47. data/vendor/choosealicense.com/_licenses/cc-by-sa-4.0.txt +1 -1
  48. data/vendor/choosealicense.com/_licenses/eupl-1.2.txt +75 -58
  49. data/vendor/choosealicense.com/_licenses/isc.txt +8 -8
  50. data/vendor/choosealicense.com/_licenses/mit-0.txt +45 -0
  51. data/vendor/choosealicense.com/_licenses/mulanpsl-2.0.txt +226 -0
  52. data/vendor/choosealicense.com/_licenses/odbl-1.0.txt +2 -2
  53. data/vendor/choosealicense.com/_licenses/osl-3.0.txt +1 -1
  54. data/vendor/choosealicense.com/_licenses/unlicense.txt +1 -1
  55. data/vendor/choosealicense.com/_licenses/upl-1.0.txt +1 -1
  56. data/vendor/license-list-XML/src/0BSD.xml +25 -0
  57. data/vendor/license-list-XML/src/AFL-3.0.xml +212 -0
  58. data/vendor/license-list-XML/src/AGPL-3.0.xml +852 -0
  59. data/vendor/license-list-XML/src/Apache-2.0.xml +223 -0
  60. data/vendor/license-list-XML/src/Artistic-2.0.xml +238 -0
  61. data/vendor/license-list-XML/src/BSD-2-Clause.xml +42 -0
  62. data/vendor/license-list-XML/src/BSD-3-Clause-Clear.xml +59 -0
  63. data/vendor/license-list-XML/src/BSD-3-Clause.xml +46 -0
  64. data/vendor/license-list-XML/src/BSD-4-Clause.xml +59 -0
  65. data/vendor/license-list-XML/src/BSL-1.0.xml +30 -0
  66. data/vendor/license-list-XML/src/CC-BY-4.0.xml +446 -0
  67. data/vendor/license-list-XML/src/CC-BY-SA-4.0.xml +477 -0
  68. data/vendor/license-list-XML/src/CC0-1.0.xml +153 -0
  69. data/vendor/license-list-XML/src/CECILL-2.1.xml +669 -0
  70. data/vendor/license-list-XML/src/ECL-2.0.xml +242 -0
  71. data/vendor/license-list-XML/src/EPL-1.0.xml +255 -0
  72. data/vendor/license-list-XML/src/EPL-2.0.xml +639 -0
  73. data/vendor/license-list-XML/src/EUPL-1.1.xml +337 -0
  74. data/vendor/license-list-XML/src/EUPL-1.2.xml +502 -0
  75. data/vendor/license-list-XML/src/GPL-2.0.xml +474 -0
  76. data/vendor/license-list-XML/src/GPL-3.0.xml +858 -0
  77. data/vendor/license-list-XML/src/ISC.xml +31 -0
  78. data/vendor/license-list-XML/src/LGPL-2.1.xml +662 -0
  79. data/vendor/license-list-XML/src/LGPL-3.0.xml +260 -0
  80. data/vendor/license-list-XML/src/LPPL-1.3c.xml +380 -0
  81. data/vendor/license-list-XML/src/MIT-0.xml +40 -0
  82. data/vendor/license-list-XML/src/MIT.xml +32 -0
  83. data/vendor/license-list-XML/src/MPL-2.0.xml +438 -0
  84. data/vendor/license-list-XML/src/MS-PL.xml +89 -0
  85. data/vendor/license-list-XML/src/MS-RL.xml +97 -0
  86. data/vendor/license-list-XML/src/MulanPSL-2.0.xml +167 -0
  87. data/vendor/license-list-XML/src/NCSA.xml +60 -0
  88. data/vendor/license-list-XML/src/ODbL-1.0.xml +660 -0
  89. data/vendor/license-list-XML/src/OFL-1.1.xml +94 -0
  90. data/vendor/license-list-XML/src/OSL-3.0.xml +209 -0
  91. data/vendor/license-list-XML/src/PostgreSQL.xml +32 -0
  92. data/vendor/license-list-XML/src/UPL-1.0.xml +46 -0
  93. data/vendor/license-list-XML/src/Unlicense.xml +27 -0
  94. data/vendor/license-list-XML/src/Vim.xml +124 -0
  95. data/vendor/license-list-XML/src/WTFPL.xml +30 -0
  96. data/vendor/license-list-XML/src/Zlib.xml +38 -0
  97. metadata +75 -12
@@ -0,0 +1,274 @@
1
+ European Union Public Licence
2
+ V. 1.2
3
+
4
+ EUPL © the European Union 2007, 2016
5
+
6
+ This European Union Public Licence (the ‘EUPL’) applies to the Work (as
7
+ defined below) which is provided under the terms of this Licence. Any use of
8
+ the Work, other than as authorised under this Licence is prohibited (to the
9
+ extent such use is covered by a right of the copyright holder of the Work).
10
+
11
+ The Work is provided under the terms of this Licence when the Licensor (as
12
+ defined below) has placed the following notice immediately following the
13
+ copyright notice for the Work: “Licensed under the EUPL”, or has expressed by
14
+ any other means his willingness to license under the EUPL.
15
+
16
+ 1. Definitions
17
+
18
+ In this Licence, the following terms have the following meaning:
19
+ — ‘The Licence’: this Licence.
20
+ — ‘The Original Work’: the work or software distributed or communicated by the
21
+ ‘Licensor under this Licence, available as Source Code and also as
22
+ ‘Executable Code as the case may be.
23
+ — ‘Derivative Works’: the works or software that could be created by the
24
+ ‘Licensee, based upon the Original Work or modifications thereof. This
25
+ ‘Licence does not define the extent of modification or dependence on the
26
+ ‘Original Work required in order to classify a work as a Derivative Work;
27
+ ‘this extent is determined by copyright law applicable in the country
28
+ ‘mentioned in Article 15.
29
+ — ‘The Work’: the Original Work or its Derivative Works.
30
+ — ‘The Source Code’: the human-readable form of the Work which is the most
31
+ convenient for people to study and modify.
32
+
33
+ — ‘The Executable Code’: any code which has generally been compiled and which
34
+ is meant to be interpreted by a computer as a program.
35
+ — ‘The Licensor’: the natural or legal person that distributes or communicates
36
+ the Work under the Licence.
37
+ — ‘Contributor(s)’: any natural or legal person who modifies the Work under
38
+ the Licence, or otherwise contributes to the creation of a Derivative Work.
39
+ — ‘The Licensee’ or ‘You’: any natural or legal person who makes any usage of
40
+ the Work under the terms of the Licence.
41
+ — ‘Distribution’ or ‘Communication’: any act of selling, giving, lending,
42
+ renting, distributing, communicating, transmitting, or otherwise making
43
+ available, online or offline, copies of the Work or providing access to its
44
+ essential functionalities at the disposal of any other natural or legal
45
+ person.
46
+
47
+ 2. Scope of the rights granted by the Licence
48
+
49
+ The Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
50
+ sublicensable licence to do the following, for the duration of copyright
51
+ vested in the Original Work:
52
+
53
+ — use the Work in any circumstance and for all usage,
54
+ — reproduce the Work,
55
+ — modify the Work, and make Derivative Works based upon the Work,
56
+ — communicate to the public, including the right to make available or display
57
+ the Work or copies thereof to the public and perform publicly, as the case
58
+ may be, the Work,
59
+ — distribute the Work or copies thereof,
60
+ — lend and rent the Work or copies thereof,
61
+ — sublicense rights in the Work or copies thereof.
62
+
63
+ Those rights can be exercised on any media, supports and formats, whether now
64
+ known or later invented, as far as the applicable law permits so.
65
+
66
+ In the countries where moral rights apply, the Licensor waives his right to
67
+ exercise his moral right to the extent allowed by law in order to make
68
+ effective the licence of the economic rights here above listed.
69
+
70
+ The Licensor grants to the Licensee royalty-free, non-exclusive usage rights
71
+ to any patents held by the Licensor, to the extent necessary to make use of
72
+ the rights granted on the Work under this Licence.
73
+
74
+ 3. Communication of the Source Code
75
+
76
+ The Licensor may provide the Work either in its Source Code form, or as
77
+ Executable Code. If the Work is provided as Executable Code, the Licensor
78
+ provides in addition a machine-readable copy of the Source Code of the Work
79
+ along with each copy of the Work that the Licensor distributes or indicates,
80
+ in a notice following the copyright notice attached to the Work, a repository
81
+ where the Source Code is easily and freely accessible for as long as the
82
+ Licensor continues to distribute or communicate the Work.
83
+
84
+ 4. Limitations on copyright
85
+
86
+ Nothing in this Licence is intended to deprive the Licensee of the benefits
87
+ from any exception or limitation to the exclusive rights of the rights owners
88
+ in the Work, of the exhaustion of those rights or of other applicable
89
+ limitations thereto.
90
+
91
+ 5. Obligations of the Licensee
92
+
93
+ The grant of the rights mentioned above is subject to some restrictions and
94
+ obligations imposed on the Licensee. Those obligations are the following:
95
+
96
+ Attribution right: The Licensee shall keep intact all copyright, patent or
97
+ trademarks notices and all notices that refer to the Licence and to the
98
+ disclaimer of warranties. The Licensee must include a copy of such notices and
99
+ a copy of the Licence with every copy of the Work he/she distributes or
100
+ communicates. The Licensee must cause any Derivative Work to carry prominent
101
+ notices stating that the Work has been modified and the date of modification.
102
+
103
+ Copyleft clause: If the Licensee distributes or communicates copies of the
104
+ Original Works or Derivative Works, this Distribution or Communication will be
105
+ done under the terms of this Licence or of a later version of this Licence
106
+ unless the Original Work is expressly distributed only under this version of
107
+ the Licence — for example by communicating ‘EUPL v. 1.2 only’. The Licensee
108
+ (becoming Licensor) cannot offer or impose any additional terms or conditions
109
+ on the Work or Derivative Work that alter or restrict the terms of the
110
+ Licence.
111
+
112
+ Compatibility clause: If the Licensee Distributes or Communicates Derivative
113
+ Works or copies thereof based upon both the Work and another work licensed
114
+ under a Compatible Licence, this Distribution or Communication can be done
115
+ under the terms of this Compatible Licence. For the sake of this clause,
116
+ ‘Compatible Licence’ refers to the licences listed in the appendix attached to
117
+ this Licence. Should the Licensee's obligations under the Compatible Licence
118
+ conflict with his/her obligations under this Licence, the obligations of the
119
+ Compatible Licence shall prevail.
120
+
121
+ Provision of Source Code: When distributing or communicating copies of the
122
+ Work, the Licensee will provide a machine-readable copy of the Source Code or
123
+ indicate a repository where this Source will be easily and freely available
124
+ for as long as the Licensee continues to distribute or communicate the Work.
125
+
126
+ Legal Protection: This Licence does not grant permission to use the trade
127
+ names, trademarks, service marks, or names of the Licensor, except as required
128
+ for reasonable and customary use in describing the origin of the Work and
129
+ reproducing the content of the copyright notice.
130
+
131
+ 6. Chain of Authorship
132
+
133
+ The original Licensor warrants that the copyright in the Original Work granted
134
+ hereunder is owned by him/her or licensed to him/her and that he/she has the
135
+ power and authority to grant the Licence.
136
+
137
+ Each Contributor warrants that the copyright in the modifications he/she
138
+ brings to the Work are owned by him/her or licensed to him/her and that he/she
139
+ has the power and authority to grant the Licence.
140
+
141
+ Each time You accept the Licence, the original Licensor and subsequent
142
+ Contributors grant You a licence to their contributions to the Work, under the
143
+ terms of this Licence.
144
+
145
+ 7. Disclaimer of Warranty
146
+
147
+ The Work is a work in progress, which is continuously improved by numerous
148
+ Contributors. It is not a finished work and may therefore contain defects or
149
+ ‘bugs’ inherent to this type of development.
150
+
151
+ For the above reason, the Work is provided under the Licence on an ‘as is’
152
+ basis and without warranties of any kind concerning the Work, including
153
+ without limitation merchantability, fitness for a particular purpose, absence
154
+ of defects or errors, accuracy, non-infringement of intellectual property
155
+ rights other than copyright as stated in Article 6 of this Licence.
156
+
157
+ This disclaimer of warranty is an essential part of the Licence and a
158
+ condition for the grant of any rights to the Work.
159
+
160
+ 8. Disclaimer of Liability
161
+
162
+ Except in the cases of wilful misconduct or damages directly caused to natural
163
+ persons, the Licensor will in no event be liable for any direct or indirect,
164
+ material or moral, damages of any kind, arising out of the Licence or of the
165
+ use of the Work, including without limitation, damages for loss of goodwill,
166
+ work stoppage, computer failure or malfunction, loss of data or any commercial
167
+ damage, even if the Licensor has been advised of the possibility of such
168
+ damage. However, the Licensor will be liable under statutory product liability
169
+ laws as far such laws apply to the Work.
170
+
171
+ 9. Additional agreements
172
+
173
+ While distributing the Work, You may choose to conclude an additional
174
+ agreement, defining obligations or services consistent with this Licence.
175
+ However, if accepting obligations, You may act only on your own behalf and on
176
+ your sole responsibility, not on behalf of the original Licensor or any other
177
+ Contributor, and only if You agree to indemnify, defend, and hold each
178
+ Contributor harmless for any liability incurred by, or claims asserted against
179
+ such Contributor by the fact You have accepted any warranty or additional
180
+ liability.
181
+
182
+ 10. Acceptance of the Licence
183
+
184
+ The provisions of this Licence can be accepted by clicking on an icon ‘I
185
+ agree’ placed under the bottom of a window displaying the text of this Licence
186
+ or by affirming consent in any other similar way, in accordance with the rules
187
+ of applicable law. Clicking on that icon indicates your clear and irrevocable
188
+ acceptance of this Licence and all of its terms and conditions.
189
+
190
+ Similarly, you irrevocably accept this Licence and all of its terms and
191
+ conditions by exercising any rights granted to You by Article 2 of this
192
+ Licence, such as the use of the Work, the creation by You of a Derivative Work
193
+ or the Distribution or Communication by You of the Work or copies thereof.
194
+
195
+ 11. Information to the public
196
+
197
+ In case of any Distribution or Communication of the Work by means of
198
+ electronic communication by You (for example, by offering to download the Work
199
+ from a remote location) the distribution channel or media (for example, a
200
+ website) must at least provide to the public the information requested by the
201
+ applicable law regarding the Licensor, the Licence and the way it may be
202
+ accessible, concluded, stored and reproduced by the Licensee.
203
+
204
+ 12. Termination of the Licence
205
+
206
+ The Licence and the rights granted hereunder will terminate automatically upon
207
+ any breach by the Licensee of the terms of the Licence. Such a termination
208
+ will not terminate the licences of any person who has received the Work from
209
+ the Licensee under the Licence, provided such persons remain in full
210
+ compliance with the Licence.
211
+
212
+ 13. Miscellaneous
213
+
214
+ Without prejudice of Article 9 above, the Licence represents the complete
215
+ agreement between the Parties as to the Work.
216
+
217
+ If any provision of the Licence is invalid or unenforceable under applicable
218
+ law, this will not affect the validity or enforceability of the Licence as a
219
+ whole. Such provision will be construed or reformed so as necessary to make it
220
+ valid and enforceable.
221
+
222
+ The European Commission may publish other linguistic versions or new versions
223
+ of this Licence or updated versions of the Appendix, so far this is required
224
+ and reasonable, without reducing the scope of the rights granted by the
225
+ Licence. New versions of the Licence will be published with a unique version
226
+ number.
227
+
228
+ All linguistic versions of this Licence, approved by the European Commission,
229
+ have identical value. Parties can take advantage of the linguistic version of
230
+ their choice.
231
+
232
+ 14. Jurisdiction
233
+
234
+ Without prejudice to specific agreement between parties,
235
+ — any litigation resulting from the interpretation of this License, arising
236
+ between the European Union institutions, bodies, offices or agencies, as a
237
+ Licensor, and any Licensee, will be subject to the jurisdiction of the Court
238
+ of Justice of the European Union, as laid down in article 272 of the Treaty
239
+ on the Functioning of the European Union,
240
+ — any litigation arising between other parties and resulting from the
241
+ interpretation of this License, will be subject to the exclusive
242
+ jurisdiction of the competent court where the Licensor resides or conducts
243
+ its primary business.
244
+
245
+ 15. Applicable Law
246
+
247
+ Without prejudice to specific agreement between parties,
248
+ — this Licence shall be governed by the law of the European Union Member State
249
+ where the Licensor has his seat, resides or has his registered office,
250
+ — this licence shall be governed by Belgian law if the Licensor has no seat,
251
+ residence or registered office inside a European Union Member State.
252
+
253
+ Appendix
254
+
255
+ ‘Compatible Licences’ according to Article 5 EUPL are:
256
+ — GNU General Public License (GPL) v. 2, v. 3
257
+ — GNU Affero General Public License (AGPL) v. 3
258
+ — Open Software License (OSL) v. 2.1, v. 3.0
259
+ — Eclipse Public License (EPL) v. 1.0
260
+ — CeCILL v. 2.0, v. 2.1
261
+ — Mozilla Public Licence (MPL) v. 2
262
+ — GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3
263
+ — Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for
264
+ works other than software
265
+ — European Union Public Licence (EUPL) v. 1.1, v. 1.2
266
+ — Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or
267
+ Strong Reciprocity (LiLiQ-R+)
268
+
269
+ — The European Commission may update this Appendix to later versions of the
270
+ above licences without producing a new version of the EUPL, as long as they
271
+ provide the rights granted in Article 2 of this Licence and protect the
272
+ covered Source Code from exclusive appropriation.
273
+ — All other changes or additions to this Appendix require the production of a
274
+ new EUPL version.
@@ -3,11 +3,15 @@
3
3
  apache-with-readme-notice:
4
4
  key: apache-2.0
5
5
  matcher: exact
6
- hash: ab3901051663cb8ee5dea9ebdff406ad136910e3
6
+ hash: bec905d850e7f5dc2e2db78a950d4a9db560a0b8
7
7
  bom:
8
8
  key: mit
9
9
  matcher: exact
10
- hash: d64f3bb4282a97b37454b5bb96a8a264a3363dc3
10
+ hash: 4c2c763d64bbc7ef2e58b0ec6d06d90cee9755c9
11
+ bsd-3-authorowner:
12
+ key: bsd-3-clause
13
+ matcher: dice
14
+ hash: 2e6f215833d1a3d10e6194d479dbb2b4be2f64d7
11
15
  bsd-3-lists:
12
16
  key: bsd-3-clause
13
17
  matcher:
@@ -15,7 +19,7 @@ bsd-3-lists:
15
19
  bsd-3-noendorseslash:
16
20
  key: bsd-3-clause
17
21
  matcher: dice
18
- hash: ca28b4e030d0ec26cb01debe697105b6670c7521
22
+ hash: cc09daf7c96498abafdb708f3578654d6d5b2a3b
19
23
  bsd-plus-patents:
20
24
  key: other
21
25
  matcher:
@@ -23,7 +27,7 @@ bsd-plus-patents:
23
27
  bsl:
24
28
  key: bsl-1.0
25
29
  matcher: exact
26
- hash: ca8f916d00c234719956e932061f192abb2d5bf9
30
+ hash: 27e28f20b57048cf04be07e1532b6fb501a0753b
27
31
  case-sensitive:
28
32
  key: other
29
33
  matcher:
@@ -31,19 +35,27 @@ case-sensitive:
31
35
  cc-by-nc-sa:
32
36
  key: other
33
37
  matcher:
34
- hash: 5327932ea9cfee2d8d1ab7d5e088e868413eadea
38
+ hash: 2b2df1271efb79dcaf80f0828069b1c85da63eec
35
39
  cc-by-nd:
36
40
  key: other
37
41
  matcher:
38
- hash: a75ef554ca6941d195bbc1197f934d43a75b312d
42
+ hash: 4fb176dcd047bc77f15d7b42824d1a5793bdc865
43
+ cc-by-sa-mdlinks:
44
+ key: cc-by-sa-4.0
45
+ matcher: dice
46
+ hash: 4b0a634a0db5015914cbdde602672b2addfd66e9
47
+ cc-by-sa-nocclicensor:
48
+ key: cc-by-sa-4.0
49
+ matcher: dice
50
+ hash: 4f55d11c9d6fa6710a4c7b41bcbb801966283d45
39
51
  cc0-cal2013:
40
52
  key: cc0-1.0
41
53
  matcher: dice
42
- hash: 2aa555363d0d2ce0a924940fab198c38dd3ff30b
54
+ hash: 06f73ef48851a6f6d0bcd179faa65145c76d5562
43
55
  cc0-cc:
44
56
  key: cc0-1.0
45
57
  matcher: exact
46
- hash: c07f7fdd02072b9b9ddafb29c7fe556ed4d31f6a
58
+ hash: 94c8187ec82b2b4a69fb990f80833fbe6e3c95e7
47
59
  copyright-encoding:
48
60
  key: no-license
49
61
  matcher: copyright
@@ -51,19 +63,23 @@ copyright-encoding:
51
63
  crlf-bsd:
52
64
  key: bsd-3-clause
53
65
  matcher: exact
54
- hash: fa22c672927af9c7334874561198799cbf4bdf31
66
+ hash: a961b19cc6921d510e29a13b0ba1a826fcffe41c
55
67
  crlf-license:
56
68
  key: gpl-3.0
57
69
  matcher: exact
58
- hash: b22f1b1f953a38a8a11686587b98831858d6468b
70
+ hash: 7d4cdf499d39e2e1ce27b2878e22872f0f5a74dd
59
71
  description-license:
60
72
  key: other
61
73
  matcher:
62
74
  hash: ab0fb718684bbc67c7dfc2e9ab2175dab4fcb819
75
+ eupl-cal2017:
76
+ key: eupl-1.2
77
+ matcher: exact
78
+ hash: 7425a276b011dea63591fe8876146f2451cfd777
63
79
  fcpl-modified-mpl:
64
80
  key: other
65
81
  matcher:
66
- hash: '06942321efd22b697fc4600bf68c0b6b3399cb12'
82
+ hash: 97b12cefc05cdb701e4ae9a59e7c11f25cdb8edc
67
83
  gemspec:
68
84
  key:
69
85
  matcher:
@@ -71,15 +87,15 @@ gemspec:
71
87
  gpl3-without-instructions:
72
88
  key: gpl-3.0
73
89
  matcher: exact
74
- hash: b22f1b1f953a38a8a11686587b98831858d6468b
90
+ hash: 7d4cdf499d39e2e1ce27b2878e22872f0f5a74dd
75
91
  html:
76
92
  key: epl-1.0
77
93
  matcher: dice
78
- hash: b0a3248238c79a7e4aae7a0fb61e927ea5fc31d3
94
+ hash: cc33ea9c29348d147e633c02c5696e76c722b00e
79
95
  lgpl:
80
96
  key: lgpl-3.0
81
97
  matcher: exact
82
- hash: bdb3c042bd84f914eacfbe4977c5e58352745809
98
+ hash: 2f434698bab479f8f6c5043f2796767287f40495
83
99
  license-folder:
84
100
  key:
85
101
  matcher:
@@ -87,27 +103,27 @@ license-folder:
87
103
  license-in-parent-folder:
88
104
  key: mit
89
105
  matcher: exact
90
- hash: d64f3bb4282a97b37454b5bb96a8a264a3363dc3
106
+ hash: 4c2c763d64bbc7ef2e58b0ec6d06d90cee9755c9
91
107
  license-with-readme-reference:
92
108
  key: mit
93
109
  matcher: exact
94
- hash: d64f3bb4282a97b37454b5bb96a8a264a3363dc3
110
+ hash: 4c2c763d64bbc7ef2e58b0ec6d06d90cee9755c9
95
111
  markdown-artistic:
96
112
  key: artistic-2.0
97
113
  matcher: dice
98
- hash: fb7d858f0e6b9885b5ae4a7a763888f01624ebdf
114
+ hash: 2c21400d21cbcc827e039eeea73cf95bc42183dd
99
115
  markdown-gpl:
100
116
  key: gpl-2.0
101
117
  matcher: exact
102
- hash: f1dfb00b32ff9058e780f3ff9c528ed73594f3ba
118
+ hash: 74e2c1e8b8ff13e284dd222f214b79e9f4d3590b
103
119
  mit:
104
120
  key: mit
105
121
  matcher: exact
106
- hash: d64f3bb4282a97b37454b5bb96a8a264a3363dc3
122
+ hash: 4c2c763d64bbc7ef2e58b0ec6d06d90cee9755c9
107
123
  mit-optional:
108
124
  key: mit
109
125
  matcher: exact
110
- hash: d64f3bb4282a97b37454b5bb96a8a264a3363dc3
126
+ hash: 4c2c763d64bbc7ef2e58b0ec6d06d90cee9755c9
111
127
  mit-with-copyright:
112
128
  key: mit
113
129
  matcher:
@@ -115,15 +131,19 @@ mit-with-copyright:
115
131
  mpl-without-hrs:
116
132
  key: mpl-2.0
117
133
  matcher: exact
118
- hash: b4db668fa7573bfdcae74eb51eafc961034f0a61
134
+ hash: 820048a1dbef5dfac65547bd9eb935beb76b2257
119
135
  multiple-arrs:
120
136
  key: bsd-3-clause
121
137
  matcher: exact
122
- hash: fa22c672927af9c7334874561198799cbf4bdf31
138
+ hash: a961b19cc6921d510e29a13b0ba1a826fcffe41c
123
139
  multiple-license-files:
124
140
  key: other
125
141
  matcher:
126
142
  hash:
143
+ pixar-modified-apache:
144
+ key: other
145
+ matcher:
146
+ hash: efb005bb5924d60314b2aaedb4fceef92c5d5631
127
147
  readme:
128
148
  key: mit
129
149
  matcher:
@@ -135,11 +155,11 @@ readme-invalid-encoding:
135
155
  unlicense-noinfo:
136
156
  key: unlicense
137
157
  matcher: exact
138
- hash: 853b375edc61b9e823da0fa5fead97c9460c3e45
158
+ hash: 859a7d829d402dd6e047293d87979dacc1b88f37
139
159
  vim:
140
160
  key: vim
141
161
  matcher: dice
142
- hash: d66f1d3714fdcd834c5bf871fcb36c1aab4f7e38
162
+ hash: 6e1bfd854c9ad8626d61367ccfecc9f96e54ce92
143
163
  webmock:
144
164
  key:
145
165
  matcher:
@@ -147,4 +167,4 @@ webmock:
147
167
  wrk-modified-apache:
148
168
  key: other
149
169
  matcher:
150
- hash: e733ea59fcc053841df5a1a3574a298d9ee3635e
170
+ hash: '09df4f164a92a0464452178cf1e4eb58c3f25c01'
@@ -1,41 +1,43 @@
1
1
  {
2
- "0bsd": "7a6d7180345f015f6aaf49fac3154ed18b7db9ee",
3
- "afl-3.0": "b991770683c71abd5c8cd8c8f10a03fedcdc76ec",
4
- "agpl-3.0": "d445855a1f169b12cbee97d320c2e3522d053016",
5
- "apache-2.0": "ab3901051663cb8ee5dea9ebdff406ad136910e3",
6
- "artistic-2.0": "a2ff6e7fb76e51bda9a5350c759a824f206049d1",
7
- "bsd-2-clause": "59f0099ff04225daf184db3fe55e478256133b1a",
8
- "bsd-3-clause": "fa22c672927af9c7334874561198799cbf4bdf31",
9
- "bsd-3-clause-clear": "251d4599b622d2a87b2c4bb21dfacd438c048466",
10
- "bsd-4-clause": "c31a46c2b8764b63d73332c5e9e11f109dadee45",
11
- "bsl-1.0": "ca8f916d00c234719956e932061f192abb2d5bf9",
12
- "cc-by-4.0": "25b636566bb4cee96f8e917e6382b7c4a6858a90",
13
- "cc-by-sa-4.0": "0b36f96c5df2aebaf4c5a9c2209d73ed0700a677",
14
- "cc0-1.0": "c07f7fdd02072b9b9ddafb29c7fe556ed4d31f6a",
15
- "cecill-2.1": "c996e4f8246fddc4fb083f72a70a85f36dffd288",
16
- "ecl-2.0": "b24f240cd556a7764b9ace1bd763ad70c510d92a",
17
- "epl-1.0": "e306464a81ab0e6688653c6509245b451637172c",
18
- "epl-2.0": "b57663bc9c3f41446a8cd3f0050149221a58fe66",
19
- "eupl-1.1": "873e30dbc5f75d076d7aecb6ceb84fb6bb765452",
20
- "eupl-1.2": "f122f96b9f1a56e4806a89cb1cc6ca2bb956f3e5",
21
- "gpl-2.0": "3becd209e8ed8039656c1debe01dd17b9a79208f",
22
- "gpl-3.0": "b22f1b1f953a38a8a11686587b98831858d6468b",
23
- "isc": "d168f98624be864548b2bbf4f198fdbf702d6743",
24
- "lgpl-2.1": "91e779a787786276618f58d6e396a5e64a981805",
25
- "lgpl-3.0": "bdb3c042bd84f914eacfbe4977c5e58352745809",
26
- "lppl-1.3c": "60961652297042d28bb689c17fac47eca7348d16",
27
- "mit": "d64f3bb4282a97b37454b5bb96a8a264a3363dc3",
28
- "mpl-2.0": "b4db668fa7573bfdcae74eb51eafc961034f0a61",
29
- "ms-pl": "c900293d66a241e54f7817367a8f32f7f94e12ff",
30
- "ms-rl": "402bf344e506a8d10175c1e516b396c060ffd823",
31
- "ncsa": "da965ab8e2094b0f0ac97a8502272b5400c29508",
32
- "odbl-1.0": "6246137f1527f9a90b77e05bd5061bee83bb33ae",
33
- "ofl-1.1": "1fb0563aa1250e18a6948afde286edc95761f461",
34
- "osl-3.0": "ab241ef932d3ac038e8ed62c860e9eba051ae7a0",
35
- "postgresql": "87550a6bb3409db00d8552b2ac07d373ea56a024",
36
- "unlicense": "853b375edc61b9e823da0fa5fead97c9460c3e45",
37
- "upl-1.0": "af9efb6f7b29f8c2d486ccb28223db0aa8372c29",
38
- "vim": "76268065cdc78dd7f3677df936cb24aa93aa14b0",
2
+ "0bsd": "c8c3d65fb228583b10cc531f5ddb3cf4fc095508",
3
+ "afl-3.0": "dbc79db278e7bef9cff16168ac32d4e281542eeb",
4
+ "agpl-3.0": "10486392ac9e730ec8f77bd1233edfc2d47dd23c",
5
+ "apache-2.0": "bec905d850e7f5dc2e2db78a950d4a9db560a0b8",
6
+ "artistic-2.0": "707698f0c53ab48d54b7fd2dc4a6f40533e8ebb3",
7
+ "bsd-2-clause": "a307ca750c21f262c95d2bce55e69c05e6c3dee9",
8
+ "bsd-3-clause": "a961b19cc6921d510e29a13b0ba1a826fcffe41c",
9
+ "bsd-3-clause-clear": "0fcdb12c4060ce8f406e17bc67787e50a9b36a61",
10
+ "bsd-4-clause": "3b2917580b2b6f13efaaea37546b8b7a53716a30",
11
+ "bsl-1.0": "27e28f20b57048cf04be07e1532b6fb501a0753b",
12
+ "cc-by-4.0": "b2089be110aca4cf4a562a88f0ecfd082ce32167",
13
+ "cc-by-sa-4.0": "0684e2df6671166351097b387abc0d1170d26f2f",
14
+ "cc0-1.0": "94c8187ec82b2b4a69fb990f80833fbe6e3c95e7",
15
+ "cecill-2.1": "edb804827a40bcdcf3e82b6bab3bd1f5b923ac74",
16
+ "ecl-2.0": "296976ce9e84ba380866e4519b68a779c2059b3a",
17
+ "epl-1.0": "5e3cb10996b4ba2821d04d5c99a912c924b3bdcb",
18
+ "epl-2.0": "e2f3e266432478d9248422228a75a404cce1c43c",
19
+ "eupl-1.1": "b35810b4113910f5f85af75f24e2538ba64c8876",
20
+ "eupl-1.2": "2098182069695981c6dc71093888f6204c7bbdae",
21
+ "gpl-2.0": "32108116603c30687d8d0d2f77f140fb6ecea082",
22
+ "gpl-3.0": "7d4cdf499d39e2e1ce27b2878e22872f0f5a74dd",
23
+ "isc": "7fcb74e2084b361556b8285d6f800495d0d5e36a",
24
+ "lgpl-2.1": "82420393a49840ea66ed4df4c550a2ff3955e70e",
25
+ "lgpl-3.0": "2f434698bab479f8f6c5043f2796767287f40495",
26
+ "lppl-1.3c": "cd1336cb08b1b97bcbe32119cdd8f518d8b340a3",
27
+ "mit": "4c2c763d64bbc7ef2e58b0ec6d06d90cee9755c9",
28
+ "mit-0": "b19f2d3e3e0cbba6ccd5808dd7be60a19172824b",
29
+ "mpl-2.0": "820048a1dbef5dfac65547bd9eb935beb76b2257",
30
+ "ms-pl": "1a7eb02101924998c296c8ede182005d2f77ae4a",
31
+ "ms-rl": "9f0c4c8be853cf1836a619cd0abaf0e0235d76ad",
32
+ "mulanpsl-2.0": "c9b54da98007cb8baa0a658b34dbe3a55a80baa8",
33
+ "ncsa": "0d481a7ff9345e19cfdd9b7fea46caea1ebd08ee",
34
+ "odbl-1.0": "e3bb38ce8a932d226829dcb6fd2143e5977d13e7",
35
+ "ofl-1.1": "f92ca13e3976f94f20b49a007f7592631b4f8e96",
36
+ "osl-3.0": "bdde11f936b834bd06451d1ad8aad790d4a7c72c",
37
+ "postgresql": "6bddd8a2425baa88ee240b1c54b532d6208028bd",
38
+ "unlicense": "859a7d829d402dd6e047293d87979dacc1b88f37",
39
+ "upl-1.0": "f9a6bb39f54539ff3084ee4d754fc30cbba34d40",
40
+ "vim": "10e72ceebb7ab0a34ff1ed90241953b3756fd938",
39
41
  "wtfpl": "f8544c074f203d86cdcb24082fedfb2cf2fe411a",
40
- "zlib": "576139d1f785b8f3539099b9702fc68005ee2213"
42
+ "zlib": "d75cdaa2dd3ceb3f0db609005a32f825b37d1a8c"
41
43
  }