licensee 9.13.1 → 9.15.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (133) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.md +1 -1
  3. data/bin/licensee +1 -1
  4. data/lib/licensee.rb +4 -4
  5. data/lib/licensee/commands/detect.rb +3 -5
  6. data/lib/licensee/commands/diff.rb +3 -5
  7. data/lib/licensee/content_helper.rb +46 -42
  8. data/lib/licensee/hash_helper.rb +1 -1
  9. data/lib/licensee/license.rb +29 -15
  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 -8
  14. data/lib/licensee/matchers/cran.rb +1 -1
  15. data/lib/licensee/matchers/dice.rb +2 -2
  16. data/lib/licensee/matchers/dist_zilla.rb +1 -1
  17. data/lib/licensee/matchers/gemspec.rb +4 -4
  18. data/lib/licensee/matchers/npm_bower.rb +5 -2
  19. data/lib/licensee/matchers/nuget.rb +43 -0
  20. data/lib/licensee/matchers/spdx.rb +1 -1
  21. data/lib/licensee/project_files/license_file.rb +29 -22
  22. data/lib/licensee/project_files/package_manager_file.rb +3 -2
  23. data/lib/licensee/project_files/project_file.rb +3 -4
  24. data/lib/licensee/project_files/readme_file.rb +1 -1
  25. data/lib/licensee/projects/fs_project.rb +8 -5
  26. data/lib/licensee/projects/git_project.rb +6 -4
  27. data/lib/licensee/projects/github_project.rb +1 -1
  28. data/lib/licensee/projects/project.rb +11 -10
  29. data/lib/licensee/version.rb +1 -1
  30. data/licensee.gemspec +7 -8
  31. data/spec/fixture_spec.rb +3 -3
  32. data/spec/fixtures/bom/LICENSE.txt +21 -0
  33. data/spec/fixtures/bsd-3-authorowner/LICENSE +27 -0
  34. data/spec/fixtures/cc-by-sa-mdlinks/License.md +173 -0
  35. data/spec/fixtures/cc-by-sa-nocclicensor/License.md +425 -0
  36. data/spec/fixtures/crlf-bsd/LICENSE.md +27 -0
  37. data/spec/fixtures/detect.json +16 -22
  38. data/spec/fixtures/eupl-cal2017/LICENSE.txt +274 -0
  39. data/spec/fixtures/fixtures.yml +62 -22
  40. data/spec/fixtures/license-hashes.json +39 -38
  41. data/spec/fixtures/markdown-artistic/LICENSE.md +192 -0
  42. data/spec/fixtures/pixar-modified-apache/LICENSE.txt +174 -0
  43. data/spec/fixtures/readme-invalid-encoding/README.md +24 -0
  44. data/spec/fixtures/vim/LICENSE +78 -0
  45. data/spec/integration_spec.rb +86 -9
  46. data/spec/licensee/commands/detect_spec.rb +2 -2
  47. data/spec/licensee/content_helper_spec.rb +21 -21
  48. data/spec/licensee/hash_helper_spec.rb +22 -22
  49. data/spec/licensee/license_meta_spec.rb +5 -11
  50. data/spec/licensee/license_spec.rb +14 -10
  51. data/spec/licensee/matchers/dice_matcher_spec.rb +4 -11
  52. data/spec/licensee/matchers/matcher_spec.rb +6 -6
  53. data/spec/licensee/matchers/npm_bower_matcher_spec.rb +9 -0
  54. data/spec/licensee/matchers/nu_get_matcher_spec.rb +91 -0
  55. data/spec/licensee/project_files/license_file_spec.rb +34 -27
  56. data/spec/licensee/project_files/package_info_spec.rb +8 -0
  57. data/spec/licensee/project_spec.rb +1 -3
  58. data/spec/licensee/rule_spec.rb +1 -1
  59. data/spec/licensee_spec.rb +1 -1
  60. data/spec/spec_helper.rb +3 -3
  61. data/spec/vendored_license_spec.rb +2 -2
  62. data/vendor/choosealicense.com/_data/meta.yml +1 -1
  63. data/vendor/choosealicense.com/_data/rules.yml +13 -13
  64. data/vendor/choosealicense.com/_licenses/0bsd.txt +3 -3
  65. data/vendor/choosealicense.com/_licenses/apache-2.0.txt +3 -3
  66. data/vendor/choosealicense.com/_licenses/bsd-2-clause.txt +3 -3
  67. data/vendor/choosealicense.com/_licenses/bsd-3-clause.txt +3 -3
  68. data/vendor/choosealicense.com/_licenses/bsd-4-clause.txt +3 -3
  69. data/vendor/choosealicense.com/_licenses/bsl-1.0.txt +3 -3
  70. data/vendor/choosealicense.com/_licenses/cc-by-4.0.txt +16 -16
  71. data/vendor/choosealicense.com/_licenses/cc-by-sa-4.0.txt +16 -16
  72. data/vendor/choosealicense.com/_licenses/cc0-1.0.txt +3 -3
  73. data/vendor/choosealicense.com/_licenses/cecill-2.1.txt +3 -3
  74. data/vendor/choosealicense.com/_licenses/ecl-2.0.txt +3 -3
  75. data/vendor/choosealicense.com/_licenses/epl-1.0.txt +3 -3
  76. data/vendor/choosealicense.com/_licenses/epl-2.0.txt +3 -3
  77. data/vendor/choosealicense.com/_licenses/eupl-1.2.txt +77 -60
  78. data/vendor/choosealicense.com/_licenses/gpl-2.0.txt +3 -3
  79. data/vendor/choosealicense.com/_licenses/gpl-3.0.txt +3 -3
  80. data/vendor/choosealicense.com/_licenses/isc.txt +3 -3
  81. data/vendor/choosealicense.com/_licenses/mit-0.txt +45 -0
  82. data/vendor/choosealicense.com/_licenses/mit.txt +3 -3
  83. data/vendor/choosealicense.com/_licenses/mpl-2.0.txt +3 -3
  84. data/vendor/choosealicense.com/_licenses/ncsa.txt +3 -3
  85. data/vendor/choosealicense.com/_licenses/odbl-1.0.txt +3 -3
  86. data/vendor/choosealicense.com/_licenses/ofl-1.1.txt +3 -3
  87. data/vendor/choosealicense.com/_licenses/osl-3.0.txt +3 -3
  88. data/vendor/choosealicense.com/_licenses/postgresql.txt +3 -3
  89. data/vendor/choosealicense.com/_licenses/unlicense.txt +3 -3
  90. data/vendor/choosealicense.com/_licenses/upl-1.0.txt +3 -3
  91. data/vendor/choosealicense.com/_licenses/vim.txt +3 -3
  92. data/vendor/choosealicense.com/_licenses/zlib.txt +3 -3
  93. data/vendor/license-list-XML/src/0BSD.xml +21 -0
  94. data/vendor/license-list-XML/src/AFL-3.0.xml +212 -0
  95. data/vendor/license-list-XML/src/AGPL-3.0.xml +852 -0
  96. data/vendor/license-list-XML/src/Apache-2.0.xml +223 -0
  97. data/vendor/license-list-XML/src/Artistic-2.0.xml +238 -0
  98. data/vendor/license-list-XML/src/BSD-2-Clause.xml +42 -0
  99. data/vendor/license-list-XML/src/BSD-3-Clause-Clear.xml +59 -0
  100. data/vendor/license-list-XML/src/BSD-3-Clause.xml +46 -0
  101. data/vendor/license-list-XML/src/BSD-4-Clause.xml +59 -0
  102. data/vendor/license-list-XML/src/BSL-1.0.xml +30 -0
  103. data/vendor/license-list-XML/src/CC-BY-4.0.xml +444 -0
  104. data/vendor/license-list-XML/src/CC-BY-SA-4.0.xml +475 -0
  105. data/vendor/license-list-XML/src/CC0-1.0.xml +153 -0
  106. data/vendor/license-list-XML/src/CECILL-2.1.xml +669 -0
  107. data/vendor/license-list-XML/src/ECL-2.0.xml +242 -0
  108. data/vendor/license-list-XML/src/EPL-1.0.xml +255 -0
  109. data/vendor/license-list-XML/src/EPL-2.0.xml +639 -0
  110. data/vendor/license-list-XML/src/EUPL-1.1.xml +337 -0
  111. data/vendor/license-list-XML/src/EUPL-1.2.xml +502 -0
  112. data/vendor/license-list-XML/src/GPL-2.0.xml +474 -0
  113. data/vendor/license-list-XML/src/GPL-3.0.xml +858 -0
  114. data/vendor/license-list-XML/src/ISC.xml +29 -0
  115. data/vendor/license-list-XML/src/LGPL-2.1.xml +662 -0
  116. data/vendor/license-list-XML/src/LGPL-3.0.xml +260 -0
  117. data/vendor/license-list-XML/src/LPPL-1.3c.xml +380 -0
  118. data/vendor/license-list-XML/src/MIT-0.xml +40 -0
  119. data/vendor/license-list-XML/src/MIT.xml +32 -0
  120. data/vendor/license-list-XML/src/MPL-2.0.xml +438 -0
  121. data/vendor/license-list-XML/src/MS-PL.xml +89 -0
  122. data/vendor/license-list-XML/src/MS-RL.xml +97 -0
  123. data/vendor/license-list-XML/src/NCSA.xml +60 -0
  124. data/vendor/license-list-XML/src/ODbL-1.0.xml +660 -0
  125. data/vendor/license-list-XML/src/OFL-1.1.xml +94 -0
  126. data/vendor/license-list-XML/src/OSL-3.0.xml +209 -0
  127. data/vendor/license-list-XML/src/PostgreSQL.xml +32 -0
  128. data/vendor/license-list-XML/src/UPL-1.0.xml +46 -0
  129. data/vendor/license-list-XML/src/Unlicense.xml +27 -0
  130. data/vendor/license-list-XML/src/Vim.xml +124 -0
  131. data/vendor/license-list-XML/src/WTFPL.xml +30 -0
  132. data/vendor/license-list-XML/src/Zlib.xml +38 -0
  133. metadata +97 -32
@@ -7,9 +7,9 @@ description: The BSD Zero Clause license goes further than the BSD 2-Clause lice
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. You may take the additional step of removing the copyright notice.
8
8
 
9
9
  using:
10
- - PickMeUp: https://github.com/nazar-pc/PickMeUp/blob/master/copying.md
11
- - smoltcp: https://github.com/m-labs/smoltcp/blob/master/LICENSE-0BSD.txt
12
- - Toybox: https://github.com/landley/toybox/blob/master/LICENSE
10
+ PickMeUp: https://github.com/nazar-pc/PickMeUp/blob/master/copying.md
11
+ smoltcp: https://github.com/m-labs/smoltcp/blob/master/LICENSE-0BSD.txt
12
+ Toybox: https://github.com/landley/toybox/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 Apache 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.
13
13
 
14
14
  using:
15
- - Kubernetes: https://github.com/kubernetes/kubernetes/blob/master/LICENSE
16
- - PDF.js: https://github.com/mozilla/pdf.js/blob/master/LICENSE
17
- - Swift: https://github.com/apple/swift/blob/master/LICENSE.txt
15
+ Kubernetes: https://github.com/kubernetes/kubernetes/blob/master/LICENSE
16
+ PDF.js: https://github.com/mozilla/pdf.js/blob/master/LICENSE
17
+ Swift: https://github.com/apple/swift/blob/main/LICENSE.txt
18
18
 
19
19
  permissions:
20
20
  - commercial-use
@@ -9,9 +9,9 @@ description: A permissive license that comes in two variants, the <a href="/lice
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. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.
10
10
 
11
11
  using:
12
- - go-redis: https://github.com/go-redis/redis/blob/master/LICENSE
13
- - Homebrew: https://github.com/Homebrew/brew/blob/master/LICENSE.txt
14
- - Pony: https://github.com/ponylang/ponyc/blob/master/LICENSE
12
+ go-redis: https://github.com/go-redis/redis/blob/master/LICENSE
13
+ Homebrew: https://github.com/Homebrew/brew/blob/master/LICENSE.txt
14
+ Pony: https://github.com/ponylang/ponyc/blob/master/LICENSE
15
15
 
16
16
  permissions:
17
17
  - commercial-use
@@ -8,9 +8,9 @@ description: A permissive license similar to the <a href="/licenses/bsd-2-clause
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 license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.
9
9
 
10
10
  using:
11
- - d3: https://github.com/d3/d3/blob/master/LICENSE
12
- - LevelDB: https://github.com/google/leveldb/blob/master/LICENSE
13
- - Quill: https://github.com/quilljs/quill/blob/develop/LICENSE
11
+ d3: https://github.com/d3/d3/blob/master/LICENSE
12
+ LevelDB: https://github.com/google/leveldb/blob/master/LICENSE
13
+ Quill: https://github.com/quilljs/quill/blob/develop/LICENSE
14
14
 
15
15
  permissions:
16
16
  - commercial-use
@@ -7,9 +7,9 @@ description: A permissive license similar to the <a href="/licenses/bsd-3-clause
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. Replace [project] with the project organization, if any, that sponsors this work.
8
8
 
9
9
  using:
10
- - Yosemite Blockchain: https://github.com/YosemiteLabs/yosemite-public-blockchain/blob/master/LICENSE
11
- - querybuilder: https://github.com/pwolfgang/querybuilder/blob/master/LICENSE
12
- - PMSPAUR-public: https://github.com/ArthurGodet/PMSPAUR-public/blob/master/LICENSE
10
+ Choco-solver: https://github.com/chocoteam/choco-solver/blob/master/LICENSE
11
+ PMSPAUR-public: https://github.com/ArthurGodet/PMSPAUR-public/blob/master/LICENSE
12
+ Switchblade: https://github.com/SwitchbladeBot/switchblade/blob/dev/LICENSE
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -10,9 +10,9 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
10
10
  note: Boost recommends taking the additional step of adding a boilerplate notice to the top of each file. The boilerplate can be found at the [Boost Software License FAQ](https://www.boost.org/users/license.html#FAQ).
11
11
 
12
12
  using:
13
- - Boost: https://github.com/boostorg/boost/blob/master/LICENSE_1_0.txt
14
- - Catch2: https://github.com/catchorg/Catch2/blob/master/LICENSE.txt
15
- - DMD: https://github.com/dlang/dmd/blob/master/LICENSE.txt
13
+ Boost: https://github.com/boostorg/boost/blob/master/LICENSE_1_0.txt
14
+ Catch2: https://github.com/catchorg/Catch2/blob/devel/LICENSE.txt
15
+ DMD: https://github.com/dlang/dmd/blob/master/LICENSE.txt
16
16
 
17
17
  permissions:
18
18
  - commercial-use
@@ -7,9 +7,9 @@ description: Permits almost any use subject to providing credit and license noti
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/4.0/'>canonical URL for the license</a>.
8
8
 
9
9
  using:
10
- - caniuse: https://github.com/Fyrd/caniuse/blob/master/LICENSE
11
- - WHATWG HTML standard: https://github.com/whatwg/html/blob/master/LICENSE
12
- - Kubernetes documentation: https://github.com/kubernetes/website/blob/master/LICENSE
10
+ caniuse: https://github.com/Fyrd/caniuse/blob/master/LICENSE
11
+ WHATWG HTML standard: https://github.com/whatwg/html/blob/master/LICENSE
12
+ Kubernetes documentation: https://github.com/kubernetes/website/blob/master/LICENSE
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -64,7 +64,7 @@ exhaustive, and do not form part of our licenses.
64
64
  material not subject to the license. This includes other CC-
65
65
  licensed material, or material used under an exception or
66
66
  limitation to copyright. More considerations for licensors:
67
- wiki.creativecommons.org/Considerations_for_licensors
67
+ wiki.creativecommons.org/Considerations_for_licensors
68
68
 
69
69
  Considerations for the public: By using one of our public
70
70
  licenses, a licensor grants the public permission to use the
@@ -79,9 +79,9 @@ exhaustive, and do not form part of our licenses.
79
79
  rights in the material. A licensor may make special requests,
80
80
  such as asking that all changes be marked or described.
81
81
  Although not required by our licenses, you are encouraged to
82
- respect those requests where reasonable. More_considerations
82
+ respect those requests where reasonable. More considerations
83
83
  for the public:
84
- wiki.creativecommons.org/Considerations_for_licensees
84
+ wiki.creativecommons.org/Considerations_for_licensees
85
85
 
86
86
  =======================================================================
87
87
 
@@ -406,21 +406,21 @@ Section 8 -- Interpretation.
406
406
 
407
407
  =======================================================================
408
408
 
409
- Creative Commons is not a party to its public
410
- licenses. Notwithstanding, Creative Commons may elect to apply one of
411
- its public licenses to material it publishes and in those instances
412
- will be considered the “Licensor.” The text of the Creative Commons
413
- public licenses is dedicated to the public domain under the CC0 Public
414
- Domain Dedication. Except for the limited purpose of indicating that
415
- material is shared under a Creative Commons public license or as
416
- otherwise permitted by the Creative Commons policies published at
409
+ Creative Commons is not a party to its public licenses.
410
+ Notwithstanding, Creative Commons may elect to apply one of its public
411
+ licenses to material it publishes and in those instances will be
412
+ considered the “Licensor.” The text of the Creative Commons public
413
+ licenses is dedicated to the public domain under the CC0 Public Domain
414
+ Dedication. Except for the limited purpose of indicating that material
415
+ is shared under a Creative Commons public license or as otherwise
416
+ permitted by the Creative Commons policies published at
417
417
  creativecommons.org/policies, Creative Commons does not authorize the
418
418
  use of the trademark "Creative Commons" or any other trademark or logo
419
419
  of Creative Commons without its prior written consent including,
420
420
  without limitation, in connection with any unauthorized modifications
421
421
  to any of its public licenses or any other arrangements,
422
422
  understandings, or agreements concerning use of licensed material. For
423
- the avoidance of doubt, this paragraph does not form part of the
424
- public licenses.
423
+ the avoidance of doubt, this paragraph does not form part of the public
424
+ licenses.
425
425
 
426
426
  Creative Commons may be contacted at creativecommons.org.
@@ -7,9 +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
- - GitHub-Dark: https://github.com/StylishThemes/GitHub-Dark/blob/master/LICENSE
12
- - Material Design Iconic Font: https://github.com/zavoloklom/material-design-iconic-font/blob/master/License.md
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
13
13
 
14
14
  permissions:
15
15
  - commercial-use
@@ -65,7 +65,7 @@ exhaustive, and do not form part of our licenses.
65
65
  material not subject to the license. This includes other CC-
66
66
  licensed material, or material used under an exception or
67
67
  limitation to copyright. More considerations for licensors:
68
- wiki.creativecommons.org/Considerations_for_licensors
68
+ wiki.creativecommons.org/Considerations_for_licensors
69
69
 
70
70
  Considerations for the public: By using one of our public
71
71
  licenses, a licensor grants the public permission to use the
@@ -80,9 +80,9 @@ exhaustive, and do not form part of our licenses.
80
80
  rights in the material. A licensor may make special requests,
81
81
  such as asking that all changes be marked or described.
82
82
  Although not required by our licenses, you are encouraged to
83
- respect those requests where reasonable. More_considerations
83
+ respect those requests where reasonable. More considerations
84
84
  for the public:
85
- wiki.creativecommons.org/Considerations_for_licensees
85
+ wiki.creativecommons.org/Considerations_for_licensees
86
86
 
87
87
  =======================================================================
88
88
 
@@ -439,21 +439,21 @@ Section 8 -- Interpretation.
439
439
 
440
440
  =======================================================================
441
441
 
442
- Creative Commons is not a party to its public
443
- licenses. Notwithstanding, Creative Commons may elect to apply one of
444
- its public licenses to material it publishes and in those instances
445
- will be considered the “Licensor.” The text of the Creative Commons
446
- public licenses is dedicated to the public domain under the CC0 Public
447
- Domain Dedication. Except for the limited purpose of indicating that
448
- material is shared under a Creative Commons public license or as
449
- 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
450
450
  creativecommons.org/policies, Creative Commons does not authorize the
451
451
  use of the trademark "Creative Commons" or any other trademark or logo
452
452
  of Creative Commons without its prior written consent including,
453
453
  without limitation, in connection with any unauthorized modifications
454
454
  to any of its public licenses or any other arrangements,
455
455
  understandings, or agreements concerning use of licensed material. For
456
- the avoidance of doubt, this paragraph does not form part of the
457
- public licenses.
456
+ the avoidance of doubt, this paragraph does not form part of the public
457
+ licenses.
458
458
 
459
459
  Creative Commons may be contacted at creativecommons.org.
@@ -11,9 +11,9 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
11
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>.
12
12
 
13
13
  using:
14
- - Awesome: https://github.com/sindresorhus/awesome/blob/master/license
15
- - Shields.io: https://github.com/badges/shields/blob/master/LICENSE
16
- - psdash: https://github.com/Jahaja/psdash/blob/master/LICENSE
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
17
17
 
18
18
  permissions:
19
19
  - commercial-use
@@ -7,9 +7,9 @@ description: Strong copyleft license made by three French public research organi
7
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
@@ -9,9 +9,9 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
9
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
@@ -2,14 +2,14 @@
2
2
  title: European Union Public License 1.2
3
3
  spdx-id: EUPL-1.2
4
4
 
5
- description: The European Union Public Licence (EUPL) is a copyleft free/open source software license created on the initiative of and approved by the European Commission in 22 official languages of the European Union.
5
+ description: The European Union Public Licence (EUPL) is a copyleft free/open source software license created on the initiative of and approved by the European Commission in <a href="https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12">23 official languages</a> of the European Union.
6
6
 
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
+ HeroRotation: https://github.com/herotc/hero-rotation/blob/shadowlands/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
@@ -32,10 +32,8 @@ limitations:
32
32
 
33
33
  ---
34
34
 
35
- European Union Public Licence
36
- V. 1.2
37
-
38
- EUPL © the European Union 2007, 2016
35
+ EUROPEAN UNION PUBLIC LICENCE v. 1.2
36
+ EUPL © the European Union 2007, 2016
39
37
 
40
38
  This European Union Public Licence (the ‘EUPL’) applies to the Work (as
41
39
  defined below) which is provided under the terms of this Licence. Any use of
@@ -44,35 +42,47 @@ extent such use is covered by a right of the copyright holder of the Work).
44
42
 
45
43
  The Work is provided under the terms of this Licence when the Licensor (as
46
44
  defined below) has placed the following notice immediately following the
47
- copyright notice for the Work: “Licensed under the EUPL”, or has expressed by
48
- any other means his willingness to license under the EUPL.
45
+ copyright notice for the Work:
46
+
47
+ Licensed under the EUPL
48
+
49
+ or has expressed by any other means his willingness to license under the EUPL.
49
50
 
50
51
  1. Definitions
51
52
 
52
53
  In this Licence, the following terms have the following meaning:
53
- — ‘The Licence’: this Licence.
54
- ‘The Original Work’: the work or software distributed or communicated by the
55
- ‘Licensor under this Licence, available as Source Code and also as
56
- Executable Code as the case may be.
57
- ‘Derivative Works’: the works or software that could be created by the
58
- ‘Licensee, based upon the Original Work or modifications thereof. This
59
- ‘Licence does not define the extent of modification or dependence on the
60
- Original Work required in order to classify a work as a Derivative Work;
61
- ‘this extent is determined by copyright law applicable in the country
62
- ‘mentioned in Article 15.
63
- ‘The Work’: the Original Work or its Derivative Works.
64
- ‘The Source Code’: the human-readable form of the Work which is the most
54
+
55
+ - ‘The Licence’: this Licence.
56
+
57
+ - The Original Work’: the work or software distributed or communicated by the
58
+ Licensor under this Licence, available as Source Code and also as Executable
59
+ Code as the case may be.
60
+
61
+ - Derivative Works’: the works or software that could be created by the
62
+ Licensee, based upon the Original Work or modifications thereof. This
63
+ Licence does not define the extent of modification or dependence on the
64
+ Original Work required in order to classify a work as a Derivative Work;
65
+ this extent is determined by copyright law applicable in the country
66
+ mentioned in Article 15.
67
+
68
+ - ‘The Work’: the Original Work or its Derivative Works.
69
+
70
+ - ‘The Source Code’: the human-readable form of the Work which is the most
65
71
  convenient for people to study and modify.
66
72
 
67
- ‘The Executable Code’: any code which has generally been compiled and which
73
+ - ‘The Executable Code’: any code which has generally been compiled and which
68
74
  is meant to be interpreted by a computer as a program.
69
- — ‘The Licensor’: the natural or legal person that distributes or communicates
75
+
76
+ - ‘The Licensor’: the natural or legal person that distributes or communicates
70
77
  the Work under the Licence.
71
- — ‘Contributor(s)’: any natural or legal person who modifies the Work under
78
+
79
+ - ‘Contributor(s)’: any natural or legal person who modifies the Work under
72
80
  the Licence, or otherwise contributes to the creation of a Derivative Work.
73
- — ‘The Licensee’ or ‘You’: any natural or legal person who makes any usage of
81
+
82
+ - ‘The Licensee’ or ‘You’: any natural or legal person who makes any usage of
74
83
  the Work under the terms of the Licence.
75
- — ‘Distribution’ or ‘Communication’: any act of selling, giving, lending,
84
+
85
+ - ‘Distribution’ or ‘Communication’: any act of selling, giving, lending,
76
86
  renting, distributing, communicating, transmitting, or otherwise making
77
87
  available, online or offline, copies of the Work or providing access to its
78
88
  essential functionalities at the disposal of any other natural or legal
@@ -84,15 +94,15 @@ The Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
84
94
  sublicensable licence to do the following, for the duration of copyright
85
95
  vested in the Original Work:
86
96
 
87
- use the Work in any circumstance and for all usage,
88
- reproduce the Work,
89
- modify the Work, and make Derivative Works based upon the Work,
90
- communicate to the public, including the right to make available or display
97
+ - use the Work in any circumstance and for all usage,
98
+ - reproduce the Work,
99
+ - modify the Work, and make Derivative Works based upon the Work,
100
+ - communicate to the public, including the right to make available or display
91
101
  the Work or copies thereof to the public and perform publicly, as the case
92
102
  may be, the Work,
93
- distribute the Work or copies thereof,
94
- lend and rent the Work or copies thereof,
95
- sublicense rights in the Work or copies thereof.
103
+ - distribute the Work or copies thereof,
104
+ - lend and rent the Work or copies thereof,
105
+ - sublicense rights in the Work or copies thereof.
96
106
 
97
107
  Those rights can be exercised on any media, supports and formats, whether now
98
108
  known or later invented, as far as the applicable law permits so.
@@ -238,10 +248,11 @@ accessible, concluded, stored and reproduced by the Licensee.
238
248
  12. Termination of the Licence
239
249
 
240
250
  The Licence and the rights granted hereunder will terminate automatically upon
241
- any breach by the Licensee of the terms of the Licence. Such a termination
242
- will not terminate the licences of any person who has received the Work from
243
- the Licensee under the Licence, provided such persons remain in full
244
- compliance with the Licence.
251
+ any breach by the Licensee of the terms of the Licence.
252
+
253
+ Such a termination will not terminate the licences of any person who has
254
+ received the Work from the Licensee under the Licence, provided such persons
255
+ remain in full compliance with the Licence.
245
256
 
246
257
  13. Miscellaneous
247
258
 
@@ -266,12 +277,14 @@ their choice.
266
277
  14. Jurisdiction
267
278
 
268
279
  Without prejudice to specific agreement between parties,
269
- — any litigation resulting from the interpretation of this License, arising
280
+
281
+ - any litigation resulting from the interpretation of this License, arising
270
282
  between the European Union institutions, bodies, offices or agencies, as a
271
283
  Licensor, and any Licensee, will be subject to the jurisdiction of the Court
272
284
  of Justice of the European Union, as laid down in article 272 of the Treaty
273
285
  on the Functioning of the European Union,
274
- — any litigation arising between other parties and resulting from the
286
+
287
+ - any litigation arising between other parties and resulting from the
275
288
  interpretation of this License, will be subject to the exclusive
276
289
  jurisdiction of the competent court where the Licensor resides or conducts
277
290
  its primary business.
@@ -279,30 +292,34 @@ Without prejudice to specific agreement between parties,
279
292
  15. Applicable Law
280
293
 
281
294
  Without prejudice to specific agreement between parties,
282
- — this Licence shall be governed by the law of the European Union Member State
295
+
296
+ - this Licence shall be governed by the law of the European Union Member State
283
297
  where the Licensor has his seat, resides or has his registered office,
284
- — this licence shall be governed by Belgian law if the Licensor has no seat,
298
+
299
+ - this licence shall be governed by Belgian law if the Licensor has no seat,
285
300
  residence or registered office inside a European Union Member State.
286
301
 
287
302
  Appendix
288
303
 
289
304
  ‘Compatible Licences’ according to Article 5 EUPL are:
290
- — GNU General Public License (GPL) v. 2, v. 3
291
- GNU Affero General Public License (AGPL) v. 3
292
- Open Software License (OSL) v. 2.1, v. 3.0
293
- Eclipse Public License (EPL) v. 1.0
294
- CeCILL v. 2.0, v. 2.1
295
- Mozilla Public Licence (MPL) v. 2
296
- GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3
297
- Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for
305
+
306
+ - GNU General Public License (GPL) v. 2, v. 3
307
+ - GNU Affero General Public License (AGPL) v. 3
308
+ - Open Software License (OSL) v. 2.1, v. 3.0
309
+ - Eclipse Public License (EPL) v. 1.0
310
+ - CeCILL v. 2.0, v. 2.1
311
+ - Mozilla Public Licence (MPL) v. 2
312
+ - GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3
313
+ - Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for
298
314
  works other than software
299
- European Union Public Licence (EUPL) v. 1.1, v. 1.2
300
- Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or
301
- Strong Reciprocity (LiLiQ-R+)
302
-
303
- The European Commission may update this Appendix to later versions of the
304
- above licences without producing a new version of the EUPL, as long as they
305
- provide the rights granted in Article 2 of this Licence and protect the
306
- covered Source Code from exclusive appropriation.
307
- — All other changes or additions to this Appendix require the production of a
308
- new EUPL version.
315
+ - European Union Public Licence (EUPL) v. 1.1, v. 1.2
316
+ - Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or Strong
317
+ Reciprocity (LiLiQ-R+).
318
+
319
+ The European Commission may update this Appendix to later versions of the
320
+ above licences without producing a new version of the EUPL, as long as they
321
+ provide the rights granted in Article 2 of this Licence and protect the
322
+ covered Source Code from exclusive appropriation.
323
+
324
+ All other changes or additions to this Appendix require the production of a
325
+ new EUPL version.