1#!/usr/bin/env perl
2use v5.10;
3use strict;
4use warnings;
5use utf8;
6use open qw/:std :utf8/;
7use File::Find qw/find/;
8
9my @license_files;
10
11find(
12 sub {
13 return unless lc($_) eq 'license';
14 push @license_files, [ $File::Find::dir, $File::Find::name ];
15 },
16 'vendor'
17);
18
19print forked_licenses();
20
21for my $entry (sort { $a->[0] cmp $b->[0] } @license_files) {
22 ( my $package_name = $entry->[0] ) =~ s{vendor/}{};
23 my $license_text = do { local ( @ARGV, $/ ) = $entry->[1]; <> };
24 $license_text =~ s/ +$//mg;
25 say "" x 70;
26 say "-" x 70;
27 say "License notice for $package_name";
28 say "-" x 70;
29 say "";
30 print $license_text;
31}
32
33# These licenses are the originals for forked code; they must
34# be included along with license from the vendor directory
35sub forked_licenses {
36 return <<'HERE';
37----------------------------------------------------------------------
38License notice for AWS V4 signing code from github.com/aws/aws-sdk-go
39AWS SDK for Go
40Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
41Copyright 2014-2015 Stripe, Inc.
42----------------------------------------------------------------------
43
44
45 Apache License
46 Version 2.0, January 2004
47 http://www.apache.org/licenses/
48
49 TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
50
51 1. Definitions.
52
53 "License" shall mean the terms and conditions for use, reproduction,
54 and distribution as defined by Sections 1 through 9 of this document.
55
56 "Licensor" shall mean the copyright owner or entity authorized by
57 the copyright owner that is granting the License.
58
59 "Legal Entity" shall mean the union of the acting entity and all
60 other entities that control, are controlled by, or are under common
61 control with that entity. For the purposes of this definition,
62 "control" means (i) the power, direct or indirect, to cause the
63 direction or management of such entity, whether by contract or
64 otherwise, or (ii) ownership of fifty percent (50%) or more of the
65 outstanding shares, or (iii) beneficial ownership of such entity.
66
67 "You" (or "Your") shall mean an individual or Legal Entity
68 exercising permissions granted by this License.
69
70 "Source" form shall mean the preferred form for making modifications,
71 including but not limited to software source code, documentation
72 source, and configuration files.
73
74 "Object" form shall mean any form resulting from mechanical
75 transformation or translation of a Source form, including but
76 not limited to compiled object code, generated documentation,
77 and conversions to other media types.
78
79 "Work" shall mean the work of authorship, whether in Source or
80 Object form, made available under the License, as indicated by a
81 copyright notice that is included in or attached to the work
82 (an example is provided in the Appendix below).
83
84 "Derivative Works" shall mean any work, whether in Source or Object
85 form, that is based on (or derived from) the Work and for which the
86 editorial revisions, annotations, elaborations, or other modifications
87 represent, as a whole, an original work of authorship. For the purposes
88 of this License, Derivative Works shall not include works that remain
89 separable from, or merely link (or bind by name) to the interfaces of,
90 the Work and Derivative Works thereof.
91
92 "Contribution" shall mean any work of authorship, including
93 the original version of the Work and any modifications or additions
94 to that Work or Derivative Works thereof, that is intentionally
95 submitted to Licensor for inclusion in the Work by the copyright owner
96 or by an individual or Legal Entity authorized to submit on behalf of
97 the copyright owner. For the purposes of this definition, "submitted"
98 means any form of electronic, verbal, or written communication sent
99 to the Licensor or its representatives, including but not limited to
100 communication on electronic mailing lists, source code control systems,
101 and issue tracking systems that are managed by, or on behalf of, the
102 Licensor for the purpose of discussing and improving the Work, but
103 excluding communication that is conspicuously marked or otherwise
104 designated in writing by the copyright owner as "Not a Contribution."
105
106 "Contributor" shall mean Licensor and any individual or Legal Entity
107 on behalf of whom a Contribution has been received by Licensor and
108 subsequently incorporated within the Work.
109
110 2. Grant of Copyright License. Subject to the terms and conditions of
111 this License, each Contributor hereby grants to You a perpetual,
112 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
113 copyright license to reproduce, prepare Derivative Works of,
114 publicly display, publicly perform, sublicense, and distribute the
115 Work and such Derivative Works in Source or Object form.
116
117 3. Grant of Patent License. Subject to the terms and conditions of
118 this License, each Contributor hereby grants to You a perpetual,
119 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
120 (except as stated in this section) patent license to make, have made,
121 use, offer to sell, sell, import, and otherwise transfer the Work,
122 where such license applies only to those patent claims licensable
123 by such Contributor that are necessarily infringed by their
124 Contribution(s) alone or by combination of their Contribution(s)
125 with the Work to which such Contribution(s) was submitted. If You
126 institute patent litigation against any entity (including a
127 cross-claim or counterclaim in a lawsuit) alleging that the Work
128 or a Contribution incorporated within the Work constitutes direct
129 or contributory patent infringement, then any patent licenses
130 granted to You under this License for that Work shall terminate
131 as of the date such litigation is filed.
132
133 4. Redistribution. You may reproduce and distribute copies of the
134 Work or Derivative Works thereof in any medium, with or without
135 modifications, and in Source or Object form, provided that You
136 meet the following conditions:
137
138 (a) You must give any other recipients of the Work or
139 Derivative Works a copy of this License; and
140
141 (b) You must cause any modified files to carry prominent notices
142 stating that You changed the files; and
143
144 (c) You must retain, in the Source form of any Derivative Works
145 that You distribute, all copyright, patent, trademark, and
146 attribution notices from the Source form of the Work,
147 excluding those notices that do not pertain to any part of
148 the Derivative Works; and
149
150 (d) If the Work includes a "NOTICE" text file as part of its
151 distribution, then any Derivative Works that You distribute must
152 include a readable copy of the attribution notices contained
153 within such NOTICE file, excluding those notices that do not
154 pertain to any part of the Derivative Works, in at least one
155 of the following places: within a NOTICE text file distributed
156 as part of the Derivative Works; within the Source form or
157 documentation, if provided along with the Derivative Works; or,
158 within a display generated by the Derivative Works, if and
159 wherever such third-party notices normally appear. The contents
160 of the NOTICE file are for informational purposes only and
161 do not modify the License. You may add Your own attribution
162 notices within Derivative Works that You distribute, alongside
163 or as an addendum to the NOTICE text from the Work, provided
164 that such additional attribution notices cannot be construed
165 as modifying the License.
166
167 You may add Your own copyright statement to Your modifications and
168 may provide additional or different license terms and conditions
169 for use, reproduction, or distribution of Your modifications, or
170 for any such Derivative Works as a whole, provided Your use,
171 reproduction, and distribution of the Work otherwise complies with
172 the conditions stated in this License.
173
174 5. Submission of Contributions. Unless You explicitly state otherwise,
175 any Contribution intentionally submitted for inclusion in the Work
176 by You to the Licensor shall be under the terms and conditions of
177 this License, without any additional terms or conditions.
178 Notwithstanding the above, nothing herein shall supersede or modify
179 the terms of any separate license agreement you may have executed
180 with Licensor regarding such Contributions.
181
182 6. Trademarks. This License does not grant permission to use the trade
183 names, trademarks, service marks, or product names of the Licensor,
184 except as required for reasonable and customary use in describing the
185 origin of the Work and reproducing the content of the NOTICE file.
186
187 7. Disclaimer of Warranty. Unless required by applicable law or
188 agreed to in writing, Licensor provides the Work (and each
189 Contributor provides its Contributions) on an "AS IS" BASIS,
190 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
191 implied, including, without limitation, any warranties or conditions
192 of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
193 PARTICULAR PURPOSE. You are solely responsible for determining the
194 appropriateness of using or redistributing the Work and assume any
195 risks associated with Your exercise of permissions under this License.
196
197 8. Limitation of Liability. In no event and under no legal theory,
198 whether in tort (including negligence), contract, or otherwise,
199 unless required by applicable law (such as deliberate and grossly
200 negligent acts) or agreed to in writing, shall any Contributor be
201 liable to You for damages, including any direct, indirect, special,
202 incidental, or consequential damages of any character arising as a
203 result of this License or out of the use or inability to use the
204 Work (including but not limited to damages for loss of goodwill,
205 work stoppage, computer failure or malfunction, or any and all
206 other commercial damages or losses), even if such Contributor
207 has been advised of the possibility of such damages.
208
209 9. Accepting Warranty or Additional Liability. While redistributing
210 the Work or Derivative Works thereof, You may choose to offer,
211 and charge a fee for, acceptance of support, warranty, indemnity,
212 or other liability obligations and/or rights consistent with this
213 License. However, in accepting such obligations, You may act only
214 on Your own behalf and on Your sole responsibility, not on behalf
215 of any other Contributor, and only if You agree to indemnify,
216 defend, and hold each Contributor harmless for any liability
217 incurred by, or claims asserted against, such Contributor by reason
218 of your accepting any such warranty or additional liability.
219
220---------------------------------------------------------------------
221License notice for gopkg.in/mgo.v2/bson
222---------------------------------------------------------------------
223
224BSON library for Go
225
226Copyright (c) 2010-2013 - Gustavo Niemeyer <gustavo@niemeyer.net>
227
228All rights reserved.
229
230Redistribution and use in source and binary forms, with or without
231modification, are permitted provided that the following conditions are met:
232
2331. Redistributions of source code must retain the above copyright notice, this
234 list of conditions and the following disclaimer.
2352. Redistributions in binary form must reproduce the above copyright notice,
236 this list of conditions and the following disclaimer in the documentation
237 and/or other materials provided with the distribution.
238
239THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
240ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
241WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
242DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
243ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
244(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
245LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
246ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
247(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
248SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
249
250---------------------------------------------------------------------
251License notice for JSON and CSV code from github.com/golang/go
252---------------------------------------------------------------------
253
254Copyright (c) 2009 The Go Authors. All rights reserved.
255
256Redistribution and use in source and binary forms, with or without
257modification, are permitted provided that the following conditions are
258met:
259
260 * Redistributions of source code must retain the above copyright
261notice, this list of conditions and the following disclaimer.
262 * Redistributions in binary form must reproduce the above
263copyright notice, this list of conditions and the following disclaimer
264in the documentation and/or other materials provided with the
265distribution.
266 * Neither the name of Google Inc. nor the names of its
267contributors may be used to endorse or promote products derived from
268this software without specific prior written permission.
269
270THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
271"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
272LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
273A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
274OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
275SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
276LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
277DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
278THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
279(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
280OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
281HERE
282}
View as plain text