Skip to content
This repository was archived by the owner on Aug 31, 2018. It is now read-only.

Commit 06b9b16

Browse files
MylesBorinsQard
authored andcommitted
doc: add license information for remark-cli
The LICENSE file was not originally included when remark-cli was vendored. This Commit adds the LICENSE file back to tools/remark-cli and updates the top level license in the project PR-URL: nodejs/node#16637 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent d28039a commit 06b9b16

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

LICENSE

+26
Original file line numberDiff line numberDiff line change
@@ -1119,3 +1119,29 @@ The externally maintained libraries used by Node.js are:
11191119
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
11201120
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
11211121
"""
1122+
1123+
- remark-cli, located at tools/remark-cli, is licensed as follows:
1124+
"""
1125+
(The MIT License)
1126+
1127+
Copyright (c) 2014-2016 Titus Wormer <tituswormer@gmail.com>
1128+
Copyright (c) 2011-2014, Christopher Jeffrey (https://github.com/chjj/)
1129+
1130+
Permission is hereby granted, free of charge, to any person obtaining a copy
1131+
of this software and associated documentation files (the "Software"), to deal
1132+
in the Software without restriction, including without limitation the rights
1133+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1134+
copies of the Software, and to permit persons to whom the Software is
1135+
furnished to do so, subject to the following conditions:
1136+
1137+
The above copyright notice and this permission notice shall be included in
1138+
all copies or substantial portions of the Software.
1139+
1140+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1141+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1142+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1143+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1144+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1145+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1146+
THE SOFTWARE.
1147+
"""

tools/license-builder.sh

+2
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,7 @@ addlicense "gtest" "deps/gtest" "$(cat ${rootdir}/deps/gtest/LICENSE)"
8282
# nghttp2
8383
addlicense "nghttp2" "deps/nghttp2" "$(cat ${rootdir}/deps/nghttp2/COPYING)"
8484

85+
# remark-cli
86+
addlicense "remark-cli" "tools/remark-cli" "$(cat ${rootdir}/tools/remark-cli/LICENSE)"
8587

8688
mv $tmplicense $licensefile

tools/remark-cli/LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
(The MIT License)
2+
3+
Copyright (c) 2014-2016 Titus Wormer <tituswormer@gmail.com>
4+
Copyright (c) 2011-2014, Christopher Jeffrey (https://github.com/chjj/)
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in
14+
all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+
THE SOFTWARE.

0 commit comments

Comments
 (0)