licensee 9.12.0 → 9.14.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.md +1 -1
  3. data/bin/licensee +4 -4
  4. data/lib/licensee.rb +3 -3
  5. data/lib/licensee/commands/detect.rb +6 -6
  6. data/lib/licensee/commands/diff.rb +2 -2
  7. data/lib/licensee/content_helper.rb +72 -26
  8. data/lib/licensee/hash_helper.rb +5 -5
  9. data/lib/licensee/license.rb +17 -21
  10. data/lib/licensee/matchers.rb +1 -0
  11. data/lib/licensee/matchers/cabal.rb +1 -1
  12. data/lib/licensee/matchers/cargo.rb +1 -1
  13. data/lib/licensee/matchers/copyright.rb +3 -3
  14. data/lib/licensee/matchers/dice.rb +4 -4
  15. data/lib/licensee/matchers/dist_zilla.rb +1 -1
  16. data/lib/licensee/matchers/gemspec.rb +4 -4
  17. data/lib/licensee/matchers/npm_bower.rb +5 -2
  18. data/lib/licensee/matchers/nuget.rb +43 -0
  19. data/lib/licensee/matchers/spdx.rb +1 -1
  20. data/lib/licensee/project_files/license_file.rb +3 -3
  21. data/lib/licensee/project_files/package_manager_file.rb +3 -2
  22. data/lib/licensee/project_files/project_file.rb +2 -1
  23. data/lib/licensee/projects/fs_project.rb +7 -2
  24. data/lib/licensee/projects/git_project.rb +3 -3
  25. data/lib/licensee/projects/github_project.rb +1 -1
  26. data/lib/licensee/projects/project.rb +3 -3
  27. data/lib/licensee/version.rb +1 -1
  28. data/licensee.gemspec +45 -0
  29. data/spec/bin_spec.rb +1 -1
  30. data/spec/fixture_spec.rb +5 -5
  31. data/spec/fixtures/bom/LICENSE.txt +21 -0
  32. data/spec/fixtures/bsd-3-noendorseslash/LICENSE +30 -0
  33. data/spec/fixtures/cc0-cal2013/LICENSE +116 -0
  34. data/spec/fixtures/cc0-cc/LICENSE +121 -0
  35. data/spec/fixtures/crlf-bsd/LICENSE.md +27 -0
  36. data/spec/fixtures/detect.json +14 -20
  37. data/spec/fixtures/fixtures.yml +43 -3
  38. data/spec/fixtures/license-hashes.json +10 -8
  39. data/spec/fixtures/markdown-artistic/LICENSE.md +192 -0
  40. data/spec/fixtures/multiple-arrs/LICENSE +30 -0
  41. data/spec/fixtures/readme-invalid-encoding/README.md +24 -0
  42. data/spec/fixtures/unlicense-noinfo/LICENSE +22 -0
  43. data/spec/fixtures/vim/LICENSE +78 -0
  44. data/spec/integration_spec.rb +87 -4
  45. data/spec/licensee/commands/detect_spec.rb +5 -5
  46. data/spec/licensee/commands/license_path_spec.rb +1 -1
  47. data/spec/licensee/commands/version_spec.rb +1 -1
  48. data/spec/licensee/content_helper_spec.rb +46 -50
  49. data/spec/licensee/hash_helper_spec.rb +23 -23
  50. data/spec/licensee/license_field_spec.rb +3 -3
  51. data/spec/licensee/license_meta_spec.rb +18 -22
  52. data/spec/licensee/license_rules_spec.rb +4 -2
  53. data/spec/licensee/license_spec.rb +43 -39
  54. data/spec/licensee/matchers/cabal_matcher_spec.rb +4 -2
  55. data/spec/licensee/matchers/cargo_matcher_spec.rb +3 -2
  56. data/spec/licensee/matchers/copyright_matcher_spec.rb +3 -3
  57. data/spec/licensee/matchers/cran_matcher_spec.rb +3 -2
  58. data/spec/licensee/matchers/dice_matcher_spec.rb +15 -21
  59. data/spec/licensee/matchers/dist_zilla_matcher_spec.rb +3 -2
  60. data/spec/licensee/matchers/exact_matcher_spec.rb +3 -2
  61. data/spec/licensee/matchers/gemspec_matcher_spec.rb +3 -2
  62. data/spec/licensee/matchers/matcher_spec.rb +10 -8
  63. data/spec/licensee/matchers/npm_bower_matcher_spec.rb +12 -3
  64. data/spec/licensee/matchers/nu_get_matcher_spec.rb +91 -0
  65. data/spec/licensee/matchers/package_matcher_spec.rb +4 -2
  66. data/spec/licensee/matchers/reference_matcher_spec.rb +2 -2
  67. data/spec/licensee/matchers/spdx_matcher_spec.rb +3 -2
  68. data/spec/licensee/project_files/license_file_spec.rb +43 -42
  69. data/spec/licensee/project_files/package_info_spec.rb +11 -1
  70. data/spec/licensee/project_files/project_file_spec.rb +5 -2
  71. data/spec/licensee/project_files/readme_file_spec.rb +2 -1
  72. data/spec/licensee/project_spec.rb +22 -17
  73. data/spec/licensee/projects/github_project_spec.rb +6 -5
  74. data/spec/licensee/rule_spec.rb +5 -4
  75. data/spec/licensee_spec.rb +10 -9
  76. data/spec/spec_helper.rb +2 -2
  77. data/spec/vendored_license_spec.rb +5 -5
  78. data/vendor/choosealicense.com/_data/meta.yml +1 -1
  79. data/vendor/choosealicense.com/_data/rules.yml +15 -12
  80. data/vendor/choosealicense.com/_licenses/0bsd.txt +3 -3
  81. data/vendor/choosealicense.com/_licenses/apache-2.0.txt +4 -4
  82. data/vendor/choosealicense.com/_licenses/artistic-2.0.txt +1 -1
  83. data/vendor/choosealicense.com/_licenses/bsd-2-clause.txt +3 -3
  84. data/vendor/choosealicense.com/_licenses/bsd-3-clause-clear.txt +1 -0
  85. data/vendor/choosealicense.com/_licenses/bsd-3-clause.txt +3 -3
  86. data/vendor/choosealicense.com/_licenses/bsd-4-clause.txt +61 -0
  87. data/vendor/choosealicense.com/_licenses/bsl-1.0.txt +5 -1
  88. data/vendor/choosealicense.com/_licenses/cc-by-4.0.txt +16 -13
  89. data/vendor/choosealicense.com/_licenses/cc-by-sa-4.0.txt +16 -13
  90. data/vendor/choosealicense.com/_licenses/cc0-1.0.txt +113 -104
  91. data/vendor/choosealicense.com/_licenses/cecill-2.1.txt +6 -6
  92. data/vendor/choosealicense.com/_licenses/ecl-2.0.txt +4 -4
  93. data/vendor/choosealicense.com/_licenses/epl-1.0.txt +3 -3
  94. data/vendor/choosealicense.com/_licenses/epl-2.0.txt +5 -5
  95. data/vendor/choosealicense.com/_licenses/eupl-1.2.txt +3 -3
  96. data/vendor/choosealicense.com/_licenses/gpl-2.0.txt +3 -3
  97. data/vendor/choosealicense.com/_licenses/gpl-3.0.txt +4 -4
  98. data/vendor/choosealicense.com/_licenses/isc.txt +3 -3
  99. data/vendor/choosealicense.com/_licenses/lgpl-3.0.txt +0 -1
  100. data/vendor/choosealicense.com/_licenses/lppl-1.3c.txt +1 -1
  101. data/vendor/choosealicense.com/_licenses/mit.txt +3 -3
  102. data/vendor/choosealicense.com/_licenses/mpl-2.0.txt +3 -3
  103. data/vendor/choosealicense.com/_licenses/ncsa.txt +24 -24
  104. data/vendor/choosealicense.com/_licenses/odbl-1.0.txt +3 -3
  105. data/vendor/choosealicense.com/_licenses/ofl-1.1.txt +4 -1
  106. data/vendor/choosealicense.com/_licenses/osl-3.0.txt +3 -3
  107. data/vendor/choosealicense.com/_licenses/postgresql.txt +5 -5
  108. data/vendor/choosealicense.com/_licenses/unlicense.txt +3 -3
  109. data/vendor/choosealicense.com/_licenses/upl-1.0.txt +4 -4
  110. data/vendor/choosealicense.com/_licenses/vim.txt +111 -0
  111. data/vendor/choosealicense.com/_licenses/zlib.txt +4 -1
  112. metadata +62 -21
@@ -7,6 +7,9 @@ description: Similar to <a href='/licenses/cc-by-4.0/'>CC-BY-4.0</a> but require
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. It is also acceptable to solely supply a link to a copy of the license, usually to the <a href='https://creativecommons.org/licenses/by-sa/4.0/'>canonical URL for the license</a>.
8
8
 
9
9
  using:
10
+ Flight rules for Git: https://github.com/k88hudson/git-flight-rules/blob/master/LICENSE
11
+ Material Design Iconic Font: https://github.com/zavoloklom/material-design-iconic-font/blob/master/License.md
12
+ OWASP MSTG: https://github.com/OWASP/owasp-mstg/blob/master/License.md
10
13
 
11
14
  permissions:
12
15
  - commercial-use
@@ -62,7 +65,7 @@ exhaustive, and do not form part of our licenses.
62
65
  material not subject to the license. This includes other CC-
63
66
  licensed material, or material used under an exception or
64
67
  limitation to copyright. More considerations for licensors:
65
- wiki.creativecommons.org/Considerations_for_licensors
68
+ wiki.creativecommons.org/Considerations_for_licensors
66
69
 
67
70
  Considerations for the public: By using one of our public
68
71
  licenses, a licensor grants the public permission to use the
@@ -77,9 +80,9 @@ exhaustive, and do not form part of our licenses.
77
80
  rights in the material. A licensor may make special requests,
78
81
  such as asking that all changes be marked or described.
79
82
  Although not required by our licenses, you are encouraged to
80
- respect those requests where reasonable. More_considerations
83
+ respect those requests where reasonable. More considerations
81
84
  for the public:
82
- wiki.creativecommons.org/Considerations_for_licensees
85
+ wiki.creativecommons.org/Considerations_for_licensees
83
86
 
84
87
  =======================================================================
85
88
 
@@ -436,21 +439,21 @@ Section 8 -- Interpretation.
436
439
 
437
440
  =======================================================================
438
441
 
439
- Creative Commons is not a party to its public
440
- licenses. Notwithstanding, Creative Commons may elect to apply one of
441
- its public licenses to material it publishes and in those instances
442
- will be considered the “Licensor.” The text of the Creative Commons
443
- public licenses is dedicated to the public domain under the CC0 Public
444
- Domain Dedication. Except for the limited purpose of indicating that
445
- material is shared under a Creative Commons public license or as
446
- otherwise permitted by the Creative Commons policies published at
442
+ Creative Commons is not a party to its public licenses.
443
+ Notwithstanding, Creative Commons may elect to apply one of its public
444
+ licenses to material it publishes and in those instances will be
445
+ considered the “Licensor.” The text of the Creative Commons public
446
+ licenses is dedicated to the public domain under the CC0 Public Domain
447
+ Dedication. Except for the limited purpose of indicating that material
448
+ is shared under a Creative Commons public license or as otherwise
449
+ permitted by the Creative Commons policies published at
447
450
  creativecommons.org/policies, Creative Commons does not authorize the
448
451
  use of the trademark "Creative Commons" or any other trademark or logo
449
452
  of Creative Commons without its prior written consent including,
450
453
  without limitation, in connection with any unauthorized modifications
451
454
  to any of its public licenses or any other arrangements,
452
455
  understandings, or agreements concerning use of licensed material. For
453
- the avoidance of doubt, this paragraph does not form part of the
454
- public licenses.
456
+ the avoidance of doubt, this paragraph does not form part of the public
457
+ licenses.
455
458
 
456
459
  Creative Commons may be contacted at creativecommons.org.
@@ -2,14 +2,18 @@
2
2
  title: Creative Commons Zero v1.0 Universal
3
3
  spdx-id: CC0-1.0
4
4
  redirect_from: /licenses/cc0/
5
+ hidden: false
5
6
 
6
7
  description: The <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons CC0 Public Domain Dedication</a> waives copyright interest in a work you've created and dedicates it to the world-wide public domain. Use CC0 to opt out of copyright entirely and ensure your work has the widest reach. As with the Unlicense and typical software licenses, CC0 disclaims warranties. CC0 is very similar to the Unlicense.
7
8
 
8
- how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the CC0 into the file.
9
+ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
9
10
 
10
11
  note: Creative Commons recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be <a href="https://wiki.creativecommons.org/wiki/CC0_FAQ#May_I_apply_CC0_to_computer_software.3F_If_so.2C_is_there_a_recommended_implementation.3F">found on their website</a>.
11
12
 
12
13
  using:
14
+ Awesome: https://github.com/sindresorhus/awesome/blob/main/license
15
+ Shields.io: https://github.com/badges/shields/blob/master/LICENSE
16
+ psdash: https://github.com/Jahaja/psdash/blob/master/LICENSE
13
17
 
14
18
  permissions:
15
19
  - commercial-use
@@ -27,119 +31,124 @@ limitations:
27
31
 
28
32
  ---
29
33
 
34
+ Creative Commons Legal Code
35
+
30
36
  CC0 1.0 Universal
31
37
 
38
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
39
+ LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
40
+ ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
41
+ INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
42
+ REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
43
+ PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
44
+ THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
45
+ HEREUNDER.
46
+
32
47
  Statement of Purpose
33
48
 
34
49
  The laws of most jurisdictions throughout the world automatically confer
35
- exclusive Copyright and Related Rights (defined below) upon the creator and
36
- subsequent owner(s) (each and all, an "owner") of an original work of
50
+ exclusive Copyright and Related Rights (defined below) upon the creator
51
+ and subsequent owner(s) (each and all, an "owner") of an original work of
37
52
  authorship and/or a database (each, a "Work").
38
53
 
39
- Certain owners wish to permanently relinquish those rights to a Work for the
40
- purpose of contributing to a commons of creative, cultural and scientific
41
- works ("Commons") that the public can reliably and without fear of later
42
- claims of infringement build upon, modify, incorporate in other works, reuse
43
- and redistribute as freely as possible in any form whatsoever and for any
44
- purposes, including without limitation commercial purposes. These owners may
45
- contribute to the Commons to promote the ideal of a free culture and the
46
- further production of creative, cultural and scientific works, or to gain
47
- reputation or greater distribution for their Work in part through the use and
48
- efforts of others.
49
-
50
- For these and/or other purposes and motivations, and without any expectation
51
- of additional consideration or compensation, the person associating CC0 with a
52
- Work (the "Affirmer"), to the extent that he or she is an owner of Copyright
53
- and Related Rights in the Work, voluntarily elects to apply CC0 to the Work
54
- and publicly distribute the Work under its terms, with knowledge of his or her
55
- Copyright and Related Rights in the Work and the meaning and intended legal
56
- effect of CC0 on those rights.
54
+ Certain owners wish to permanently relinquish those rights to a Work for
55
+ the purpose of contributing to a commons of creative, cultural and
56
+ scientific works ("Commons") that the public can reliably and without fear
57
+ of later claims of infringement build upon, modify, incorporate in other
58
+ works, reuse and redistribute as freely as possible in any form whatsoever
59
+ and for any purposes, including without limitation commercial purposes.
60
+ These owners may contribute to the Commons to promote the ideal of a free
61
+ culture and the further production of creative, cultural and scientific
62
+ works, or to gain reputation or greater distribution for their Work in
63
+ part through the use and efforts of others.
64
+
65
+ For these and/or other purposes and motivations, and without any
66
+ expectation of additional consideration or compensation, the person
67
+ associating CC0 with a Work (the "Affirmer"), to the extent that he or she
68
+ is an owner of Copyright and Related Rights in the Work, voluntarily
69
+ elects to apply CC0 to the Work and publicly distribute the Work under its
70
+ terms, with knowledge of his or her Copyright and Related Rights in the
71
+ Work and the meaning and intended legal effect of CC0 on those rights.
57
72
 
58
73
  1. Copyright and Related Rights. A Work made available under CC0 may be
59
74
  protected by copyright and related or neighboring rights ("Copyright and
60
- Related Rights"). Copyright and Related Rights include, but are not limited
61
- to, the following:
62
-
63
- i. the right to reproduce, adapt, distribute, perform, display, communicate,
64
- and translate a Work;
65
-
66
- ii. moral rights retained by the original author(s) and/or performer(s);
67
-
68
- iii. publicity and privacy rights pertaining to a person's image or likeness
69
- depicted in a Work;
70
-
71
- iv. rights protecting against unfair competition in regards to a Work,
72
- subject to the limitations in paragraph 4(a), below;
73
-
74
- v. rights protecting the extraction, dissemination, use and reuse of data in
75
- a Work;
76
-
77
- vi. database rights (such as those arising under Directive 96/9/EC of the
78
- European Parliament and of the Council of 11 March 1996 on the legal
79
- protection of databases, and under any national implementation thereof,
80
- including any amended or successor version of such directive); and
81
-
82
- vii. other similar, equivalent or corresponding rights throughout the world
83
- based on applicable law or treaty, and any national implementations thereof.
84
-
85
- 2. Waiver. To the greatest extent permitted by, but not in contravention of,
86
- applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and
87
- unconditionally waives, abandons, and surrenders all of Affirmer's Copyright
88
- and Related Rights and associated claims and causes of action, whether now
89
- known or unknown (including existing as well as future claims and causes of
90
- action), in the Work (i) in all territories worldwide, (ii) for the maximum
91
- duration provided by applicable law or treaty (including future time
92
- extensions), (iii) in any current or future medium and for any number of
93
- copies, and (iv) for any purpose whatsoever, including without limitation
94
- commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes
95
- the Waiver for the benefit of each member of the public at large and to the
96
- detriment of Affirmer's heirs and successors, fully intending that such Waiver
97
- shall not be subject to revocation, rescission, cancellation, termination, or
98
- any other legal or equitable action to disrupt the quiet enjoyment of the Work
99
- by the public as contemplated by Affirmer's express Statement of Purpose.
100
-
101
- 3. Public License Fallback. Should any part of the Waiver for any reason be
102
- judged legally invalid or ineffective under applicable law, then the Waiver
103
- shall be preserved to the maximum extent permitted taking into account
104
- Affirmer's express Statement of Purpose. In addition, to the extent the Waiver
105
- is so judged Affirmer hereby grants to each affected person a royalty-free,
106
- non transferable, non sublicensable, non exclusive, irrevocable and
107
- unconditional license to exercise Affirmer's Copyright and Related Rights in
108
- the Work (i) in all territories worldwide, (ii) for the maximum duration
109
- provided by applicable law or treaty (including future time extensions), (iii)
110
- in any current or future medium and for any number of copies, and (iv) for any
111
- purpose whatsoever, including without limitation commercial, advertising or
112
- promotional purposes (the "License"). The License shall be deemed effective as
113
- of the date CC0 was applied by Affirmer to the Work. Should any part of the
114
- License for any reason be judged legally invalid or ineffective under
115
- applicable law, such partial invalidity or ineffectiveness shall not
116
- invalidate the remainder of the License, and in such case Affirmer hereby
117
- affirms that he or she will not (i) exercise any of his or her remaining
118
- Copyright and Related Rights in the Work or (ii) assert any associated claims
119
- and causes of action with respect to the Work, in either case contrary to
120
- Affirmer's express Statement of Purpose.
75
+ Related Rights"). Copyright and Related Rights include, but are not
76
+ limited to, the following:
77
+
78
+ i. the right to reproduce, adapt, distribute, perform, display,
79
+ communicate, and translate a Work;
80
+ ii. moral rights retained by the original author(s) and/or performer(s);
81
+ iii. publicity and privacy rights pertaining to a person's image or
82
+ likeness depicted in a Work;
83
+ iv. rights protecting against unfair competition in regards to a Work,
84
+ subject to the limitations in paragraph 4(a), below;
85
+ v. rights protecting the extraction, dissemination, use and reuse of data
86
+ in a Work;
87
+ vi. database rights (such as those arising under Directive 96/9/EC of the
88
+ European Parliament and of the Council of 11 March 1996 on the legal
89
+ protection of databases, and under any national implementation
90
+ thereof, including any amended or successor version of such
91
+ directive); and
92
+ vii. other similar, equivalent or corresponding rights throughout the
93
+ world based on applicable law or treaty, and any national
94
+ implementations thereof.
95
+
96
+ 2. Waiver. To the greatest extent permitted by, but not in contravention
97
+ of, applicable law, Affirmer hereby overtly, fully, permanently,
98
+ irrevocably and unconditionally waives, abandons, and surrenders all of
99
+ Affirmer's Copyright and Related Rights and associated claims and causes
100
+ of action, whether now known or unknown (including existing as well as
101
+ future claims and causes of action), in the Work (i) in all territories
102
+ worldwide, (ii) for the maximum duration provided by applicable law or
103
+ treaty (including future time extensions), (iii) in any current or future
104
+ medium and for any number of copies, and (iv) for any purpose whatsoever,
105
+ including without limitation commercial, advertising or promotional
106
+ purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
107
+ member of the public at large and to the detriment of Affirmer's heirs and
108
+ successors, fully intending that such Waiver shall not be subject to
109
+ revocation, rescission, cancellation, termination, or any other legal or
110
+ equitable action to disrupt the quiet enjoyment of the Work by the public
111
+ as contemplated by Affirmer's express Statement of Purpose.
112
+
113
+ 3. Public License Fallback. Should any part of the Waiver for any reason
114
+ be judged legally invalid or ineffective under applicable law, then the
115
+ Waiver shall be preserved to the maximum extent permitted taking into
116
+ account Affirmer's express Statement of Purpose. In addition, to the
117
+ extent the Waiver is so judged Affirmer hereby grants to each affected
118
+ person a royalty-free, non transferable, non sublicensable, non exclusive,
119
+ irrevocable and unconditional license to exercise Affirmer's Copyright and
120
+ Related Rights in the Work (i) in all territories worldwide, (ii) for the
121
+ maximum duration provided by applicable law or treaty (including future
122
+ time extensions), (iii) in any current or future medium and for any number
123
+ of copies, and (iv) for any purpose whatsoever, including without
124
+ limitation commercial, advertising or promotional purposes (the
125
+ "License"). The License shall be deemed effective as of the date CC0 was
126
+ applied by Affirmer to the Work. Should any part of the License for any
127
+ reason be judged legally invalid or ineffective under applicable law, such
128
+ partial invalidity or ineffectiveness shall not invalidate the remainder
129
+ of the License, and in such case Affirmer hereby affirms that he or she
130
+ will not (i) exercise any of his or her remaining Copyright and Related
131
+ Rights in the Work or (ii) assert any associated claims and causes of
132
+ action with respect to the Work, in either case contrary to Affirmer's
133
+ express Statement of Purpose.
121
134
 
122
135
  4. Limitations and Disclaimers.
123
136
 
124
- a. No trademark or patent rights held by Affirmer are waived, abandoned,
125
- surrendered, licensed or otherwise affected by this document.
126
-
127
- b. Affirmer offers the Work as-is and makes no representations or warranties
128
- of any kind concerning the Work, express, implied, statutory or otherwise,
129
- including without limitation warranties of title, merchantability, fitness
130
- for a particular purpose, non infringement, or the absence of latent or
131
- other defects, accuracy, or the present or absence of errors, whether or not
132
- discoverable, all to the greatest extent permissible under applicable law.
133
-
134
- c. Affirmer disclaims responsibility for clearing rights of other persons
135
- that may apply to the Work or any use thereof, including without limitation
136
- any person's Copyright and Related Rights in the Work. Further, Affirmer
137
- disclaims responsibility for obtaining any necessary consents, permissions
138
- or other rights required for any use of the Work.
139
-
140
- d. Affirmer understands and acknowledges that Creative Commons is not a
141
- party to this document and has no duty or obligation with respect to this
142
- CC0 or use of the Work.
143
-
144
- For more information, please see
145
- <http://creativecommons.org/publicdomain/zero/1.0/>
137
+ a. No trademark or patent rights held by Affirmer are waived, abandoned,
138
+ surrendered, licensed or otherwise affected by this document.
139
+ b. Affirmer offers the Work as-is and makes no representations or
140
+ warranties of any kind concerning the Work, express, implied,
141
+ statutory or otherwise, including without limitation warranties of
142
+ title, merchantability, fitness for a particular purpose, non
143
+ infringement, or the absence of latent or other defects, accuracy, or
144
+ the present or absence of errors, whether or not discoverable, all to
145
+ the greatest extent permissible under applicable law.
146
+ c. Affirmer disclaims responsibility for clearing rights of other persons
147
+ that may apply to the Work or any use thereof, including without
148
+ limitation any person's Copyright and Related Rights in the Work.
149
+ Further, Affirmer disclaims responsibility for obtaining any necessary
150
+ consents, permissions or other rights required for any use of the
151
+ Work.
152
+ d. Affirmer understands and acknowledges that Creative Commons is not a
153
+ party to this document and has no duty or obligation with respect to
154
+ this CC0 or use of the Work.
@@ -4,12 +4,12 @@ spdx-id: CECILL-2.1
4
4
 
5
5
  description: Strong copyleft license made by three French public research organisations, CEA, CNRS, and Inria, compatible with AGPL-3.0, EUPL-1.1, and GPL-2.0, or later versions of those licenses.
6
6
 
7
- how: Create a text file (typically named LICENSE or LICENCE) in the root of your source code and copy the text of the license into the file.
7
+ how: Create a text file (typically named LICENSE or LICENCE) in the root of your source code and copy the text of the license into the file.
8
8
 
9
9
  using:
10
- - BMC-Tools: https://github.com/ANSSI-FR/bmc-tools/blob/master/LICENCE.txt
11
- - Taxe foncière: https://github.com/etalab/taxe-fonciere/blob/master/LICENSE
12
- - VITAM: https://github.com/ProgrammeVitam/vitam/blob/master_0.15.x/Licence_CeCILL_V2.1-fr.txt
10
+ BMC-Tools: https://github.com/ANSSI-FR/bmc-tools/blob/master/LICENCE.txt
11
+ Taxe foncière: https://github.com/etalab/taxe-fonciere/blob/master/LICENSE
12
+ VITAM: https://github.com/ProgrammeVitam/vitam/blob/master_0.15.x/Licence_CeCILL_V2.1-fr.txt
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -22,7 +22,7 @@ conditions:
22
22
  - include-copyright
23
23
  - disclose-source
24
24
  - same-license
25
-
25
+
26
26
  limitations:
27
27
  - liability
28
28
  - warranty
@@ -102,7 +102,7 @@ titulaire des droits patrimoniaux décide de soumettre l'exploitation aux
102
102
  dispositions qu'il contient.
103
103
 
104
104
  Une liste de questions fréquemment posées se trouve sur le site web
105
- officiel de la famille des licences CeCILL
105
+ officiel de la famille des licences CeCILL
106
106
  (http://www.cecill.info/index.fr.html) pour toute clarification qui
107
107
  serait nécessaire.
108
108
 
@@ -6,12 +6,12 @@ description: The Educational Community License version 2.0 ("ECL") consists of t
6
6
 
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
8
8
 
9
- note: The Apereo Foundation recommends taking the additional step of adding a boilerplate notice to the header of each source file. You can find the notice at the very end of the license in the appendix.
9
+ note: The Apereo Foundation recommends taking the additional step of adding a boilerplate notice to the header of each source file. You can find the notice in the appendix at the very end of the license text.
10
10
 
11
11
  using:
12
- - Sakai: https://github.com/sakaiproject/sakai/blob/master/LICENSE
13
- - OAE: https://github.com/oaeproject/Hilary/blob/master/LICENSE
14
- - Opencast: https://github.com/opencast/opencast/blob/develop/LICENSE
12
+ Sakai: https://github.com/sakaiproject/sakai/blob/master/LICENSE
13
+ OAE: https://github.com/oaeproject/Hilary/blob/master/LICENSE
14
+ Opencast: https://github.com/opencast/opencast/blob/develop/LICENSE
15
15
 
16
16
  permissions:
17
17
  - commercial-use
@@ -7,9 +7,9 @@ description: This commercially-friendly copyleft license provides the ability to
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
8
8
 
9
9
  using:
10
- - Eclipse hawkBit: https://github.com/eclipse/hawkbit/blob/master/LICENSE
11
- - JUnit: https://github.com/junit-team/junit4/blob/master/LICENSE-junit.txt
12
- - Quil: https://github.com/quil/quil/blob/master/LICENSE
10
+ Eclipse hawkBit: https://github.com/eclipse/hawkbit/blob/master/LICENSE
11
+ JUnit: https://github.com/junit-team/junit4/blob/main/LICENSE-junit.txt
12
+ Quil: https://github.com/quil/quil/blob/master/LICENSE
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -9,9 +9,9 @@ description: This commercially-friendly copyleft license provides the ability to
9
9
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file.
10
10
 
11
11
  using:
12
- - Eclipse SmartHome: https://github.com/eclipse/smarthome/blob/master/LICENSE
13
- - openHAB: https://github.com/openhab/openhab-distro/blob/master/LICENSE
14
- - SUMO: https://github.com/eclipse/sumo/blob/master/LICENSE
12
+ Eclipse SmartHome: https://github.com/eclipse/smarthome/blob/master/LICENSE
13
+ openHAB: https://github.com/openhab/openhab-distro/blob/master/LICENSE
14
+ SUMO: https://github.com/eclipse/sumo/blob/master/LICENSE
15
15
 
16
16
  permissions:
17
17
  - commercial-use
@@ -294,8 +294,8 @@ No third-party beneficiary rights are created under this Agreement.
294
294
 
295
295
  Exhibit A - Form of Secondary Licenses Notice
296
296
 
297
- "This Source Code may also be made available under the following
298
- Secondary Licenses when the conditions for such availability set forth
297
+ "This Source Code may also be made available under the following
298
+ Secondary Licenses when the conditions for such availability set forth
299
299
  in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
300
300
  version(s), and exceptions or additional permissions here}."
301
301
 
@@ -7,9 +7,9 @@ description: The European Union Public Licence (EUPL) is a copyleft free/open so
7
7
  how: Indicate “Licensed under the EUPL” following the copyright notice of your source code, for example in a README file or directly in a source code file as a comment.
8
8
 
9
9
  using:
10
- - AethysRotation: https://github.com/SimCMinMax/AethysRotation/blob/master/LICENSE
11
- - WildDuck: https://github.com/nodemailer/wildduck/blob/master/LICENSE
12
- - ZoneMTA: https://github.com/zone-eu/zone-mta/blob/master/LICENSE
10
+ AethysRotation: https://github.com/SimCMinMax/AethysRotation/blob/master/LICENSE
11
+ WildDuck: https://github.com/nodemailer/wildduck/blob/master/LICENSE
12
+ ZoneMTA: https://github.com/zone-eu/zone-mta/blob/master/LICENSE
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -12,9 +12,9 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
12
12
  note: The Free Software Foundation recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the end of the license.
13
13
 
14
14
  using:
15
- - AliSQL: https://github.com/alibaba/AliSQL/blob/master/COPYING
16
- - Discourse: https://github.com/discourse/discourse/blob/master/LICENSE.txt
17
- - Joomla!: https://github.com/joomla/joomla-cms/blob/staging/LICENSE.txt
15
+ AliSQL: https://github.com/alibaba/AliSQL/blob/master/COPYING
16
+ Discourse: https://github.com/discourse/discourse/blob/master/LICENSE.txt
17
+ Joomla!: https://github.com/joomla/joomla-cms/blob/staging/LICENSE.txt
18
18
 
19
19
  permissions:
20
20
  - commercial-use
@@ -8,14 +8,14 @@ hidden: false
8
8
 
9
9
  description: Permissions of this strong copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights.
10
10
 
11
- how: Create a text file in the root of your source code, typically named COPYING (a GNU convention), LICENSE or LICENSE.txt. Then copy the text of the license into that file.
11
+ how: Create a text file (typically named COPYING, as per GNU conventions) in the root of your source code and copy the text of the license into the file.
12
12
 
13
13
  note: The Free Software Foundation recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the end of the license.
14
14
 
15
15
  using:
16
- - Ansible: https://github.com/ansible/ansible/blob/devel/COPYING
17
- - Bash: https://git.savannah.gnu.org/cgit/bash.git/tree/COPYING
18
- - GIMP: https://git.gnome.org/browse/gimp/tree/COPYING
16
+ Ansible: https://github.com/ansible/ansible/blob/devel/COPYING
17
+ Bash: https://git.savannah.gnu.org/cgit/bash.git/tree/COPYING
18
+ GIMP: https://git.gnome.org/browse/gimp/tree/COPYING
19
19
 
20
20
  permissions:
21
21
  - commercial-use
@@ -7,9 +7,9 @@ description: A permissive license lets people do anything with your code with pr
7
7
  how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.
8
8
 
9
9
  using:
10
- - Helix: https://github.com/tildeio/helix/blob/master/LICENSE
11
- - Node.js semver: https://github.com/npm/node-semver/blob/master/LICENSE
12
- - OpenStreetMap iD: https://github.com/openstreetmap/iD/blob/master/LICENSE.md
10
+ Starship: https://github.com/starship/starship/blob/master/LICENSE
11
+ Node.js semver: https://github.com/npm/node-semver/blob/master/LICENSE
12
+ OpenStreetMap iD: https://github.com/openstreetmap/iD/blob/develop/LICENSE.md
13
13
 
14
14
  permissions:
15
15
  - commercial-use