diff --git a/etc/scripts/licenses/buildrules.py b/etc/scripts/licenses/buildrules.py index f1d79171038..d434b926588 100644 --- a/etc/scripts/licenses/buildrules.py +++ b/etc/scripts/licenses/buildrules.py @@ -15,6 +15,8 @@ from licensedcode import cache from licensedcode import models from licensedcode import match_hash +from licensedcode import frontmatter +from license_expression import Licensing """ A script to generate license detection rules from a simple text data file. @@ -172,10 +174,112 @@ def find_rule_base_loc(license_expression): ) +def validate_and_dump_rules(rules, licenses_by_key, licenses_file_path): + valid_rules_text, invalid_rules_text = validate_rules_with_details(rules, licenses_by_key) + if invalid_rules_text: + valid_rules_file = licenses_file_path + ".valid" + with open(valid_rules_file, "w") as o: + o.write(valid_rules_text) + + invalid_rules_file = licenses_file_path + ".invalid" + with open(invalid_rules_file, "w") as o: + o.write(invalid_rules_text) + + message = [ + 'Errors while validating rules:', + f'See valid rules file: {valid_rules_file}', + f'See invalid rules file: {invalid_rules_file}', + ] + raise models.InvalidRule('\n'.join(message)) + + +def validate_rules_with_details(rules, licenses_by_key): + """ + Return a tuple of (text of valid rules, text of invalid rules) in the format + expected by this tool. Invalid rules have a YAML comment text added to their + metadata section that describes the issue. + """ + + licensing = Licensing(symbols=licenses_by_key.values()) + + valid_rules_texts = [] + invalid_rules_texts = [] + + for rule in rules: + error_messages = list(rule.validate(licensing, thorough=True)) + rule_as_text = dump_skinny_rule(rule, error_messages=error_messages) + + if error_messages: + invalid_rules_texts.append(rule_as_text) + else: + valid_rules_texts.append(rule_as_text) + + valid_rules_text = "\n".join(valid_rules_texts) + start_delimiter + + if invalid_rules_texts: + invalid_rules_text = "\n".join(invalid_rules_texts) + start_delimiter + else: + invalid_rules_text = "" + + return valid_rules_text, invalid_rules_text + + +SKINNY_RULE_TEMPLATE = """\ +{start_delimiter} +{metadata} +{end_delimiter} +{content} +""" + +start_delimiter = "----------------------------------------" + + +def dump_skinny_rule(rule, error_messages=()): + """ + Return a string that dumps the ``rule`` Rule in the input format used by + this tool. Add a comment with the ``error_message`` to the metadata if any. + """ + metadata = rule.to_dict() + if error_messages: + # add missing metadata for sanity + if "license_expression" not in metadata: + m = {"license_expression": None} + m.update(metadata) + metadata = m + + if "notes" not in metadata: + metadata["notes"] = None + + if "referenced_filenames" not in metadata: + metadata["referenced_filenames"] = None + + msgs = "\n".join(f"# {m}" for m in error_messages) + end_delimiter = f"{msgs}\n---" + else: + end_delimiter = "---" + + return frontmatter.dumps_frontmatter( + content=rule.text, + metadata=metadata, + template=SKINNY_RULE_TEMPLATE, + start_delimiter=start_delimiter, + end_delimiter=end_delimiter) + + @click.command() -@click.argument("licenses_file", type=click.Path(), metavar="FILE") +@click.argument( + "licenses_file", type=click.Path(), metavar="FILE", +) +@click.option( + "-d", "--dump-to-file-on-errors", + is_flag=True, + default=False, + help="On errors, dump the valid rules and the invalid rules in text files " + "named after the input FILE with a .valid and a .invalid extension.", +) + @click.help_option("-h", "--help") -def cli(licenses_file): +def cli(licenses_file, dump_to_file_on_errors=False): """ Create rules from a text file with delimited blocks of metadata and texts. @@ -191,6 +295,12 @@ def cli(licenses_file): it under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation; ---------------------------------------- + license_expression: lgpl-2.1 + relevance: 100 + is_license_reference: yes + --- + LGPL-2.1 + ---------------------------------------- """ rules_data = load_data(licenses_file) @@ -213,7 +323,11 @@ def cli(licenses_file): rl = models.BasicRule(text=rdata.text, **rdata.data) skinny_rules.append(rl) - models.validate_rules(skinny_rules, licenses_by_key, with_text=True, thorough=True) + # these will raise an exception and exit on errors + if not dump_to_file_on_errors: + models.validate_rules(rules=skinny_rules, licenses_by_key=licenses_by_key, with_text=True, thorough=True) + else: + validate_and_dump_rules(rules=skinny_rules, licenses_by_key=licenses_by_key, licenses_file_path=licenses_file) print() for rule in skinny_rules: diff --git a/src/licensedcode/data/licenses/mit.LICENSE b/src/licensedcode/data/licenses/mit.LICENSE index fa81a71177d..46c2400b560 100644 --- a/src/licensedcode/data/licenses/mit.LICENSE +++ b/src/licensedcode/data/licenses/mit.LICENSE @@ -7,6 +7,11 @@ owner: MIT homepage_url: http://opensource.org/licenses/mit-license.php notes: Per SPDX.org, this license is OSI certified. spdx_license_key: MIT +other_spdx_license_keys: + - LicenseRef-MIT-Bootstrap + - LicenseRef-MIT-Discord + - LicenseRef-MIT-TC + - LicenseRef-MIT-Diehl text_urls: - http://opensource.org/licenses/mit-license.php osi_url: http://www.opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_297.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_297.RULE new file mode 100644 index 00000000000..1c60ca3992b --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0-plus_297.RULE @@ -0,0 +1,18 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +--- + +The JavaScript code in this page is free software: you can + redistribute it and/or modify it under the terms of the GNU Affero + General Public License as published by the Free Software + Foundation, either version 3 of the License, or (at your option) + any later version. The code is distributed WITHOUT ANY WARRANTY; + without even the implied warranty of MERCHANTABILITY or FITNESS + FOR A PARTICULAR PURPOSE. See the GNU GPL for more details. + + As additional permission under GNU AGPL version 3 section 7, you + may distribute non-source (e.g., minimized or compacted) forms of + that code without the copy of the GNU AGPL normally required by + section 4, provided you include this license notice and a URL + through which recipients can access the Corresponding Source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_392.RULE b/src/licensedcode/data/rules/agpl-3.0_392.RULE new file mode 100644 index 00000000000..43a2672ec48 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_392.RULE @@ -0,0 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +The default license for this project is {{AGPL-3.0-only}}(LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_393.RULE b/src/licensedcode/data/rules/agpl-3.0_393.RULE new file mode 100644 index 00000000000..e504be8c0c7 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_393.RULE @@ -0,0 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +license for this project is {{AGPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_394.RULE b/src/licensedcode/data/rules/agpl-3.0_394.RULE new file mode 100644 index 00000000000..1398469a764 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_394.RULE @@ -0,0 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +license for this project is {{AGPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_395.RULE b/src/licensedcode/data/rules/agpl-3.0_395.RULE new file mode 100644 index 00000000000..a308b73391d --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_395.RULE @@ -0,0 +1,16 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +--- + +/// License: AGPLv3 +/// +/// This program is free software: you can redistribute it and/or modify +/// it under the terms of the GNU Affero General Public License as +/// published by the Free Software Foundation, either version 3 of the +/// License. +/// +/// This program is distributed in the hope that it will be useful, +/// but WITHOUT ANY WARRANTY; without even the implied warranty of +/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +/// GNU Affero General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_396.RULE b/src/licensedcode/data/rules/agpl-3.0_396.RULE new file mode 100644 index 00000000000..6dca27fa51d --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_396.RULE @@ -0,0 +1,15 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +--- + +License: AGPLv3 + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_397.RULE b/src/licensedcode/data/rules/agpl-3.0_397.RULE new file mode 100644 index 00000000000..0d4ef770906 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_397.RULE @@ -0,0 +1,13 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +--- + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_398.RULE b/src/licensedcode/data/rules/agpl-3.0_398.RULE new file mode 100644 index 00000000000..dade31fa8a3 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_398.RULE @@ -0,0 +1,14 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +--- + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_399.RULE b/src/licensedcode/data/rules/agpl-3.0_399.RULE new file mode 100644 index 00000000000..7ad64a4706b --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_399.RULE @@ -0,0 +1,13 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +--- + +is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License. + is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_400.RULE b/src/licensedcode/data/rules/agpl-3.0_400.RULE new file mode 100644 index 00000000000..c8c5776deea --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_400.RULE @@ -0,0 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +--- + +is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3. + is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_401.RULE b/src/licensedcode/data/rules/agpl-3.0_401.RULE new file mode 100644 index 00000000000..b2eba1a9923 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_401.RULE @@ -0,0 +1,19 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_402.RULE b/src/licensedcode/data/rules/agpl-3.0_402.RULE new file mode 100644 index 00000000000..8941296dd5d --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_402.RULE @@ -0,0 +1,19 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_403.RULE b/src/licensedcode/data/rules/agpl-3.0_403.RULE new file mode 100644 index 00000000000..ee21592433f --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_403.RULE @@ -0,0 +1,18 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_404.RULE b/src/licensedcode/data/rules/agpl-3.0_404.RULE new file mode 100644 index 00000000000..858a13e9388 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_404.RULE @@ -0,0 +1,19 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +- +- is free software: you can redistribute it and/or modify +- it under the terms of the GNU Affero General Public License as published by +- the Free Software Foundation, either version 3 of the License. +- +- is distributed in the hope that it will be useful, +- but WITHOUT ANY WARRANTY; without even the implied warranty of +- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +- GNU General Public License for more details. +- +- You should have received a copy of the GNU Affero General Public License +- along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_405.RULE b/src/licensedcode/data/rules/agpl-3.0_405.RULE new file mode 100644 index 00000000000..9a9e683b8c4 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_405.RULE @@ -0,0 +1,18 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +- is free software: you can redistribute it and/or modify +- it under the terms of the GNU Affero General Public License as published by +- the Free Software Foundation, either version 3. +- +- is distributed in the hope that it will be useful, +- but WITHOUT ANY WARRANTY; without even the implied warranty of +- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +- GNU General Public License for more details. +- +- You should have received a copy of the GNU Affero General Public License +- along with [[]]. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1231.RULE b/src/licensedcode/data/rules/apache-2.0_1231.RULE index ca7b3af664f..2dbd8517739 100644 --- a/src/licensedcode/data/rules/apache-2.0_1231.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1231.RULE @@ -8,9 +8,9 @@ ignorable_urls: /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * - * Use is subject to license terms. + * {{Use is subject to license terms. * - * Licensed under the Apache License, Version 2.0 (the "License"); + * Licensed under the Apache License, Version 2.0}} (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 @@ -19,4 +19,4 @@ ignorable_urls: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ \ No newline at end of file + */ diff --git a/src/licensedcode/data/rules/apache-2.0_1280.RULE b/src/licensedcode/data/rules/apache-2.0_1280.RULE new file mode 100644 index 00000000000..19ae35b32d1 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1280.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + +They are distributed under the Apache License http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1281.RULE b/src/licensedcode/data/rules/apache-2.0_1281.RULE new file mode 100644 index 00000000000..e0e70971fa0 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1281.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + +distributed under the Apache License http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1282.RULE b/src/licensedcode/data/rules/apache-2.0_1282.RULE new file mode 100644 index 00000000000..1cb8d91dbcf --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1282.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + +They are distributed under the Apache License https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1283.RULE b/src/licensedcode/data/rules/apache-2.0_1283.RULE new file mode 100644 index 00000000000..39070dd2bc0 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1283.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + +distributed under the Apache License https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1284.RULE b/src/licensedcode/data/rules/apache-2.0_1284.RULE new file mode 100644 index 00000000000..b08cd4700f8 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1284.RULE @@ -0,0 +1,34 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - (c) 2004, 3GPP Organizational Partners +ignorable_holders: + - 3GPP Organizational Partners +ignorable_urls: + - http://www.3gpp.org/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +* Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. +Portions of this file are derived from the following 3GPP standard: + + 3GPP TS 26.073 + ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec + Available from http://www.3gpp.org + +(C) 2004, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TTA, TTC) +Permission to distribute, modify and use this file under the standard license +terms listed above has been obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1285.RULE b/src/licensedcode/data/rules/apache-2.0_1285.RULE new file mode 100644 index 00000000000..6d9aa201aa8 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1285.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + +Primary open source license changed to Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1286.RULE b/src/licensedcode/data/rules/apache-2.0_1286.RULE new file mode 100644 index 00000000000..184b3a59b88 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1286.RULE @@ -0,0 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + +This library is Licensed under the Apache License, Version 2.0. A copy me be +found in the file 'LICENSE' and at +http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1287.RULE b/src/licensedcode/data/rules/apache-2.0_1287.RULE new file mode 100644 index 00000000000..1237cdd6d0a --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1287.RULE @@ -0,0 +1,21 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +* Apache License 2.0: + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1288.RULE b/src/licensedcode/data/rules/apache-2.0_1288.RULE new file mode 100644 index 00000000000..bdfbb9701bd --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1288.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +library is licensed under the terms of the Apache +license. See [LICENSE](LICENSE) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1289.RULE b/src/licensedcode/data/rules/apache-2.0_1289.RULE new file mode 100644 index 00000000000..82fddda8a0a --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1289.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +license: library is licensed under the terms of the Apache +license. See [LICENSE](LICENSE) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1290.RULE b/src/licensedcode/data/rules/apache-2.0_1290.RULE new file mode 100644 index 00000000000..21ba8b8518e --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1290.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +licensed under the terms of the Apache +license. See [LICENSE](LICENSE) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1291.RULE b/src/licensedcode/data/rules/apache-2.0_1291.RULE new file mode 100644 index 00000000000..b676213cb86 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1291.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +licensed under the terms of the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1292.RULE b/src/licensedcode/data/rules/apache-2.0_1292.RULE new file mode 100644 index 00000000000..ef088b07122 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1292.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - apache2_0.txt +--- + +apache2_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1293.RULE b/src/licensedcode/data/rules/apache-2.0_1293.RULE new file mode 100644 index 00000000000..8aced22e7eb --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1293.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +Licensed under the Apache License, Version 2.0. +License text: See LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1294.RULE b/src/licensedcode/data/rules/apache-2.0_1294.RULE new file mode 100644 index 00000000000..20a41d965b3 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1294.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +projects are released under ASL 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1295.RULE b/src/licensedcode/data/rules/apache-2.0_1295.RULE new file mode 100644 index 00000000000..452c122cc4a --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1295.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +Directories include an Apache license file +Apache License Version 2.0, January 2004 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1296.RULE b/src/licensedcode/data/rules/apache-2.0_1296.RULE new file mode 100644 index 00000000000..7ac3abb1f55 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1296.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +The above component is licensed under +Apache License Version 2.0, January 2004 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1297.RULE b/src/licensedcode/data/rules/apache-2.0_1297.RULE new file mode 100644 index 00000000000..c19cd20ccf6 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1297.RULE @@ -0,0 +1,19 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +The Apache Software License, Version 2.0 +Copyright (c) , Oracle and/or its affiliates. All rights reserved. +Licensed under the Apache License, Version 2.0 (the "License"); You may not +use this product except in compliance with the License. You may obtain a +copy of the License at http://www.apache.org/licenses/LICENSE-2.0. A copy of +the license is also reproduced below. Unless required by applicable law or +agreed to in writing, software distributed under the License is distributed +on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either +express or implied. See the License for the specific language governing +permissions and limitations under the License. + +Apache License Version 2.0, January 2004 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1298.RULE b/src/licensedcode/data/rules/apache-2.0_1298.RULE new file mode 100644 index 00000000000..d09a023a0a8 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1298.RULE @@ -0,0 +1,19 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +Apache License Version 2.0, January 2004 + +The following applies to all products licensed under the Apache 2.0 +License: You may not use the identified files except in compliance +with the Apache License, Version 2.0 (the "License.") You may obtain a +copy of the License at http://www.apache.org/licenses/LICENSE-2.0. A +copy of the license is also reproduced below. Unless required by +applicable law or agreed to in writing, software distributed under the +License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for +the specific language governing permissions and limitations under the +License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.RULE b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.RULE index 97b12d5b46a..52ea5a44451 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -The build produces two sets of binaries - one set that falls under the Elastic -License and another set that falls under Apache License 2.0. The binaries that -contain `-oss` in the artifact name are licensed under Apache License 2.0 and -these binaries do not package any code from the x-pack directory. \ No newline at end of file +The build produces two sets of binaries - one set that falls under the {{Elastic +License}} and another set that falls {{under Apache License 2.0}}. The binaries that +contain `-oss` in the artifact name are {{licensed under Apache License 2.0}} and +these binaries do not package any code from the x-pack directory. diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_16.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_16.RULE new file mode 100644 index 00000000000..132e957204f --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_16.RULE @@ -0,0 +1,19 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - https://spdx.org/licenses/Apache-2.0.html + - https://spdx.org/licenses/GPL-2.0-or-later.html +--- + +License + +Unless specifically indicated otherwise in a file, files are provided +under the [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) license. See +the [LICENSE](LICENSE) file for the full text of this license. Contributors must +accept that their contributions are made under both the Apache-2.0 AND +[GPL-2.0-or-later](https://spdx.org/licenses/GPL-2.0-or-later.html) licenses. +This enables LTS (Long Term Support) branches of the software to be provided +under either the Apache-2.0 OR GPL-2.0-or-later licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_17.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_17.RULE new file mode 100644 index 00000000000..430a23b79e7 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + +* This file is provided under the Apache License 2.0, or the + * GNU General Public License v2.0 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_18.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_18.RULE new file mode 100644 index 00000000000..da25d04b849 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_18.RULE @@ -0,0 +1,41 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +* This file is provided under the Apache License 2.0, or the + * GNU General Public License v2.0 or later. + + * ********** + * Apache License 2.0: + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + + * GNU General Public License v2.0 or later: + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_13.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_13.RULE new file mode 100644 index 00000000000..85e4f7ca0e5 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_13.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_tag: yes +referenced_filenames: + - LICENSE.txt +--- + +name: {{BSD 3-clause License w/nuclear disclaimer}} +url: LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1306.RULE b/src/licensedcode/data/rules/bsd-new_1306.RULE new file mode 100644 index 00000000000..af7352a8981 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1306.RULE @@ -0,0 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +--- + +; Use of this source code is governed by a BSD-style license and patent +; grant that can be found in the LICENSE file in the root of the source +; tree. All contributing project authors may be found in the AUTHORS +; file in the root of the source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1307.RULE b/src/licensedcode/data/rules/bsd-new_1307.RULE new file mode 100644 index 00000000000..65b0eeb32a1 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1307.RULE @@ -0,0 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +--- + +; Use of this source code is governed by a BSD-style license and patent +; grant that can be found in the LICENSE file in the root of the source +; tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1308.RULE b/src/licensedcode/data/rules/bsd-new_1308.RULE new file mode 100644 index 00000000000..18fd9592149 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1308.RULE @@ -0,0 +1,14 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE + - PATENTS +--- + +${prefix} Use of this source code is governed by a BSD-style license${suffix} +${prefix} that can be found in the LICENSE file in the root of the source${suffix} +${prefix} tree. An additional intellectual property rights grant can be found${suffix} +${prefix} in the file PATENTS. All contributing project authors may${suffix} +${prefix} be found in the AUTHORS file in the root of the source tree.${suffix} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1309.RULE b/src/licensedcode/data/rules/bsd-new_1309.RULE new file mode 100644 index 00000000000..0965c46dd54 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1309.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING +--- + +# Use of this source code is governed by a {{BSD-style license}} that can be +# found in the COPYING file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1310.RULE b/src/licensedcode/data/rules/bsd-new_1310.RULE new file mode 100644 index 00000000000..9769c8cc790 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1310.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING +--- + +# Use of this source code is governed by a {{BSD-style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1311.RULE b/src/licensedcode/data/rules/bsd-new_1311.RULE new file mode 100644 index 00000000000..4b5fb7c7c9a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1311.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +--- + +License +BSD, see `LICENSE` file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1312.RULE b/src/licensedcode/data/rules/bsd-new_1312.RULE new file mode 100644 index 00000000000..12d7bed24cf --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1312.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +--- + +BSD, see `LICENSE` file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1313.RULE b/src/licensedcode/data/rules/bsd-new_1313.RULE new file mode 100644 index 00000000000..6b01781f695 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1313.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +--- + +BSD, see `LICENSE` file \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1314.RULE b/src/licensedcode/data/rules/bsd-new_1314.RULE new file mode 100644 index 00000000000..4066b50e188 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1314.RULE @@ -0,0 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING +--- + +## License ## + +THIS FILE IS PART OF THE SOFTWARE CODEC SOURCE CODE. +USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS +GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE +IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1315.RULE b/src/licensedcode/data/rules/bsd-new_1315.RULE new file mode 100644 index 00000000000..56756d843f4 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1315.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + +distributed under a BSD-like license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1316.RULE b/src/licensedcode/data/rules/bsd-new_1316.RULE new file mode 100644 index 00000000000..17b1a98c697 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1316.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + +distributed under a BSD-like license. This +does not restrict third parties from distributing independent implementations of software +under other licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1317.RULE b/src/licensedcode/data/rules/bsd-new_1317.RULE new file mode 100644 index 00000000000..f1f8ffb7ac6 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1317.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + +Software License Agreement (BSD-3-Clause License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1318.RULE b/src/licensedcode/data/rules/bsd-new_1318.RULE new file mode 100644 index 00000000000..eb5b51eb413 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1318.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 80 +referenced_filenames: + - BSD.txt +--- + +BSD.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1319.RULE b/src/licensedcode/data/rules/bsd-new_1319.RULE new file mode 100644 index 00000000000..ae76c1b7b44 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1319.RULE @@ -0,0 +1,27 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1320.RULE b/src/licensedcode/data/rules/bsd-new_1320.RULE new file mode 100644 index 00000000000..3e450945bee --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1320.RULE @@ -0,0 +1,30 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +This means you may do anything you want with this code, except claim you +wrote it. Also, if it breaks you get to keep both pieces. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1321.RULE b/src/licensedcode/data/rules/bsd-new_1321.RULE new file mode 100644 index 00000000000..28f50e40309 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1321.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://hsqldb.org/ +--- + +Released under the HSQL license, available at http://hsqldb.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1322.RULE b/src/licensedcode/data/rules/bsd-new_1322.RULE new file mode 100644 index 00000000000..c34abb638ee --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1322.RULE @@ -0,0 +1,30 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the copyright holders nor the names of the + University of New South Wales and the University of Waikato + and its contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1323.RULE b/src/licensedcode/data/rules/bsd-new_1323.RULE new file mode 100644 index 00000000000..610af39b247 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1323.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +ignorable_urls: + - https://github.com/googleapis/ +--- + +name: {{BSD}} +url: https://github.com/googleapis/ /blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_6.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_6.RULE new file mode 100644 index 00000000000..3376609bc82 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new AND google-patent-license-webm +is_license_reference: yes +--- + +Welcome to the WebM Codec SDK. This SDK allows you to integrate your + applications with the VP8 and VP9 video codecs, high quality, royalty free, + open source codecs deployed on billions of computers and devices worldwide. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_330.RULE b/src/licensedcode/data/rules/bsd-simplified_330.RULE new file mode 100644 index 00000000000..3b13f3db062 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_330.RULE @@ -0,0 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +License + +2 clause BSD license. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_331.RULE b/src/licensedcode/data/rules/bsd-simplified_331.RULE new file mode 100644 index 00000000000..933e151c29a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_331.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +2 clause BSD license. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_332.RULE b/src/licensedcode/data/rules/bsd-simplified_332.RULE new file mode 100644 index 00000000000..7015c223ba1 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_332.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + +* The copyright in this software is being made available under the 2-clauses + * BSD License, included below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_333.RULE b/src/licensedcode/data/rules/bsd-simplified_333.RULE new file mode 100644 index 00000000000..06cdeae79b8 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_333.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +notes: https://raw.githubusercontent.com/uclouvain/openjpeg/fe2fa707161b2025ef82c325b9110c08bd0e812e/README.md +--- + +released under the [BSD 2-clause "Simplified" License][link-license], anyone can use or modify the code, even for commercial applications. The only restriction is to retain the copyright in the sources or in the binaries documentation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_334.RULE b/src/licensedcode/data/rules/bsd-simplified_334.RULE new file mode 100644 index 00000000000..d5878cfbb3b --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_334.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + +"BSD 2-clause \"Simplified\" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_335.RULE b/src/licensedcode/data/rules/bsd-simplified_335.RULE new file mode 100644 index 00000000000..e5f269703f0 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_335.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + +LICENSE "BSD 2-clause \"Simplified\" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_alliance-open-media-patent-1.0_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_alliance-open-media-patent-1.0_1.RULE new file mode 100644 index 00000000000..e679ebf082e --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_and_alliance-open-media-patent-1.0_1.RULE @@ -0,0 +1,17 @@ +--- +license_expression: bsd-simplified AND alliance-open-media-patent-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - PATENTS +ignorable_urls: + - http://www.aomedia.org/license/patent + - http://www.aomedia.org/license/software +--- + +* This source code is subject to the terms of the BSD 2 Clause License and + * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License + * was not distributed with this source code in the LICENSE file, you can + * obtain it at www.aomedia.org/license/software. If the Alliance for Open + * Media Patent License 1.0 was not distributed with this source code in the + * PATENTS file, you can obtain it at www.aomedia.org/license/patent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_alliance-open-media-patent-1.0_2.RULE b/src/licensedcode/data/rules/bsd-simplified_and_alliance-open-media-patent-1.0_2.RULE new file mode 100644 index 00000000000..b782e01ab74 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_and_alliance-open-media-patent-1.0_2.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-simplified AND alliance-open-media-patent-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - PATENTS +--- + +* This source code is subject to the terms of the BSD 2 Clause License and + * the Alliance for Open Media Patent License 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_alliance-open-media-patent-1.0_3.RULE b/src/licensedcode/data/rules/bsd-simplified_and_alliance-open-media-patent-1.0_3.RULE new file mode 100644 index 00000000000..f5cade58ba6 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_and_alliance-open-media-patent-1.0_3.RULE @@ -0,0 +1,6 @@ +--- +license_expression: bsd-simplified AND alliance-open-media-patent-1.0 +is_license_notice: yes +--- + +subject to the terms of the BSD 2 Clause License and the Alliance for Open Media Patent License 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_28.RULE b/src/licensedcode/data/rules/cc-by-2.5_28.RULE new file mode 100644 index 00000000000..f35f56128da --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-2.5_28.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - CC_2_5.txt +--- + +CC_2_5.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_133.RULE b/src/licensedcode/data/rules/cc-by-3.0_133.RULE new file mode 100644 index 00000000000..cfa4f2399f0 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_133.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + +This software can be licensed under Creative Commons Atribution 3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_134.RULE b/src/licensedcode/data/rules/cc-by-3.0_134.RULE new file mode 100644 index 00000000000..922a595e578 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_134.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_tag: yes +relevance: 100 +--- + +License: Creative Commons Attribution 3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_115.RULE b/src/licensedcode/data/rules/cc-by-4.0_115.RULE new file mode 100644 index 00000000000..7a931ad80a7 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_115.RULE @@ -0,0 +1,174 @@ +--- +license_expression: cc-by-4.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/legalcode + - https://creativecommons.org/licenses/by/4.0/creativecommons.org/zero/1.0/legalcode + - https://creativecommons.org/licenses/by/4.0/legalcode.fi + - https://creativecommons.org/licenses/by/4.0/legalcode.nl + - https://creativecommons.org/licenses/by/4.0/legalcode.no + - https://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees + - https://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensors + - https://wiki.creativecommons.org/FAQ#officialtranslations +--- + +Creative Commons License: Attribution 4.0 International +http://creativecommons.org/licenses/by/4.0/legalcode + +Creative Commons Corporation ("Creative Commons") is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an "as-is" basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. + +Considerations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. More considerations for licensors: https://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensors . + +Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor's permission is not necessary for any reason - for example, because of any applicable exception or limitation to copyright - then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public: https://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees . + + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. + + +Section 1 - Definitions. + +a. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. + +b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. + +c. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. + +d. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. + +e. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. + +f. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. + +g. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. + +h. Licensor means the individual(s) or entity(ies) granting rights under this Public License. + +i. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. + +j. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. + +k. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. + + +Section 2 - Scope. + +a. License grant. + 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: + A. reproduce and Share the Licensed Material, in whole or in part; and + B. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. + + 3. Term. The term of this Public License is specified in Section 6(a). + + 4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. + + 5. Downstream recipients. + A. Offer from the Licensor - Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. + B. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. + + 6. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). + +b. Other rights. + + 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this Public License. + + 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. + + +Section 3 - License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the following conditions. + +a. Attribution. + + 1. If You Share the Licensed Material (including in modified form), You must: + + A. retain the following if it is supplied by the Licensor with the Licensed Material: + i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); + ii. a copyright notice; + iii. a notice that refers to this Public License; + iv. a notice that refers to the disclaimer of warranties; + v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; + + B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and + + C. indicate the Licensed Material is licensed under this Public License, and include the text of,or the URI or hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. + + 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License. + + +Section 4 - Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: + +a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; + +b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and + +c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. + + +Section 5 - Disclaimer of Warranties and Limitation of Liability. + +a. Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. + +b. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. + +c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. + + +Section 6 - Term and Termination. + +a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. + +b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. + +c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. + +d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. + + +Section 7 - Other Terms and Conditions. + +a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. + +b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. + + +Section 8 - Interpretation. + +a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. + +b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. + +c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. + +d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. + + +Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the "Licensor." The text of the Creative Commons public licenses is dedicated to the public domain under the CC0 Public Domain Dedication(https://creativecommons.org/licenses/by/4.0/creativecommons.org/zero/1.0/legalcode). Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark "Creative Commons" or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. + +Creative Commons may be contacted at creativecommons.org. + +Additional languages available: Nederlands (https://creativecommons.org/licenses/by/4.0/legalcode.nl), Norsk(https://creativecommons.org/licenses/by/4.0/legalcode.no), suomeksi(https://creativecommons.org/licenses/by/4.0/legalcode.fi). Please read the FAQ for more information about official translations: https://wiki.creativecommons.org/FAQ#officialtranslations . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_45.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_45.RULE new file mode 100644 index 00000000000..0c79cd8f336 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_45.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/ +--- + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_49.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_49.RULE new file mode 100644 index 00000000000..29644dc5e26 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_49.RULE @@ -0,0 +1,21 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_tag: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/ + - http://web.resource.org/cc/Attribution + - http://web.resource.org/cc/DerivativeWorks + - http://web.resource.org/cc/Distribution + - http://web.resource.org/cc/Notice + - http://web.resource.org/cc/Reproduction + - http://web.resource.org/cc/ShareAlike +--- + + + + + + + + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_103.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_103.RULE new file mode 100644 index 00000000000..8dd1e762fb8 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_103.RULE @@ -0,0 +1,21 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ + - http://web.resource.org/cc/Attribution + - http://web.resource.org/cc/DerivativeWorks + - http://web.resource.org/cc/Distribution + - http://web.resource.org/cc/Notice + - http://web.resource.org/cc/Reproduction + - http://web.resource.org/cc/ShareAlike +--- + + + + + + + + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_103.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_103.RULE new file mode 100644 index 00000000000..e0b262cd4e3 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_103.RULE @@ -0,0 +1,21 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0/ + - http://web.resource.org/cc/Attribution + - http://web.resource.org/cc/DerivativeWorks + - http://web.resource.org/cc/Distribution + - http://web.resource.org/cc/Notice + - http://web.resource.org/cc/Reproduction + - http://web.resource.org/cc/ShareAlike +--- + + + + + + + + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_104.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_104.RULE new file mode 100644 index 00000000000..abc7890b246 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_104.RULE @@ -0,0 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 99 +notes: https://github.com/heathermeeker/Transition-Checklist/blob/main/LICENSE +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + +Creative Commons By-SA License 4.0 or later +https://creativecommons.org/licenses/by-sa/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_204.RULE b/src/licensedcode/data/rules/cc0-1.0_204.RULE new file mode 100644 index 00000000000..0c8742e765f --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_204.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/zero/1.0/ +--- + +licensed under a Creative Commons Zero (CC0) 1.0 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_205.RULE b/src/licensedcode/data/rules/cc0-1.0_205.RULE new file mode 100644 index 00000000000..9592e9de79c --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_205.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/zero/1.0/ +--- + +Creative Commons Zero (CC0) 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_91.RULE b/src/licensedcode/data/rules/cddl-1.0_91.RULE new file mode 100644 index 00000000000..daf3bfe2b9e --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.0_91.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - CDDL_1.txt +--- + +CDDL_1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_92.RULE b/src/licensedcode/data/rules/cddl-1.0_92.RULE new file mode 100644 index 00000000000..c49296cbf8a --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.0_92.RULE @@ -0,0 +1,20 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +notes: The cddl was 1.0 in late 2006 when this Apache-like notice was used in some Sun code + See https://web.archive.org/web/20061201110926/http://www.sun.com:80/cddl/ +ignorable_urls: + - http://www.sun.com/cddl/ +--- + +Licensed under the Common Development and Distribution License, + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.sun.com/cddl/ + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied. See the License for the specific language governing + permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE new file mode 100644 index 00000000000..c009a178984 --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE @@ -0,0 +1,10 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +ignorable_urls: + - http://glassfish.dev.java.net/nonav/public/CDDL+GPL.html +--- + +name: {{CDDL + GPLv2 with classpath exception}} +url: http://glassfish.dev.java.net/nonav/public/CDDL+GPL.html +comments: A business-friendly OSS license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.RULE new file mode 100644 index 00000000000..a5e6d8e4bc2 --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.RULE @@ -0,0 +1,10 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +ignorable_urls: + - https://github.com/javaee/javax.xml.soap/blob/master/LICENSE +--- + +name: CDDL + GPLv2 with classpath exception +url: https://github.com/javaee/javax.xml.soap/blob/master/LICENSE +comments: A business-friendly OSS license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_9.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_9.RULE new file mode 100644 index 00000000000..fec22f78038 --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_9.RULE @@ -0,0 +1,10 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +ignorable_urls: + - https://github.com/javaee/javax.transaction/blob/master/LICENSE +--- + +name: CDDL + GPLv2 with classpath exception +url: https://github.com/javaee/javax.transaction/blob/master/LICENSE +comments: A business-friendly OSS license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_12.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_12.RULE new file mode 100644 index 00000000000..91773de7d1b --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_12.RULE @@ -0,0 +1,41 @@ +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html +--- + +* The contents of this file are subject to the terms of either the GNU + * General Public License Version 2 only ("GPL") or the Common Development + * and Distribution License("CDDL") (collectively, the "License"). You + * may not use this file except in compliance with the License. You can + * obtain a copy of the License at + * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html + * or packager/legal/LICENSE.txt. See the License for the specific + * language governing permissions and limitations under the License. + * + * When distributing the software, include this License Header Notice in each + * file and include the License file at packager/legal/LICENSE.txt. + * + * GPL Classpath Exception: + * Oracle designates this particular file as subject to the "Classpath" + * exception as provided by Oracle in the GPL Version 2 section of the License + * file that accompanied this code. + * + * Modifications: + * If applicable, add the following below the License Header, with the fields + * enclosed by brackets [] replaced by your own identifying information: + * "Portions Copyright [year] [name of copyright owner]" + * + * Contributor(s): + * If you wish your version of this file to be governed by only the CDDL or + * only the GPL Version 2, indicate your decision by adding "[Contributor] + * elects to include this software in this distribution under the [CDDL or GPL + * Version 2] license." If you don't indicate a single choice of license, a + * recipient has the option to distribute your version of this file under + * either the CDDL, the GPL Version 2 or to extend the choice of license to + * its licensees as provided above. However, if you add GPL Version 2 code + * and therefore, elected the GPL Version 2 license, then the option applies + * only if the new code is made subject to such option by the copyright + * holder. + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_or_mit_1.RULE b/src/licensedcode/data/rules/cecill-c_or_mit_1.RULE new file mode 100644 index 00000000000..a0518ccf170 --- /dev/null +++ b/src/licensedcode/data/rules/cecill-c_or_mit_1.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cecill-c OR mit +is_license_notice: yes +ignorable_urls: + - https://cecill.info/licences.en.html +--- + +Free and Open Source, double-licensed under the ([CeCILL-C license](https://cecill.info/licences.en.html) - +French equivalent to LGPL) and the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_87.RULE b/src/licensedcode/data/rules/commercial-license_87.RULE new file mode 100644 index 00000000000..8ac0634350a --- /dev/null +++ b/src/licensedcode/data/rules/commercial-license_87.RULE @@ -0,0 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + +released under the Commercial Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_88.RULE b/src/licensedcode/data/rules/commercial-license_88.RULE new file mode 100644 index 00000000000..688d4fdb022 --- /dev/null +++ b/src/licensedcode/data/rules/commercial-license_88.RULE @@ -0,0 +1,6 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + +you may distribute under the terms of commercial license, that allows you to distribute private forks and modifications. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_89.RULE b/src/licensedcode/data/rules/commercial-license_89.RULE new file mode 100644 index 00000000000..68794c511d0 --- /dev/null +++ b/src/licensedcode/data/rules/commercial-license_89.RULE @@ -0,0 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + +under the terms of commercial license \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_90.RULE b/src/licensedcode/data/rules/commercial-license_90.RULE new file mode 100644 index 00000000000..170420acd68 --- /dev/null +++ b/src/licensedcode/data/rules/commercial-license_90.RULE @@ -0,0 +1,82 @@ +--- +license_expression: commercial-license +is_license_text: yes +notes: https://raw.githubusercontent.com/HangfireIO/Hangfire/master/LICENSE_ROYALTYFREE +--- + +Royalty-free End-user License Agreement +======================================= + +THIS LICENSE AGREEMENT DESCRIBES YOUR RIGHTS WITH RESPECT TO THE SOFTWARE AND ITS COMPONENTS. + +1. OWNERSHIP, LICENSE GRANT + +This is a license agreement and not an agreement for sale. We reserve ownership of all intellectual property rights inherent in or relating to the Software, which include, but are not limited to, all copyright, patent rights, all rights in relation to registered and unregistered trademarks (including service marks), confidential information (including trade secrets and know-how) and all rights other than those expressly granted by this License Agreement. + +Subject to the payment of the fee required and subject to the terms and conditions of this License Agreement, We grant to You a revocable, non- transferable and non-exclusive license (i) for Designated User(s) (as defined below) within Your organization to install and use the Software on any workstations used exclusively by such Designated User and (ii) for You to install and use the Software in connection with unlimited domains and sub-domains on unlimited servers, solely in connection with distribution of the Software in accordance with sections 3 and 4 below. This license is not sublicensable except as explicitly set forth herein. "Designated User(s)" shall mean Your employee(s) acting within the scope of their employment or Your consultant(s) or contractor(s) acting within the scope of the services they provide for You or on Your behalf for whom You have purchased a license to use the Software. + +2. PERMITTED USES, SOURCE CODE, MODIFICATIONS + +We provide You with source code so that You can create Modifications of the original Software, where Modification means: a) any addition to or deletion from the contents of a file included in the original Software or previous Modifications created by You, or b) any new file that contains any part of the original Software or previous Modifications. While You retain all rights to any original work authored by You as part of the Modifications, We continue to own all copyright and other intellectual property rights in the Software. + +3. DISTRIBUTION + +You may distribute the Software in any applications, frameworks, or elements (collectively referred to as an "Application" or "Applications") that you develop using the Software in accordance with this License Agreement, provided that such distribution does not violate the restrictions set forth in section 4 of this License Agreement. You must not remove, obscure or interfere with any copyright, acknowledgment, attribution, trademark, warning or disclaimer statement affixed to, incorporated in or otherwise applied in connection with the Software. + +You are required to ensure that the Software is not reused by or with any applications other than those with which You distribute it as permitted herein. For example, if You install the Software on a customer's server, that customer is not permitted to use the Software independently of Your application, and must be informed as such. + +You will not owe Us any royalties for Your distribution of the Software in accordance with this License Agreement. + +4. PROHIBITED USES + +You may not, without Our prior written consent, redistribute the Software or Modifications other than by including the Software or a portion thereof within Your own product, which must have substantially different functionality than the Software or Modifications and must not allow any third party to use the Software or Modifications, or any portions thereof, for software development or application development purposes. You are explicitly not allowed to redistribute the Software or Modifications as part of any product that can be described as a development toolkit or library, an application builder, a website builder or any product that is intended for use by software, application, or website developers or designers. You may not change or remove the copyright notice from any of the files included in the Software or Modifications. + +You may redistribute the Software as part of Your own products. + +UNDER NO CIRCUMSTANCES MAY YOU USE THE SOFTWARE FOR A PRODUCT THAT IS INTENDED FOR SOFTWARE OR APPLICATION DEVELOPMENT PURPOSES. + +5. TERMINATION + +This License Agreement and Your right to use the Software and Modifications will terminate immediately without notice if You fail to comply with the terms and conditions of this License Agreement. Upon termination, You agree to immediately cease using and destroy the Software or Modifications, including all accompanying documents. The provisions of sections 4, 5, 6, 7, 8, 9, 10 and 11 will survive any termination of this License Agreement. + +6. DISCLAIMER OF WARRANTIES + +TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE AND OUR SUPPLIERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. WE DO NOT GUARANTEE THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU ACKNOWLEDGE THAT IT IS NOT TECHNICALLY PRACTICABLE FOR US TO DO SO. + +7. LIMITATION OF LIABILITIES + +TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL WE OR OUR SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR ANY OTHER PECUNIARY LAW) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, OUR ENTIRE LIABILITY UNDER ANY PROVISION OF THIS LICENSE AGREEMENT SHALL BE LIMITED TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE. + +8. VERIFICATION + +We or a certified auditor acting on Our behalf, may, upon its reasonable request and at its expense, audit You with respect to the use of the Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Your place of business. Any such in-person audit shall be conducted during regular business hours at Your facilities and shall not unreasonably interfere with Your business activities. We shall not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that You are using the Software in a way that is in material violation of the terms of the License Agreement, then You shall pay Our reasonable costs of conducting the audit. In the case of a material violation, You agree to pay Us any amounts owing that are attributable to the unauthorized use. In the alternative, We reserve the right, at Our sole option, to terminate the licenses for the Software. + +9. THIRD PARTY SOFTWARE + +The Software may contain third party open source software which requires notices and/or additional terms and conditions. Such required third party software notices and/or additional terms and conditions are located in the NOTICES file accompanying the Software distribution, and are made a part of and incorporated by reference into this Agreement. By accepting this Agreement, you are also accepting the additional terms and conditions, if any, set forth therein. + +10. PAYMENT AND TAXES + +If credit has been extended to You by Us, all payments under this License Agreement are due within thirty (30) days of the date We mail an invoice to You. If We have not extended credit to You, You shall be required to make payment concurrent with the delivery of the Software by Us. All amounts payable are gross amounts but exclusive of any value added tax, use tax, sales tax or similar tax. You shall be entitled to withhold from payments any applicable withholding taxes and comply with all applicable tax and employment legislation. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this Agreement and any payments made hereunder (including those required to be withheld or deducted from payments). Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates. + +11. MISCELLANEOUS + +The license granted herein applies only to the version of the Software available when purchased in connection with the terms of this License Agreement. Any previous or subsequent license granted to You for use of the Software shall be governed by the terms and conditions of the agreement entered in connection with purchase of that version of the Software. You agree that you will comply with all applicable laws and regulations with respect to the Software, including without limitation all export and re-export control laws and regulations. + +While redistributing the Software or Modifications thereof, You may choose to offer acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License Agreement. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on Our behalf. You agree to indemnify, defend, and hold Us harmless from and against any liability incurred by, or claims asserted against, Us (i) by reason of Your accepting any such support, warranty, indemnity or additional liability; or (ii) arising out of the use, reproduction or distribution of Your Application, except to the extent such claim is solely based on the inclusion of the Software therein. + +You agree to be identified as a customer of ours and You agree that We may refer to You by name, trade name and trademark, if applicable, and may briefly describe Your business in our marketing materials and web site. + +You may not assign this License Agreement without Our prior written consent, which will not be unreasonably withheld. This License Agreement will inure to the benefit of Our successors and assigns. + +You acknowledge that this License Agreement is complete and is the exclusive representation of our agreement. No oral or written information given by Us or on our behalf shall create a warranty or collateral contract, or in any way increase the scope of this License Agreement in any way, and You may not rely on any such oral or written information. No term or condition contained in any purchase order shall apply unless expressly accepted by Us in writing. + +There are no implied licenses or other implied rights granted under this License Agreement, and all rights, save for those expressly granted hereunder, shall remain with Us and our licensors. In addition, no licenses or immunities are granted to the combination of the Software and/or Modifications, as applicable, with any other software or hardware not delivered by Us to You under this License Agreement. + +If any provision in this License Agreement shall be determined to be invalid, such provision shall be deemed omitted; the remainder of this License Agreement shall continue in full force and effect. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this License Agreement shall remain in effect. + +This License Agreement may be modified only by a written instrument signed by an authorized representative of each party. + +This License Agreement is governed by the law of the State of Oregon, United States (notwithstanding conflicts of laws provisions), and all parties irrevocably submit to the jurisdiction of the courts of the State of Oregon and further agree to commence any litigation which may arise hereunder in the state or federal courts located in the judicial district of Multnomah County, Oregon, US. + +If the Software or any related documentation is licensed to the U.S. government or any agency thereof, it will be deemed to be "commercial computer software" or "commercial computer software documentation", pursuant to DFAR Section 227.7202 and FAR Section 12.212. Any use of the Software or related documentation by the U.S. government will be governed solely by the terms of this License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_91.RULE b/src/licensedcode/data/rules/commercial-license_91.RULE new file mode 100644 index 00000000000..c2f39b8192c --- /dev/null +++ b/src/licensedcode/data/rules/commercial-license_91.RULE @@ -0,0 +1,82 @@ +--- +license_expression: commercial-license +is_license_text: yes +notes: https://raw.githubusercontent.com/HangfireIO/Hangfire/master/LICENSE_STANDARD +--- + +Standard End-user License Agreement +=================================== + +THIS LICENSE AGREEMENT DESCRIBES YOUR RIGHTS WITH RESPECT TO THE SOFTWARE AND ITS COMPONENTS. + +1. OWNERSHIP, LICENSE GRANT + +This is a license agreement and not an agreement for sale. We reserve ownership of all intellectual property rights inherent in or relating to the Software, which include, but are not limited to, all copyright, patent rights, all rights in relation to registered and unregistered trademarks (including service marks), confidential information (including trade secrets and know-how) and all rights other than those expressly granted by this License Agreement. + +Subject to the payment of the fee required and subject to the terms and conditions of this License Agreement, We grant to You a revocable, non- transferable and non-exclusive license (i) for Designated User(s) (as defined below) within Your organization to install and use the Software on any workstations used exclusively by such Designated User and (ii) for You to install and use the Software in connection with unlimited domains and sub-domains on unlimited servers, solely in connection with distribution of the Software in accordance with sections 3 and 4 below. This license is not sublicensable except as explicitly set forth herein. "Designated User(s)" shall mean Your employee(s) acting within the scope of their employment or Your consultant(s) or contractor(s) acting within the scope of the services they provide for You or on Your behalf for whom You have purchased a license to use the Software. + +2. PERMITTED USES, SOURCE CODE, MODIFICATIONS + +We provide You with source code so that You can create Modifications of the original Software, where Modification means: a) any addition to or deletion from the contents of a file included in the original Software or previous Modifications created by You, or b) any new file that contains any part of the original Software or previous Modifications. While You retain all rights to any original work authored by You as part of the Modifications, We continue to own all copyright and other intellectual property rights in the Software. + +3. DISTRIBUTION + +You may distribute the Software in any applications, frameworks, or elements (collectively referred to as an "Application" or "Applications") that you develop using the Software in accordance with this License Agreement, provided that such distribution does not violate the restrictions set forth in section 4 of this License Agreement. You must not remove, obscure or interfere with any copyright, acknowledgment, attribution, trademark, warning or disclaimer statement affixed to, incorporated in or otherwise applied in connection with the Software. + +You are required to ensure that the Software is not reused by or with any applications other than those with which You distribute it as permitted herein. For example, if You install the Software on a customer's server, that customer is not permitted to use the Software independently of Your application, and must be informed as such. + +You will not owe Us any royalties for Your distribution of the Software in accordance with this License Agreement. + +4. PROHIBITED USES + +You may not, without Our prior written consent, redistribute the Software or Modifications other than by including the Software or a portion thereof within Your own product, which must have substantially different functionality than the Software or Modifications and must not allow any third party to use the Software or Modifications, or any portions thereof, for software development or application development purposes. You are explicitly not allowed to redistribute the Software or Modifications as part of any product that can be described as a development toolkit or library, an application builder, a website builder or any product that is intended for use by software, application, or website developers or designers. You may not change or remove the copyright notice from any of the files included in the Software or Modifications. + +You may not redistribute the Software as part of a product, "appliance" or "virtual server". You may not redistribute the Software on any server which is not directly under Your control. + +UNDER NO CIRCUMSTANCES MAY YOU USE THE SOFTWARE FOR A PRODUCT THAT IS INTENDED FOR SOFTWARE OR APPLICATION DEVELOPMENT PURPOSES. + +5. TERMINATION + +This License Agreement and Your right to use the Software and Modifications will terminate immediately without notice if You fail to comply with the terms and conditions of this License Agreement. Upon termination, You agree to immediately cease using and destroy the Software or Modifications, including all accompanying documents. The provisions of sections 4, 5, 6, 7, 8, 9, 10 and 11 will survive any termination of this License Agreement. + +6. DISCLAIMER OF WARRANTIES + +TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE AND OUR SUPPLIERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. WE DO NOT GUARANTEE THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU ACKNOWLEDGE THAT IT IS NOT TECHNICALLY PRACTICABLE FOR US TO DO SO. + +7. LIMITATION OF LIABILITIES + +TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL WE OR OUR SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR ANY OTHER PECUNIARY LAW) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, OUR ENTIRE LIABILITY UNDER ANY PROVISION OF THIS LICENSE AGREEMENT SHALL BE LIMITED TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE. + +8. VERIFICATION + +We or a certified auditor acting on Our behalf, may, upon its reasonable request and at its expense, audit You with respect to the use of the Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Your place of business. Any such in-person audit shall be conducted during regular business hours at Your facilities and shall not unreasonably interfere with Your business activities. We shall not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that You are using the Software in a way that is in material violation of the terms of the License Agreement, then You shall pay Our reasonable costs of conducting the audit. In the case of a material violation, You agree to pay Us any amounts owing that are attributable to the unauthorized use. In the alternative, We reserve the right, at Our sole option, to terminate the licenses for the Software. + +9. THIRD PARTY SOFTWARE + +The Software may contain third party open-source software which requires notices and/or additional terms and conditions. Such required third party software notices and/or additional terms and conditions are located in the NOTICES file accompanying the Software distribution, and are made a part of and incorporated by reference into this Agreement. By accepting this Agreement, you are also accepting the additional terms and conditions, if any, set forth therein. + +10. PAYMENT AND TAXES + +If credit has been extended to You by Us, all payments under this License Agreement are due within thirty (30) days of the date We mail an invoice to You. If We have not extended credit to You, You shall be required to make payment concurrent with the delivery of the Software by Us. All amounts payable are gross amounts but exclusive of any value added tax, use tax, sales tax or similar tax. You shall be entitled to withhold from payments any applicable withholding taxes and comply with all applicable tax and employment legislation. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this Agreement and any payments made hereunder (including those required to be withheld or deducted from payments). Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates. + +11. MISCELLANEOUS + +The license granted herein applies only to the version of the Software available when purchased in connection with the terms of this License Agreement. Any previous or subsequent license granted to You for use of the Software shall be governed by the terms and conditions of the agreement entered in connection with purchase of that version of the Software. You agree that you will comply with all applicable laws and regulations with respect to the Software, including without limitation all export and re-export control laws and regulations. + +While redistributing the Software or Modifications thereof, You may choose to offer acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License Agreement. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on Our behalf. You agree to indemnify, defend, and hold Us harmless from and against any liability incurred by, or claims asserted against, Us (i) by reason of Your accepting any such support, warranty, indemnity or additional liability; or (ii) arising out of the use, reproduction or distribution of Your Application, except to the extent such claim is solely based on the inclusion of the Software therein. + +You agree to be identified as a customer of ours and You agree that We may refer to You by name, trade name and trademark, if applicable, and may briefly describe Your business in our marketing materials and web site. + +You may not assign this License Agreement without Our prior written consent, which will not be unreasonably withheld. This License Agreement will inure to the benefit of Our successors and assigns. + +You acknowledge that this License Agreement is complete and is the exclusive representation of our agreement. No oral or written information given by Us or on our behalf shall create a warranty or collateral contract, or in any way increase the scope of this License Agreement in any way, and You may not rely on any such oral or written information. No term or condition contained in any purchase order shall apply unless expressly accepted by Us in writing. + +There are no implied licenses or other implied rights granted under this License Agreement, and all rights, save for those expressly granted hereunder, shall remain with Us and our licensors. In addition, no licenses or immunities are granted to the combination of the Software and/or Modifications, as applicable, with any other software or hardware not delivered by Us to You under this License Agreement. + +If any provision in this License Agreement shall be determined to be invalid, such provision shall be deemed omitted; the remainder of this License Agreement shall continue in full force and effect. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this License Agreement shall remain in effect. + +This License Agreement may be modified only by a written instrument signed by an authorized representative of each party. + +This License Agreement is governed by the law of the State of Oregon, United States (notwithstanding conflicts of laws provisions), and all parties irrevocably submit to the jurisdiction of the courts of the State of Oregon and further agree to commence any litigation which may arise hereunder in the state or federal courts located in the judicial district of Multnomah County, Oregon, US. + +If the Software or any related documentation is licensed to the U.S. government or any agency thereof, it will be deemed to be "commercial computer software" or "commercial computer software documentation", pursuant to DFAR Section 227.7202 and FAR Section 12.212. Any use of the Software or related documentation by the U.S. government will be governed solely by the terms of this License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_37.RULE b/src/licensedcode/data/rules/cpal-1.0_37.RULE new file mode 100644 index 00000000000..9f664533a20 --- /dev/null +++ b/src/licensedcode/data/rules/cpal-1.0_37.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +--- + +distributed under the terms of the Common Public Attribution +License (CPAL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_41.RULE b/src/licensedcode/data/rules/cpal-1.0_41.RULE new file mode 100644 index 00000000000..29f55cc6e97 --- /dev/null +++ b/src/licensedcode/data/rules/cpal-1.0_41.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +--- + +distributed under the terms of the Common Public Attribution +License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_107.RULE b/src/licensedcode/data/rules/epl-1.0_107.RULE new file mode 100644 index 00000000000..9e699d990b5 --- /dev/null +++ b/src/licensedcode/data/rules/epl-1.0_107.RULE @@ -0,0 +1,217 @@ +--- +license_expression: epl-1.0 +is_license_text: yes +--- + +Eclipse Public License - v 1.0 + + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC + LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM + CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + + 1. DEFINITIONS + + "Contribution" means: + + a) in the case of the initial Contributor, the initial code and documentation + + distributed under this Agreement, and + + b) in the case of each subsequent Contributor: + + i) changes to the Program, and + + ii) additions to the Program; + + where such changes and/or additions to the Program originate from and are + distributed by that particular Contributor. A Contribution 'originates' from a + Contributor if it was added to the Program by such Contributor itself or anyone + acting on such Contributor's behalf. Contributions do not include additionsto + the Program which: (i) are separate modules of software distributed in + conjunction with the Program under their own license agreement, and (ii) are not + derivative works of the Program. + + "Contributor" means any person or entity that distributes the Program. + + "Licensed Patents " mean patent claims licensable by a Contributor which are + necessarily infringed by the use or sale of its Contribution alone or when + combined with the Program. + + "Program" means the Contributions distributed in accordance with this + Agreement. + + "Recipient" means anyone who receives the Program under this Agreement, + including all Contributors. + + 2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby grants + Recipient a non-exclusive, worldwide, royalty-free copyright license to + reproduce, prepare derivative works of, publicly display, publicly perform, + distribute and sublicense the Contribution of such Contributor, if any, and such + derivative works, in source code and object code form. + + b) Subject to the terms of this Agreement, each Contributor hereby grants + Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed + Patents to make, use, sell, offer to sell, import and otherwise transfer the + Contribution of such Contributor, if any, in source code and object code form. + This patent license shall apply to the combination of the Contribution and the + Program if, at the time the Contribution is added by the Contributor, such + addition of the Contribution causes such combination to be covered by the + Licensed Patents. The patent license shall not apply to any other combinations + which include the Contribution. No hardware per se is licensed hereunder. + + c) Recipient understands that although each Contributor grants the licenses to + its Contributions set forth herein, no assurances are provided by any + Contributor that the Program does not infringe the patent or other intellectual + property rights of any other entity. Each Contributor disclaims any liability to + Recipient for claims brought by any other entity based on infringement of + intellectual property rights or otherwise. As a condition to exercising the + rights and licenses granted hereunder, each Recipient hereby assumes sole + responsibility to secure any other intellectual property rights needed, if any. + For example, if a third party patent license is required to allow Recipient to + distribute the Program, it is Recipient's responsibility to acquire that license + before distributing the Program. + + d) Each Contributor represents that to its knowledge it has sufficient + copyright rights in its Contribution, if any, to grant the copyright license + set forth in this Agreement. + + 3. REQUIREMENTS + + A Contributor may choose to distribute the Program in object code form under + its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + + i) effectively disclaims on behalf of all Contributors all warranties + and conditions, express and implied, including warranties or conditions + of title and non-infringement, and implied warranties or conditions of + merchantability and fitness for a particular purpose; + + ii) effectively excludes on behalf of all Contributors all liability for + damages, including direct, indirect, special, incidental and + consequential damages, such as lost profits; + + iii) states that any provisions which differ from this Agreement are + offered by that Contributor alone and not by any other party; and + + iv) states that source code for the Program is available from such + Contributor, and informs licensees how to obtain it in a reasonable + manner on or through a medium customarily used for software exchange. + + When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of the Program. + + Contributors may not remove or alter any copyright notices contained within + the Program. + + Each Contributor must identify itself as the originator of its Contribution, + if any, in a manner that reasonably allows subsequent Recipients to identify + the originator of the Contribution. + + 4. COMMERCIAL DISTRIBUTION + + Commercial distributors of software may accept certain responsibilities with + respect to end users, business partners and the like. While this license is + intended to facilitate the commercial use of the Program, the Contributor who + includes the Program in a commercial product offering should do so in a manner + which does not create potential liability for other Contributors. Therefore, if + a Contributor includes the Program in a commercial product offering, such + Contributor ("Commercial Contributor") hereby agrees to defend and indemnify + every other Contributor ("Indemnified Contributor") against any losses, damages + and costs (collectively "Losses") arising from claims, lawsuits and other legal + actions brought by a third party against the Indemnified Contributor to the + extent caused by the acts or omissions of such Commercial Contributor in + connection with its distribution of the Program in a commercial product + offering. The obligations in this section do not apply to any claims or Losses + relating to any actual or alleged intellectual property infringement. In order + to qualify, an Indemnified Contributor must: a) promptly notify the Commercial + Contributor in writing of such claim, and b) allow the Commercial Contributor to + control, and cooperate with the Commercial Contributor in, the defense and any + related settlement negotiations. The Indemnified Contributor may participate in + any such claim at its own expense. + + For example, a Contributor might include the Program in a commercial product + offering, Product X. That Contributor is then a Commercial Contributor. If that + Commercial Contributor then makes performance claims, or offers warranties + related to Product X, those performance claims and warranties are such + Commercial Contributor's responsibility alone. Under this section, the + Commercial Contributor would have to defend claims against the other + Contributors related to those performance claims and warranties, and if a court + requires any other Contributor to pay any damages as a result, the Commercial + Contributor must pay those damages. + + 5. NO WARRANTY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR + IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, + NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each + Recipient is solely responsible for determining the appropriateness of using and + distributing the Program and assumes all risks associated with its exercise of + rights under this Agreement , including but not limited to the risks and costs + of program errors, compliance with applicable laws, damage to or loss of data, + programs or equipment, and unavailability or interruption of operations. + + 6. DISCLAIMER OF LIABILITY + + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY + CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST + PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS + GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. GENERAL + + If any provision of this Agreement is invalid or unenforceable under applicable + law, it shall not affect the validity or enforceability of the remainder of the + terms of this Agreement, and without further action by the parties hereto, such + provision shall be reformed to the minimum extent necessary to make such + provision valid and enforceable. + + If Recipient institutes patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Program itself + (excluding combinations of the Program with other software or hardware) + infringes such Recipient's patent(s), then such Recipient's rights granted under + Section 2(b) shall terminate as of the date such litigation is filed. + + All Recipient's rights under this Agreement shall terminate if it fails to + comply with any of the material terms or conditions of this Agreement and does + not cure such failure in a reasonable period of time after becoming aware of + such noncompliance. If all Recipient's rights under this Agreement terminate, + Recipient agrees to cease use and distribution of the Program as soon as + reasonably practicable. However, Recipient's obligations under this Agreement + and any licenses granted by Recipient relating to the Program shall continue and + survive. + + Everyone is permitted to copy and distribute copies of this Agreement, but in + order to avoid inconsistency the Agreement is copyrighted and may only be + modified in the following manner. The Agreement Steward reserves the right to + publish new versions (including revisions) of this Agreement from time to time. + No one other than the Agreement Steward has the right to modify this Agreement. + The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation + may assign the responsibility to serve as the Agreement Steward to a suitable + separate entity. Each new version of the Agreement will be given a + distinguishing version number. The Program (including Contributions) may always + be distributed subject to the version of the Agreement under which it was + received. In addition, after a new version of the Agreement is published, + Contributor may elect to distribute the Program (including its Contributions) + under the new version. Except as expressly stated in Sections 2(a) and 2(b) + above, Recipient receives no rights or licenses to the intellectual property of + any Contributor under this Agreement, whether expressly, by implication, + estoppel or otherwise. All rights in the Program not expressly granted under + this Agreement are reserved. + + This Agreement is governed by the laws of the State of New York and the + intellectual property laws of the United States of America. No party to this + Agreement will bring a legal action under this Agreement more than one year + after the cause of action arose. Each party waives its rights to a jury trial in + any resulting litigation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_5.RULE b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_5.RULE new file mode 100644 index 00000000000..02f17c6280a --- /dev/null +++ b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_5.RULE @@ -0,0 +1,14 @@ +--- +license_expression: epl-1.0 AND bsd-new +is_license_tag: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/org/documents/edl-v10.php +--- + +{{Eclipse Public License v1.0}} +http://www.eclipse.org/legal/epl-v10.html +Standard Eclipse Licence +{{Eclipse Distribution License v. 1.0}} +http://www.eclipse.org/org/documents/edl-v10.php +Standard Eclipse Distribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_71.RULE b/src/licensedcode/data/rules/epl-2.0_71.RULE new file mode 100644 index 00000000000..3a686c72f90 --- /dev/null +++ b/src/licensedcode/data/rules/epl-2.0_71.RULE @@ -0,0 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 99 +referenced_filenames: + - EPL_2.txt +--- + +EPL_2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_710.RULE b/src/licensedcode/data/rules/false-positive_710.RULE index 4e96f28b667..236b2537397 100644 --- a/src/licensedcode/data/rules/false-positive_710.RULE +++ b/src/licensedcode/data/rules/false-positive_710.RULE @@ -3,4 +3,4 @@ is_false_positive: yes notes: seen in opentofu --- -The options passed to this function may not be modified \ No newline at end of file +The options passed to this function may not be modified diff --git a/src/licensedcode/data/rules/false-positive_711.RULE b/src/licensedcode/data/rules/false-positive_711.RULE new file mode 100644 index 00000000000..61a4c192d7b --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_711.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +effective permission is granted \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_712.RULE b/src/licensedcode/data/rules/false-positive_712.RULE new file mode 100644 index 00000000000..e10efcb0b19 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_712.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +rules may not be modified \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_713.RULE b/src/licensedcode/data/rules/false-positive_713.RULE new file mode 100644 index 00000000000..1d913c498d1 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_713.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +as a special exception, the function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_714.RULE b/src/licensedcode/data/rules/false-positive_714.RULE new file mode 100644 index 00000000000..2f45b49881a --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_714.RULE @@ -0,0 +1,7 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +Requirements> + The program should be released as free software, under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_715.RULE b/src/licensedcode/data/rules/false-positive_715.RULE new file mode 100644 index 00000000000..e04983cb769 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_715.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +libart_lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_716.RULE b/src/licensedcode/data/rules/false-positive_716.RULE new file mode 100644 index 00000000000..33d04aacfa0 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_716.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +libart_lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_717.RULE b/src/licensedcode/data/rules/false-positive_717.RULE new file mode 100644 index 00000000000..06226aac6ae --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_717.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +dsp_gpl.asm \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_718.RULE b/src/licensedcode/data/rules/false-positive_718.RULE new file mode 100644 index 00000000000..d32c6895ada --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_718.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +ads2armasm_ms.pl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_719.RULE b/src/licensedcode/data/rules/false-positive_719.RULE new file mode 100644 index 00000000000..16c2305ddd6 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_719.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +lal $1, $2($1)') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_720.RULE b/src/licensedcode/data/rules/false-positive_720.RULE new file mode 100644 index 00000000000..e1f515a7a6d --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_720.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +BSD style assembler code \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_721.RULE b/src/licensedcode/data/rules/false-positive_721.RULE new file mode 100644 index 00000000000..dcf44d1a740 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_721.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +BSD style x86 assembler code \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_722.RULE b/src/licensedcode/data/rules/false-positive_722.RULE new file mode 100644 index 00000000000..ae8c44cd420 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_722.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +http://webmproject.blogspot.com/2010/06/changes-to-webm-open-source-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_723.RULE b/src/licensedcode/data/rules/false-positive_723.RULE new file mode 100644 index 00000000000..073fb19362f --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_723.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +plugin-license 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_724.RULE b/src/licensedcode/data/rules/false-positive_724.RULE new file mode 100644 index 00000000000..8d8f7cf4810 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_724.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +SAX.characters(GPL, 3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_725.RULE b/src/licensedcode/data/rules/false-positive_725.RULE new file mode 100644 index 00000000000..7553b3f2c7d --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_725.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +characters(GPL, 3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_726.RULE b/src/licensedcode/data/rules/false-positive_726.RULE new file mode 100644 index 00000000000..056fa17231e --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_726.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +SAX.characters(GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_727.RULE b/src/licensedcode/data/rules/false-positive_727.RULE new file mode 100644 index 00000000000..d0f5afc6075 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_727.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +characters(GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_728.RULE b/src/licensedcode/data/rules/false-positive_728.RULE new file mode 100644 index 00000000000..b6646409c7d --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_728.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license +--- + +0 1 GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_729.RULE b/src/licensedcode/data/rules/false-positive_729.RULE new file mode 100644 index 00000000000..9356d05b117 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_729.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in metabase +--- + +permission is granted to the linked table \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_730.RULE b/src/licensedcode/data/rules/false-positive_730.RULE new file mode 100644 index 00000000000..2e42092570e --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_730.RULE @@ -0,0 +1,53 @@ +--- +is_false_positive: yes +notes: This is the boilerplate included in most Oracle long form license notice and this is + not a license +--- + +Written Offer for Source Code + + For any software that you receive from Oracle in binary form which is + licensed under an open source license that gives you the right to + receive the source code for that binary, you can obtain a copy of the + applicable source code by visiting + http://www.oracle.com/goto/opensourcecode. If the source code for the + binary was not provided to you with the binary, you can also receive a + copy of the source code on physical media by submitting a written + request to the address listed below or by sending an email to Oracle + using the following link: + http://www.oracle.com/goto/opensourcecode/request. + + Oracle America, Inc. + Attn: Senior Vice President + Development and Engineering Legal + 500 Oracle Parkway, 10th Floor + Redwood Shores, CA 94065 + + Your request should include: + + * The name of the binary for which you are requesting the source code + + * The name and version number of the Oracle product containing the + binary + + * The date you received the Oracle product + + * Your name + + * Your company name (if applicable) + + * Your return mailing address and email, and + + * A telephone number in the event we need to reach you. + + + We may charge you a fee to cover the cost of physical media and + processing. + + Your request must be sent + + a. within three (3) years of the date you received the Oracle product + that included the binary that is the subject of your request, or + + b. in the case of code licensed under the GPL v3 for as long as Oracle + offers spare parts or customer support for that product model. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_731.RULE b/src/licensedcode/data/rules/false-positive_731.RULE new file mode 100644 index 00000000000..8563ff95d23 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_731.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +LicensePrefix = "license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_732.RULE b/src/licensedcode/data/rules/false-positive_732.RULE new file mode 100644 index 00000000000..57a5e0da7f0 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_732.RULE @@ -0,0 +1,7 @@ +--- +is_false_positive: yes +notes: not a license +--- + +LicensePrefix = "license:"; +private \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_733.RULE b/src/licensedcode/data/rules/false-positive_733.RULE new file mode 100644 index 00000000000..f3e71a9e0dd --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_733.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +License licensesMetadata \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_734.RULE b/src/licensedcode/data/rules/false-positive_734.RULE new file mode 100644 index 00000000000..b14c9483c09 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_734.RULE @@ -0,0 +1,8 @@ +--- +is_false_positive: yes +notes: not a license +--- + +License; + licensesMetadata + other \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_735.RULE b/src/licensedcode/data/rules/false-positive_735.RULE new file mode 100644 index 00000000000..1865c856d1a --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_735.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +License License licensesMetadata \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_736.RULE b/src/licensedcode/data/rules/false-positive_736.RULE new file mode 100644 index 00000000000..3c37afeadd2 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_736.RULE @@ -0,0 +1,7 @@ +--- +is_false_positive: yes +notes: not a JSON license reference +--- + +global.json +license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_737.RULE b/src/licensedcode/data/rules/false-positive_737.RULE new file mode 100644 index 00000000000..bd2c0635750 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_737.RULE @@ -0,0 +1,10 @@ +--- +is_false_positive: yes +notes: this is not a license. Seen in https://github.com/liferay/liferay-portal/blob/00334ca6f9fb4d92f5e98c225b104f095ee8b21e/definitions/liferay-plugin-package_7_3_0.properties#L75C1-L83 +--- + +licenses= + #licenses=AGPL + #licenses=CCA + #licenses=GPL + #licenses=LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_131.RULE b/src/licensedcode/data/rules/free-unknown_131.RULE index 3787318c247..8e61132e9d3 100644 --- a/src/licensedcode/data/rules/free-unknown_131.RULE +++ b/src/licensedcode/data/rules/free-unknown_131.RULE @@ -1,6 +1,6 @@ --- license_expression: free-unknown -is_license_reference: yes +is_license_clue: yes is_continuous: yes relevance: 100 minimum_coverage: 100 @@ -8,4 +8,4 @@ notes: Rule based on an SPDX license name and/or ID. Since we do not track yet l languages, so this is a rule to deal with this in the short term --- -LAL-1.2 \ No newline at end of file +LAL-1.2 diff --git a/src/licensedcode/data/rules/freetype_19.RULE b/src/licensedcode/data/rules/freetype_19.RULE new file mode 100644 index 00000000000..b378cd366a6 --- /dev/null +++ b/src/licensedcode/data/rules/freetype_19.RULE @@ -0,0 +1,7 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 100 +--- + +The FreeType License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/freetype_or_gpl-3.0_1.RULE new file mode 100644 index 00000000000..60431e6fca5 --- /dev/null +++ b/src/licensedcode/data/rules/freetype_or_gpl-3.0_1.RULE @@ -0,0 +1,49 @@ +--- +license_expression: freetype OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - docs/GPLv2.TXT + - docs/FTL.TXT +--- + +FREETYPE LICENSES + +The FreeType 2 font engine is copyrighted work and cannot be used +legally without a software license. In order to make this project +usable to a vast majority of developers, we distribute it under two +mutually exclusive open-source licenses. + +This means that *you* must choose *one* of the two licenses described +below, then obey all its terms and conditions when using FreeType 2 in +any of your projects or products. + + - The FreeType License, found in the file `docs/FTL.TXT`, which is + similar to the original BSD license *with* an advertising clause + that forces you to explicitly cite the FreeType project in your + product's documentation. All details are in the license file. + This license is suited to products which don't use the GNU General + Public License. + + Note that this license is compatible to the GNU General Public + License version 3, but not version 2. + + - The GNU General Public License version 2, found in + `docs/GPLv2.TXT` (any later version can be used also), for + programs which already use the GPL. Note that the FTL is + incompatible with GPLv2 due to its advertisement clause. + +The contributed BDF and PCF drivers come with a license similar to +that of the X Window System. It is compatible to the above two +licenses (see files `src/bdf/README` and `src/pcf/README`). The same +holds for the source code files `src/base/fthash.c` and +`include/freetype/internal/fthash.h`; they wer part of the BDF driver +in earlier FreeType versions. + +The gzip module uses the zlib license (see `src/gzip/zlib.h`) which +too is compatible to the above two licenses. + +The MD5 checksum support (only used for debugging in development +builds) is in the public domain. + + +end of LICENSE.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_10.RULE b/src/licensedcode/data/rules/frontier-1.0_10.RULE new file mode 100644 index 00000000000..0acf26ce7c2 --- /dev/null +++ b/src/licensedcode/data/rules/frontier-1.0_10.RULE @@ -0,0 +1,9 @@ +--- +license_expression: frontier-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.spinwardstars.com/frontier/fal.html +--- + +http://www.spinwardstars.com/frontier/fal.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_11.RULE b/src/licensedcode/data/rules/frontier-1.0_11.RULE new file mode 100644 index 00000000000..6e52bbbd9bb --- /dev/null +++ b/src/licensedcode/data/rules/frontier-1.0_11.RULE @@ -0,0 +1,13 @@ +--- +license_expression: frontier-1.0 +is_license_notice: yes +--- + +* This program is free software; you can redistribute it and/or modify + * it under the terms of the "Frontier Artistic License" which comes + * with this Kit. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the Frontier Artistic License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_3.RULE b/src/licensedcode/data/rules/frontier-1.0_3.RULE new file mode 100644 index 00000000000..b940b48ec4a --- /dev/null +++ b/src/licensedcode/data/rules/frontier-1.0_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: frontier-1.0 +is_license_reference: yes +relevance: 100 +--- + +Frontier Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_4.RULE b/src/licensedcode/data/rules/frontier-1.0_4.RULE new file mode 100644 index 00000000000..d4742f29603 --- /dev/null +++ b/src/licensedcode/data/rules/frontier-1.0_4.RULE @@ -0,0 +1,15 @@ +--- +license_expression: frontier-1.0 +is_license_notice: yes +notes: See https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE +--- + +* TERMS AND CONDITIONS + * This program is free software; you can redistribute it and/or modify + * it under the terms of the "Frontier Artistic License" which comes + * with this Kit. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the Frontier Artistic License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_5.RULE b/src/licensedcode/data/rules/frontier-1.0_5.RULE new file mode 100644 index 00000000000..5a7282ed370 --- /dev/null +++ b/src/licensedcode/data/rules/frontier-1.0_5.RULE @@ -0,0 +1,10 @@ +--- +license_expression: frontier-1.0 +is_license_notice: yes +notes: See https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE +--- + +* TERMS AND CONDITIONS + * This program is free software; you can redistribute it and/or modify + * it under the terms of the "Frontier Artistic License" which comes + * with this Kit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_6.RULE b/src/licensedcode/data/rules/frontier-1.0_6.RULE new file mode 100644 index 00000000000..b92d0953c2b --- /dev/null +++ b/src/licensedcode/data/rules/frontier-1.0_6.RULE @@ -0,0 +1,9 @@ +--- +license_expression: frontier-1.0 +is_license_notice: yes +notes: See https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE +--- + +* This program is free software; you can redistribute it and/or modify + * it under the terms of the "Frontier Artistic License" which comes + * with this Kit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_7.RULE b/src/licensedcode/data/rules/frontier-1.0_7.RULE new file mode 100644 index 00000000000..2ac6726874a --- /dev/null +++ b/src/licensedcode/data/rules/frontier-1.0_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: frontier-1.0 +is_license_notice: yes +relevance: 100 +notes: See https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE +--- + +you can redistribute it and/or modify it under the terms of the "Frontier Artistic License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_8.RULE b/src/licensedcode/data/rules/frontier-1.0_8.RULE new file mode 100644 index 00000000000..be350783df0 --- /dev/null +++ b/src/licensedcode/data/rules/frontier-1.0_8.RULE @@ -0,0 +1,22 @@ +--- +license_expression: frontier-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.spinwardstars.com/frontier/fal.html +--- + +* TERMS AND CONDITIONS + * This program is free software; you can redistribute it and/or modify + * it under the terms of the "Frontier Artistic License" which comes + * with this Kit. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the Frontier Artistic License for more details. + * + * + */ + +The "Frontier Artistic License" may be found at + http://www.spinwardstars.com/frontier/fal.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_9.RULE b/src/licensedcode/data/rules/frontier-1.0_9.RULE new file mode 100644 index 00000000000..43e8baf670e --- /dev/null +++ b/src/licensedcode/data/rules/frontier-1.0_9.RULE @@ -0,0 +1,10 @@ +--- +license_expression: frontier-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.spinwardstars.com/frontier/fal.html +--- + +The "Frontier Artistic License" may be found at + http://www.spinwardstars.com/frontier/fal.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_31.RULE b/src/licensedcode/data/rules/generic-cla_31.RULE new file mode 100644 index 00000000000..9af5da5d54a --- /dev/null +++ b/src/licensedcode/data/rules/generic-cla_31.RULE @@ -0,0 +1,12 @@ +--- +license_expression: generic-cla +is_license_notice: yes +--- + +Contributions to the collaboration shall not be considered confidential. + +Each contributor represents and warrants that it has the right and +authority to license copyright in its contributions to the collaboration. + +Each contributor agrees to license the copyright in the contributions +under the Modified (2-clause or 3-clause) BSD License or the Clear BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_32.RULE b/src/licensedcode/data/rules/generic-cla_32.RULE new file mode 100644 index 00000000000..3e791a9da7d --- /dev/null +++ b/src/licensedcode/data/rules/generic-cla_32.RULE @@ -0,0 +1,9 @@ +--- +license_expression: generic-cla +is_license_text: yes +notes: https://github.com/anyproto/open/blob/main/templates/CLA.md +--- + +I hereby grant and its successors or assignees permission to use, copy, modify, distribute, and sub-license my contributions on any terms they like, under all my rights in my contributions. A contribution includes anything I submit to the project. I am giving them this license in order to make it possible for them to accept my contributions into their project. + +As far as the law allows, my contributions come as is, without any warranty or condition, and I will not be liable to anyone for any damages related to this software or this license, under any kind of legal claim. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_48.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_48.RULE new file mode 100644 index 00000000000..443537d269b --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_48.RULE @@ -0,0 +1,17 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/ +--- + +Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free Documentation + License, Version 1.1 or any later version published + by the Free Software Foundation with no Invariant Sections, no + Front-Cover Texts, and no Back-Cover Texts. You may obtain a copy + of the GNU Free Documentation License from + the Free Software Foundation by visiting their Web site or by writing to: + Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1115.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1115.RULE new file mode 100644 index 00000000000..59cb5658eba --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1115.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +The iconv _program_ and the documentation are under GPL, see file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1116.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1116.RULE new file mode 100644 index 00000000000..3c884a6fac2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1116.RULE @@ -0,0 +1,35 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/ +--- + +License + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public + License as published by the Free Software Foundation; + either version 2 of the License, or (at your option) any later + version. + + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + + A copy of the GNU General Public License is + included as an appendix to the GNOME Users + Guide. You may also obtain a copy of the + GNU General Public License from the Free + Software Foundation by visiting their Web site or by writing to +
+ Free Software Foundation, Inc. + 59 Temple Place - Suite 330 + Boston, MA 02111-1307 + USA +
+
\ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1117.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1117.RULE new file mode 100644 index 00000000000..25ac5829595 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1117.RULE @@ -0,0 +1,21 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + +* GNU General Public License v2.0 or later: + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1118.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1118.RULE new file mode 100644 index 00000000000..81f1d564d27 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1118.RULE @@ -0,0 +1,19 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + +The program is free software: you can redistribute +it and/or modify it under the terms of the GNU General Public License +as published by the Free Software Foundation, either version 2 of the +License, or any newer version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_commercial-license_1.RULE new file mode 100644 index 00000000000..891e6407b41 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_commercial-license_1.RULE @@ -0,0 +1,11 @@ +--- +license_expression: (gpl-2.0-plus AND (gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1)) OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +ignorable_urls: + - https://ckeditor.com/legal/ckeditor-oss-license +--- + +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_or_commercial-license_1.RULE new file mode 100644 index 00000000000..786d4d36c26 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_or_commercial-license_1.RULE @@ -0,0 +1,37 @@ +--- +license_expression: gpl-2.0-plus WITH generic-exception OR commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.jahia.com/license +ignorable_emails: + - sales@jahia.com +--- + +* This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * As a special exception to the terms and conditions of version 2.0 of + * the GPL (or any later version), you may redistribute this Program in connection + * with Free/Libre and Open Source Software ("FLOSS") applications as described + * in Jahia's FLOSS exception. You should have received a copy of the text + * describing the FLOSS exception, and it is also available here: + * http://www.jahia.com/license + * + * Commercial and Supported Versions of the program (dual licensing): + * alternatively, commercial and supported versions of the program may be used + * in accordance with the terms and conditions contained in a separate + * written agreement between you and Jahia Solutions Group SA. + * + * If you are unsure which license is appropriate for your use, + * please contact the sales department at sales@jahia.com. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1417.RULE b/src/licensedcode/data/rules/gpl-2.0_1417.RULE new file mode 100644 index 00000000000..617168b384c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1417.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - GPL2_0.txt +--- + +GPL2_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1418.RULE b/src/licensedcode/data/rules/gpl-2.0_1418.RULE new file mode 100644 index 00000000000..7bc7685fa33 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1418.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + + + GNU General Public License + http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1419.RULE b/src/licensedcode/data/rules/gpl-2.0_1419.RULE new file mode 100644 index 00000000000..287a5fb5fd2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1419.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + + + GNU General Public License + http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1420.RULE b/src/licensedcode/data/rules/gpl-2.0_1420.RULE new file mode 100644 index 00000000000..6a2544d388b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1420.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +licensed under the terms of the GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1421.RULE b/src/licensedcode/data/rules/gpl-2.0_1421.RULE new file mode 100644 index 00000000000..a7f35752e44 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1421.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +licensed under the terms of the GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1422.RULE b/src/licensedcode/data/rules/gpl-2.0_1422.RULE new file mode 100644 index 00000000000..4997e9e53fb --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1422.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +licensed under version 2 (only) of the GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1423.RULE b/src/licensedcode/data/rules/gpl-2.0_1423.RULE new file mode 100644 index 00000000000..0503ef0e1ca --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1423.RULE @@ -0,0 +1,18 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +* is free software: you can redistribute it + * and/or modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 2 of the License. + * + * is distributed in the hope that it will be + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General + * Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with . If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1424.RULE b/src/licensedcode/data/rules/gpl-2.0_1424.RULE new file mode 100644 index 00000000000..28b9157926c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1424.RULE @@ -0,0 +1,18 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +* is free software: you can redistribute it + * and/or modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation, either version 2.. + * + * is distributed in the hope that it will be + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General + * Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with . If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1425.RULE b/src/licensedcode/data/rules/gpl-2.0_1425.RULE new file mode 100644 index 00000000000..9e0f6f3b0a3 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1425.RULE @@ -0,0 +1,17 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public Licence as published by the Free Software +# Foundation; either version 2 of the Licence. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public Licence for more +# details. +# +# You should have received a copy of the GNU General Public Licence along with +# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin +# Street, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1426.RULE b/src/licensedcode/data/rules/gpl-2.0_1426.RULE new file mode 100644 index 00000000000..9fac0a4a1d0 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1426.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + +You can redistribute it and/or modify it under the terms of the GNU General +Public License as published by the Free Software Foundation, either version 2 +of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_universal-foss-exception-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_universal-foss-exception-1.0_1.RULE new file mode 100644 index 00000000000..c44870e974d --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_universal-foss-exception-1.0_1.RULE @@ -0,0 +1,31 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 AND gpl-2.0 WITH universal-foss-exception-1.0 +is_license_notice: yes +ignorable_urls: + - http://oss.oracle.com/licenses/universal-foss-exception +--- + +This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License, version 2.0, as published by the +# Free Software Foundation. +# +# This program is also distributed with certain software (including but not +# limited to OpenSSL) that is licensed under separate terms, as designated in a +# particular file or component or in included license documentation. The +# authors of MySQL hereby grant you an additional permission to link the +# program and your derivative works with the separately licensed software that +# they have included with MySQL. +# +# Without limiting anything contained in the foregoing, this file, which is +# part of MySQL Connector/J, is also subject to the Universal FOSS Exception, +# version 1.0, a copy of which can be found at +# http://oss.oracle.com/licenses/universal-foss-exception. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, +# for more details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_universal-foss-exception-1.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_universal-foss-exception-1.0_2.RULE new file mode 100644 index 00000000000..75c7d08d6a2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_universal-foss-exception-1.0_2.RULE @@ -0,0 +1,14 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 AND gpl-2.0 WITH universal-foss-exception-1.0 +is_license_reference: yes +minimum_coverage: 100 +referenced_filenames: + - LICENSE +--- + +License information can be found in the LICENSE file. + +This distribution may include materials developed by third parties. +For license and attribution notices for these materials, please refer to the LICENSE file. + +For more information on MySQL Connector \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_universal-foss-exception-1.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_universal-foss-exception-1.0_3.RULE new file mode 100644 index 00000000000..dfde88be919 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_universal-foss-exception-1.0_3.RULE @@ -0,0 +1,49 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 AND gpl-2.0 WITH universal-foss-exception-1.0 +is_license_notice: yes +ignorable_urls: + - http://oss.oracle.com/licenses/universal-foss-exception + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + +This software is released under version 2 of the GNU + General Public License (GPLv2), as set forth below, with the following + additional permissions: + + This distribution of MySQL Connector/J 8.0 is distributed with certain + software that is licensed under separate terms, as designated in a + particular file or component or in the license documentation. Without + limiting your rights under the GPLv2, the authors of MySQL hereby grant + you an additional permission to link the program and your derivative + works with the separately licensed software that they have included + with the program. + + Without limiting the foregoing grant of rights under the GPLv2 and + additional permission as to separately licensed software, this + Connector is also subject to the Universal FOSS Exception, version 1.0, + a copy of which is reproduced below and can also be found along with + its FAQ at http://oss.oracle.com/licenses/universal-foss-exception. + + +Election of GPLv2 + + For the avoidance of doubt, except that if any license choice other + than GPL or LGPL is available it will apply instead, Oracle elects to + use only the General Public License version 2 (GPLv2) at this time for + any software where a choice of GPL license versions is made available + with the language indicating that GPLv2 or any later version may be + used, or where a choice of which version of the GPL is applied is + otherwise unspecified. + +GNU General Public License Version 2.0, June 1991 + +The following applies to all products licensed under the GNU General +Public License, Version 2.0: You may not use the identified files +except in compliance with the GNU General Public License, Version +2.0 (the "License.") You may obtain a copy of the License at +http://www.gnu.org/licenses/gpl-2.0.txt. A copy of the license is +also reproduced below. Unless required by applicable law or agreed +to in writing, software distributed under the License is distributed +on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +either express or implied. See the License for the specific language +governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_7.RULE new file mode 100644 index 00000000000..c7a00865816 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_7.RULE @@ -0,0 +1,416 @@ +--- +license_expression: gpl-2.0 WITH universal-foss-exception-1.0 +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +Everyone is permitted to copy and distribute verbatim +copies of this license document, but changing it is not +allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, +and (2) offer you this license which gives you legal permission to +copy, distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, +we want its recipients to know that what they have is not the original, +so that any problems introduced by others will not reflect on the +original authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software + interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as +a special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new +versions of the General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Program does not specify a +version number of this License, you may choose any version ever +published by the Free Software Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the +author to ask for permission. For software which is copyrighted by the +Free Software Foundation, write to the Free Software Foundation; we +sometimes make exceptions for this. Our decision will be guided by the +two goals of preserving the free status of all derivatives of our free +software and of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, +EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS +WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + + the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details + type 'show w'. This is free software, and you are welcome + to redistribute it under certain conditions; type 'show c' + for details. + +The hypothetical commands 'show w' and 'show c' should show the +appropriate parts of the General Public License. Of course, the +commands you use may be called something other than 'show w' and +'show c'; they could even be mouse-clicks or menu items--whatever +suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + program 'Gnomovision' (which makes passes at compilers) written + by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, +you may consider it more useful to permit linking proprietary +applications with the library. If this is what you want to do, use +the GNU Lesser General Public License instead of this License. + + ====================================================================== + ====================================================================== + +The Universal FOSS Exception, Version 1.0 + + In addition to the rights set forth in the other license(s) included in + the distribution for this software, data, and/or documentation + (collectively the "Software", and such licenses collectively with this + additional permission the "Software License"), the copyright holders + wish to facilitate interoperability with other software, data, and/or + documentation distributed with complete corresponding source under a + license that is OSI-approved and/or categorized by the FSF as free + (collectively "Other FOSS"). We therefore hereby grant the following + additional permission with respect to the use and distribution of the + Software with Other FOSS, and the constants, function signatures, data + structures and other invocation methods used to run or interact with + each of them (as to each, such software's "Interfaces"): + + i. The Software's Interfaces may, to the extent permitted by the + license of the Other FOSS, be copied into, used and distributed in + the Other FOSS in order to enable interoperability, without + requiring a change to the license of the Other FOSS other than as + to any Interfaces of the Software embedded therein. The Software's + Interfaces remain at all times under the Software License, + including without limitation as used in the Other FOSS (which upon + any such use also then contains a portion of the Software under the + Software License). + + ii. The Other FOSS's Interfaces may, to the extent permitted by the + license of the Other FOSS, be copied into, used and distributed in + the Software in order to enable interoperability, without requiring + that such Interfaces be licensed under the terms of the Software + License or otherwise altering their original terms, if this does + not require any portion of the Software other than such Interfaces + to be licensed under the terms other than the Software License. + + iii. If only Interfaces and no other code is copied between the + Software and the Other FOSS in either direction, the use and/or + distribution of the Software with the Other FOSS shall not be + deemed to require that the Other FOSS be licensed under the license + of the Software, other than as to any Interfaces of the Software + copied into the Other FOSS. This includes, by way of example and + without limitation, statically or dynamically linking the Software + together with Other FOSS after enabling interoperability using the + Interfaces of one or both, and distributing the resulting + combination under different licenses for the respective portions + thereof. For avoidance of doubt, a license which is OSI-approved or + categorized by the FSF as free, includes, for the purpose of this + permission, such licenses with additional permissions, and any + license that has previously been so approved or categorized as + free, even if now deprecated or otherwise no longer recognized as + approved or free. Nothing in this additional permission grants any + right to distribute any portion of the Software on terms other than + those of the Software License or grants any additional permission + of any kind for use or distribution of the Software in conjunction + with software other than Other FOSS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_581.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_581.RULE new file mode 100644 index 00000000000..f08708ba051 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_581.RULE @@ -0,0 +1,19 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This plugin is free software: you can redistribute +it and/or modify it under the terms of the GNU General Public License as +published by the Free Software Foundation, either version 3 of the License, or +later version. + +This plugin is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this plugin. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_582.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_582.RULE new file mode 100644 index 00000000000..e9d45a01159 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_582.RULE @@ -0,0 +1,16 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://gplv3.fsf.org/ +--- + +' This header is free software: you can redistribute +' it and/or modify it under the terms of the GNU General Public +' License as published by the Free Software Foundation, either +' version 3 of the License, or (at your option) any later +' version. For details please refer to: http://gplv3.fsf.org/ +' +' This header is distributed in the hope that it will be +' useful, but WITHOUT ANY WARRANTY; without even the implied warranty of +' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_583.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_583.RULE new file mode 100644 index 00000000000..cbe84093706 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_583.RULE @@ -0,0 +1,18 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + +# is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the license. +# +# is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_560.RULE b/src/licensedcode/data/rules/gpl-3.0_560.RULE new file mode 100644 index 00000000000..ecd39268660 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_560.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + +you can redistribute it and/or modify it under the terms of +* the GNU General Public License as published by the Free Software Foundation, either version +* 3 of the License.See LICENSE for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_561.RULE b/src/licensedcode/data/rules/gpl-3.0_561.RULE new file mode 100644 index 00000000000..8a2d0ad2213 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_561.RULE @@ -0,0 +1,20 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +is free software: you can redistribute +it and/or modify it under the terms of the GNU General Public License +as published by the Free Software Foundation, either version 3 of the +License. + + is distributed in the hope that it will +be useful, but WITHOUT ANY WARRANTY; without even the implied warranty +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with . +If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_562.RULE b/src/licensedcode/data/rules/gpl-3.0_562.RULE new file mode 100644 index 00000000000..835df05801b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_562.RULE @@ -0,0 +1,19 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +* is free software: you can redistribute + * it and/or modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3. + * + * is distributed in the hope that it will + * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with . + * If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_563.RULE b/src/licensedcode/data/rules/gpl-3.0_563.RULE new file mode 100644 index 00000000000..8ca2998f0d6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_563.RULE @@ -0,0 +1,16 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + +# This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation, either version 3 of the License + +# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# See the GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License along with this program. +# If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_564.RULE b/src/licensedcode/data/rules/gpl-3.0_564.RULE new file mode 100644 index 00000000000..68701f26f0a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_564.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-GPLv3.txt + - LICENSE-GPLv3 +--- + +This project is under LICENSE-GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_565.RULE b/src/licensedcode/data/rules/gpl-3.0_565.RULE new file mode 100644 index 00000000000..1ab3bb4e7d2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_565.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +licensed under the GPL version 3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_566.RULE b/src/licensedcode/data/rules/gpl-3.0_566.RULE new file mode 100644 index 00000000000..cabaeef5f28 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_566.RULE @@ -0,0 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + +License + +This sub-project is licensed under GPLv3 license, see the provided "LICENSE" file or http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_567.RULE b/src/licensedcode/data/rules/gpl-3.0_567.RULE new file mode 100644 index 00000000000..64063a1a7f9 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_567.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + +This sub-project is licensed under GPLv3 license, see the provided "LICENSE" file or http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_568.RULE b/src/licensedcode/data/rules/gpl-3.0_568.RULE new file mode 100644 index 00000000000..e3e2883852c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_568.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + +project is licensed under GPLv3 license, see the provided "LICENSE" file or http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_569.RULE b/src/licensedcode/data/rules/gpl-3.0_569.RULE new file mode 100644 index 00000000000..ae5fefc71e5 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_569.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + +licensed under GPLv3 license, see the provided "LICENSE" file or http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_570.RULE b/src/licensedcode/data/rules/gpl-3.0_570.RULE new file mode 100644 index 00000000000..e54dbbda284 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_570.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +licensed under GPLv3 license, see the provided "LICENSE" file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_571.RULE b/src/licensedcode/data/rules/gpl-3.0_571.RULE new file mode 100644 index 00000000000..a6d25ed6123 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_571.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +licensed under GPLv3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_572.RULE b/src/licensedcode/data/rules/gpl-3.0_572.RULE new file mode 100644 index 00000000000..89c49715899 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_572.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +It under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License. + You should have received a copy of the GNU General Public License + along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_573.RULE b/src/licensedcode/data/rules/gpl-3.0_573.RULE new file mode 100644 index 00000000000..f2a291200ff --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_573.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + +This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_6.RULE b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_6.RULE new file mode 100644 index 00000000000..8874d3844e9 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_6.RULE @@ -0,0 +1,14 @@ +--- +license_expression: gpl-3.0 AND other-copyleft +is_license_notice: yes +notes: Seen in https://raw.githubusercontent.com/levkovigor/STM32-OTA-ESP8266-for-windows/7e6da79e0524afaec866907cb224bec607426ab6/README.md + Has extra attribution requirements, that are likely OK with the GPL +ignorable_urls: + - https://github.com/csnol/STM32-OTA +--- + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, but you have to keep below webserver +code in your sketch for sharing. +> Version 1.0 by CSNOL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_3.RULE b/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_3.RULE new file mode 100644 index 00000000000..853dc937d42 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_3.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0 AND other-permissive +is_license_notice: yes +--- + +Additional permission under GNU GPL version 3 section 7 + +If you modify this Program, or any covered work, by linking or combining it with +any of the below libraries (or a modified version of that library), containing +parts covered by the terms of any of the below libraries, the licensors of this +Program grant you additional permission to convey the resulting work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf-trust_11.RULE b/src/licensedcode/data/rules/ietf-trust_11.RULE new file mode 100644 index 00000000000..99934a3a48a --- /dev/null +++ b/src/licensedcode/data/rules/ietf-trust_11.RULE @@ -0,0 +1,44 @@ +--- +license_expression: ietf-trust +is_license_text: yes +ignorable_urls: + - http://www.ietf.org/ipr +ignorable_emails: + - ietf-ipr@ietf.org +--- + +This document is subject to the rights, licenses and restrictions + contained in BCP 78, and except as set forth therein, the authors + retain all their rights. + + This document and the information contained herein are provided on an + "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS + OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND + THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF + THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED + WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + +Intellectual Property + + The IETF takes no position regarding the validity or scope of any + Intellectual Property Rights or other rights that might be claimed to + pertain to the implementation or use of the technology described in + this document or the extent to which any license under such rights + might or might not be available; nor does it represent that it has + made any independent effort to identify any such rights. Information + on the procedures with respect to rights in RFC documents can be + found in BCP 78 and BCP 79. + + Copies of IPR disclosures made to the IETF Secretariat and any + assurances of licenses to be made available, or the result of an + attempt made to obtain a general license or permission for the use of + such proprietary rights by implementers or users of this + specification can be obtained from the IETF on-line IPR repository at + http://www.ietf.org/ipr. + + The IETF invites any interested party to bring to its attention any + copyrights, patents or patent applications, or other proprietary + rights that may cover technology that may be required to implement + this standard. Please address the information to the IETF at + ietf-ipr@ietf.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_102.RULE b/src/licensedcode/data/rules/isc_102.RULE new file mode 100644 index 00000000000..f174eb2f28c --- /dev/null +++ b/src/licensedcode/data/rules/isc_102.RULE @@ -0,0 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + +licensed under ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_103.RULE b/src/licensedcode/data/rules/isc_103.RULE new file mode 100644 index 00000000000..3362115ce3d --- /dev/null +++ b/src/licensedcode/data/rules/isc_103.RULE @@ -0,0 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + +licensed under the copyfree ISC License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_104.RULE b/src/licensedcode/data/rules/isc_104.RULE new file mode 100644 index 00000000000..d71c3063cee --- /dev/null +++ b/src/licensedcode/data/rules/isc_104.RULE @@ -0,0 +1,8 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + +licensed under the liberal ISC license, so it may be used in +open source or commercial projects. \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_1.RULE b/src/licensedcode/data/rules/json_1.RULE index ac1343b9193..a65534ef717 100644 --- a/src/licensedcode/data/rules/json_1.RULE +++ b/src/licensedcode/data/rules/json_1.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.json.org/license.html --- -License: provided without support or warranty (http://www.json.org/license.html \ No newline at end of file +License: provided without support or warranty {{http://www.json.org/license.html}} diff --git a/src/licensedcode/data/rules/json_11.RULE b/src/licensedcode/data/rules/json_11.RULE index 0426e59b604..5aaae771eca 100644 --- a/src/licensedcode/data/rules/json_11.RULE +++ b/src/licensedcode/data/rules/json_11.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License terms appear in JSON License . \ No newline at end of file +License terms appear in {{JSON License}}. diff --git a/src/licensedcode/data/rules/json_12.RULE b/src/licensedcode/data/rules/json_12.RULE index 9ac69ce2a62..d02a6a0d849 100644 --- a/src/licensedcode/data/rules/json_12.RULE +++ b/src/licensedcode/data/rules/json_12.RULE @@ -25,7 +25,7 @@ ignorable_urls: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - The Software shall be used for Good, not Evil. + {{The Software shall be used for Good, not Evil.}} THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN @@ -34,4 +34,4 @@ ignorable_urls: SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - \ No newline at end of file + diff --git a/src/licensedcode/data/rules/json_13.RULE b/src/licensedcode/data/rules/json_13.RULE index daf19304a5c..b1e0174e4ec 100644 --- a/src/licensedcode/data/rules/json_13.RULE +++ b/src/licensedcode/data/rules/json_13.RULE @@ -2,6 +2,7 @@ license_expression: json is_license_reference: yes relevance: 100 +minimum_coverage: 100 --- -licenses.nuget.org/JSON \ No newline at end of file +{{licenses.nuget.org/JSON}} diff --git a/src/licensedcode/data/rules/json_14.RULE b/src/licensedcode/data/rules/json_14.RULE index e64f40f3198..07469cb4642 100644 --- a/src/licensedcode/data/rules/json_14.RULE +++ b/src/licensedcode/data/rules/json_14.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/JSON --- -{{JSON}} https://spdx.org/licenses/JSON \ No newline at end of file +{{JSON}} {{ https://spdx.org/licenses/JSON }} diff --git a/src/licensedcode/data/rules/json_15.RULE b/src/licensedcode/data/rules/json_15.RULE index b5a13515ac6..e150c64c497 100644 --- a/src/licensedcode/data/rules/json_15.RULE +++ b/src/licensedcode/data/rules/json_15.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/JSON --- -LICENSE {{JSON}} https://spdx.org/licenses/JSON \ No newline at end of file +LICENSE {{JSON}} {{ https://spdx.org/licenses/JSON }} diff --git a/src/licensedcode/data/rules/json_16.RULE b/src/licensedcode/data/rules/json_16.RULE index dbfc6b9279c..66a8061c35a 100644 --- a/src/licensedcode/data/rules/json_16.RULE +++ b/src/licensedcode/data/rules/json_16.RULE @@ -9,4 +9,3 @@ ignorable_urls: {{The JSON License}} http://json.org/license.html - repo \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_17.RULE b/src/licensedcode/data/rules/json_17.RULE index 5b468f6d4c2..315119ff48d 100644 --- a/src/licensedcode/data/rules/json_17.RULE +++ b/src/licensedcode/data/rules/json_17.RULE @@ -24,10 +24,10 @@ following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The Software shall be used for Good, not Evil. +i{{The Software shall be used for Good, not Evil.}} THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/licensedcode/data/rules/json2.RULE b/src/licensedcode/data/rules/json_18.RULE similarity index 63% rename from src/licensedcode/data/rules/json2.RULE rename to src/licensedcode/data/rules/json_18.RULE index 1bc727f2c59..22324615000 100644 --- a/src/licensedcode/data/rules/json2.RULE +++ b/src/licensedcode/data/rules/json_18.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.json.org/license.html --- -You can see the license term at http://www.JSON.org/license.html \ No newline at end of file +You can see the license term at {{ http://www.JSON.org/license.html }} diff --git a/src/licensedcode/data/rules/json.RULE b/src/licensedcode/data/rules/json_19.RULE similarity index 76% rename from src/licensedcode/data/rules/json.RULE rename to src/licensedcode/data/rules/json_19.RULE index 48e3009117e..91615d15c52 100644 --- a/src/licensedcode/data/rules/json.RULE +++ b/src/licensedcode/data/rules/json_19.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.json.org/license.html --- -http://www.json.org/license.html \ No newline at end of file +{{ http://www.json.org/license.html }} diff --git a/src/licensedcode/data/rules/json3.RULE b/src/licensedcode/data/rules/json_20.RULE similarity index 94% rename from src/licensedcode/data/rules/json3.RULE rename to src/licensedcode/data/rules/json_20.RULE index 36586206dff..0ee0c402ef2 100644 --- a/src/licensedcode/data/rules/json3.RULE +++ b/src/licensedcode/data/rules/json_20.RULE @@ -11,6 +11,6 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The Software shall be used for Good, not Evil. +The Software {{shall be used for Good, not Evil.}} -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/licensedcode/data/rules/json4.RULE b/src/licensedcode/data/rules/json_21.RULE similarity index 54% rename from src/licensedcode/data/rules/json4.RULE rename to src/licensedcode/data/rules/json_21.RULE index 2355dbba97f..b40d1a8052c 100644 --- a/src/licensedcode/data/rules/json4.RULE +++ b/src/licensedcode/data/rules/json_21.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 99 --- -Open Source Software Licensed Under the JSON License: \ No newline at end of file +Open Source Software Licensed Under the {{JSON License}}: diff --git a/src/licensedcode/data/rules/json_3.RULE b/src/licensedcode/data/rules/json_3.RULE index f9da704ad34..c0b1dd88be9 100644 --- a/src/licensedcode/data/rules/json_3.RULE +++ b/src/licensedcode/data/rules/json_3.RULE @@ -16,11 +16,11 @@ subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The Software shall be used for Good, not Evil. +{{The Software shall be used for Good, not Evil.}} THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/licensedcode/data/rules/json_4.RULE b/src/licensedcode/data/rules/json_4.RULE index 4d7f3cd21aa..007547e9fa2 100644 --- a/src/licensedcode/data/rules/json_4.RULE +++ b/src/licensedcode/data/rules/json_4.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -JSON JSON License \ No newline at end of file +JSON {{ JSON License}} diff --git a/src/licensedcode/data/rules/json_5.RULE b/src/licensedcode/data/rules/json_5.RULE index 948f6c798a9..c9c02b96f32 100644 --- a/src/licensedcode/data/rules/json_5.RULE +++ b/src/licensedcode/data/rules/json_5.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -JSON License \ No newline at end of file +{{JSON License}} diff --git a/src/licensedcode/data/rules/json_6.RULE b/src/licensedcode/data/rules/json_6.RULE index 9e77567bf55..2d08be3e870 100644 --- a/src/licensedcode/data/rules/json_6.RULE +++ b/src/licensedcode/data/rules/json_6.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: JSON License \ No newline at end of file +name: {{JSON License}} diff --git a/src/licensedcode/data/rules/json_7.RULE b/src/licensedcode/data/rules/json_7.RULE index 541dda599a4..a71fd224202 100644 --- a/src/licensedcode/data/rules/json_7.RULE +++ b/src/licensedcode/data/rules/json_7.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -JSON License JSON \ No newline at end of file +JSON {{License JSON}} diff --git a/src/licensedcode/data/rules/json_url_1.RULE b/src/licensedcode/data/rules/json_url_1.RULE index a592586353c..6d624877b6c 100644 --- a/src/licensedcode/data/rules/json_url_1.RULE +++ b/src/licensedcode/data/rules/json_url_1.RULE @@ -1,9 +1,10 @@ --- license_expression: json is_license_reference: yes -relevance: 95 +relevance: 100 +minimum_coverage: 100 ignorable_urls: - https://spdx.org/licenses/json --- -https://spdx.org/licenses/json \ No newline at end of file +https://spdx.org/licenses/json diff --git a/src/licensedcode/data/rules/json_url_2.RULE b/src/licensedcode/data/rules/json_url_2.RULE index 092b087356b..a5c1584cb5a 100644 --- a/src/licensedcode/data/rules/json_url_2.RULE +++ b/src/licensedcode/data/rules/json_url_2.RULE @@ -1,9 +1,10 @@ --- license_expression: json is_license_reference: yes -relevance: 95 +relevance: 100 +minimum_coverage: 100 ignorable_urls: - https://spdx.org/licenses/json.html --- -https://spdx.org/licenses/json.html \ No newline at end of file +https://spdx.org/licenses/json.html diff --git a/src/licensedcode/data/rules/jython_1.RULE b/src/licensedcode/data/rules/jython_1.RULE new file mode 100644 index 00000000000..a6e150dcca4 --- /dev/null +++ b/src/licensedcode/data/rules/jython_1.RULE @@ -0,0 +1,9 @@ +--- +license_expression: jython +is_license_tag: yes +ignorable_urls: + - http://www.jython.org/Project/license.html +--- + +name: {{Jython Software License}} +url: http://www.jython.org/Project/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/jython_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/jython_and_apache-2.0_1.RULE new file mode 100644 index 00000000000..68b69fb6cea --- /dev/null +++ b/src/licensedcode/data/rules/jython_and_apache-2.0_1.RULE @@ -0,0 +1,30 @@ +--- +license_expression: jython AND apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE_CPython.txt + - LICENSE_Apache.txt +ignorable_authors: + - Brian Zimmer +--- + +Jython 2.0 and 2.1 were developed +under the Jython specific license below. + +From the 2.2 release on, Jython contributors have licensed their +contributions to the Python Software Foundation under a Contributor +Agreement, so as to permit distribution under the Python Software Foundation +license. + +The Python standard library developed for CPython is also used in Jython, and +(like Jython itself) is provided under the Python Software Foundation +license. See the file LICENSE_CPython.txt for details. + +The zxJDBC package was written by Brian Zimmer and originally licensed +under the GNU Public License. The package is now licensed to the Python +Software Foundation under a Contributor Agreement, so as to permit +distribution under the Python Software Foundation license. + +Elements of the supporting libraries (appearing renamed in some Jython JARs) +are covered by the Apache Software License. See the file LICENSE_Apache.txt +for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_570.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_570.RULE new file mode 100644 index 00000000000..72be1cec7f3 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_570.RULE @@ -0,0 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + +Copyright +The libiconv and libcharset _libraries_ and their header files are under LGPL, +see file COPYING.LIB. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_571.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_571.RULE new file mode 100644 index 00000000000..e5c5e31ce44 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_571.RULE @@ -0,0 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +Change the license to LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_572.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_572.RULE new file mode 100644 index 00000000000..13074be5549 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_572.RULE @@ -0,0 +1,18 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +notes: https://github.com/zhuker/lamejs/blob/master/LICENSE +--- + +Can I use LAME in my commercial program? + +Yes, you can, under the restrictions of the LGPL. The easiest +way to do this is to: + +1. Link to LAME as separate jar (lame.min.js or lame.all.js) + +2. Fully acknowledge that you are using LAME, and give a link + to our web site, lame.sourceforge.net + +3. If you make modifications to LAME, you *must* release these + these modifications back to the LAME project, under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_474.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_474.RULE new file mode 100644 index 00000000000..8ad3cf4f6f8 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_474.RULE @@ -0,0 +1,16 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + +* This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * Below is a copy of the GNU Lesser General Public Licens \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_2.RULE new file mode 100644 index 00000000000..e31b2d47596 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_2.RULE @@ -0,0 +1,25 @@ +--- +license_expression: lgpl-2.1-plus OR commercial-license +is_license_notice: yes +referenced_filenames: + - COPYING +--- + +## License + +GNU is Free Software; you can redistribute it and/or modify it under the +terms of the [GNU Lesser General Public License] as published by the Free Software +Foundation; either version 2.1 of the License, or (at your option) any later +version. + +GNU is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A +PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License along +with GNU , in a file named COPYING; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +### Commercial licensing + +For commercial licensing options, contact \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_445.RULE b/src/licensedcode/data/rules/lgpl-2.1_445.RULE new file mode 100644 index 00000000000..f40751249ed --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_445.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + +[GNU Lesser General Public License]: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_446.RULE b/src/licensedcode/data/rules/lgpl-2.1_446.RULE new file mode 100644 index 00000000000..8efb808e766 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_446.RULE @@ -0,0 +1,16 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +** This program is free software: you can redistribute it and/or modify +** it under the terms of the GNU Lesser General Public License as +** published by the Free Software Foundation, either version 2.1. This +** program is distributed in the hope that it will be useful, but WITHOUT +** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +** FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +** for more details. You should have received a copy of the GNU General +** Public License along with this program. If not, see +** . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_447.RULE b/src/licensedcode/data/rules/lgpl-2.1_447.RULE new file mode 100644 index 00000000000..7db1c824d5a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_447.RULE @@ -0,0 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + +projects are released under LGPL v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_448.RULE b/src/licensedcode/data/rules/lgpl-2.1_448.RULE new file mode 100644 index 00000000000..e3ca36c18d7 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_448.RULE @@ -0,0 +1,17 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +* This header is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation, either version 2.1 + * + * This header is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * You should have received a copy of the GNU Lesser General Public License + * along with this header. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_449.RULE b/src/licensedcode/data/rules/lgpl-2.1_449.RULE new file mode 100644 index 00000000000..2a2f0a20efb --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_449.RULE @@ -0,0 +1,17 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +* This library is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation, either version 2.1 of the License. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * You should have received a copy of the GNU Lesser General Public License + * along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_450.RULE b/src/licensedcode/data/rules/lgpl-2.1_450.RULE new file mode 100644 index 00000000000..0df1d241b03 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_450.RULE @@ -0,0 +1,17 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +* This library is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation, either version 2.1. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * You should have received a copy of the GNU Lesser General Public License + * along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_451.RULE b/src/licensedcode/data/rules/lgpl-2.1_451.RULE new file mode 100644 index 00000000000..e141403e4e4 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_451.RULE @@ -0,0 +1,6 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + +The LGPL v2.1 can be found in GNU Lesser General Public License Version 2.1, February 1999. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_452.RULE b/src/licensedcode/data/rules/lgpl-2.1_452.RULE new file mode 100644 index 00000000000..901eccb60f8 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_452.RULE @@ -0,0 +1,21 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + +GNU Lesser General Public License Version 2.1, February 1999 + +The following applies to all products licensed under the +GNU Lesser General Public License, Version 2.1: You may +not use the identified files except in compliance with +the GNU Lesser General Public License, Version 2.1 (the +"License"). You may obtain a copy of the License at +http://www.gnu.org/licenses/lgpl-2.1.html. A copy of the +license is also reproduced below. Unless required by +applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +or implied. See the License for the specific language governing +permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_453.RULE b/src/licensedcode/data/rules/lgpl-2.1_453.RULE new file mode 100644 index 00000000000..4f87f44d220 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_453.RULE @@ -0,0 +1,24 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/GPL-2.1 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, version 2.1 of the License. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + . + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . + . + The complete text of the GNU Lesser General Public License + can be found in /usr/share/common-licenses/GPL-2.1 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0_1.RULE new file mode 100644 index 00000000000..8b25809ae37 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0_1.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.1 AND apache-2.0 +is_license_notice: yes +is_continuous: yes +relevance: 100 +notes: this wording is specific to Hibernate and is not a choice. +--- + +{{projects are licensed under either the LGPL 2.1 or the ASL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_3.RULE new file mode 100644 index 00000000000..5fa70d984cf --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_3.RULE @@ -0,0 +1,32 @@ +--- +license_expression: lgpl-2.1 OR epl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/org/documents/epl-v10.php + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + +* This library is free software; you can redistribute it and/or modify + * it under the terms of EITHER: + * + * 1) The GNU Lesser General Public License (LGPL), version 2.1, as + * published by the Free Software Foundation + * + * OR + * + * 2) The Eclipse Public License (EPL), version 1.0 + * You may choose which license to accept if you wish to redistribute + * or modify this work. You may offer derivatives of this work + * under the license you have chosen, or you may provide the same + * choice of license which you have been offered here. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * You should have received copies of both LGPL v2.1 and EPL v1.0 + * along with this software; see the files LICENSE-EPL and LICENSE-LGPL. + * If not, the text of these licenses are currently available at + * + * LGPL v2.1: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + * EPL v1.0: http://www.eclipse.org/org/documents/epl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_8.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_8.RULE new file mode 100644 index 00000000000..1cb769a6008 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_8.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This library is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation, either version 2.1 or + version 3 of the License. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_9.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_9.RULE new file mode 100644 index 00000000000..177ce7e3a50 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +license: source files mention "either version 2.1 or 3" + (license (list license:lgpl2.1 license:lgpl3)))) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_290.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_290.RULE new file mode 100644 index 00000000000..1c7528b06ba --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_290.RULE @@ -0,0 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LESSER + - COPYING +--- + +LGPL v3 License +This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +Please see COPYING.LESSER and COPYING files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_291.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_291.RULE new file mode 100644 index 00000000000..8ee4b67a188 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_291.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This header is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This header is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this header. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_317.RULE b/src/licensedcode/data/rules/lgpl-3.0_317.RULE new file mode 100644 index 00000000000..6a2b648df8f --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_317.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +referenced_filenames: + - COPYING + - COPYING.LESSER +--- + +distributed under the GNU LESSER GENERAL PUBLIC LICENSE (LGPL 3.0). This application may only be used in compliance with the License. In lieu of applicable law or written agreement, software distributed under the License is distributed "AS IS", VOID OF ALL WARRANTIES OR CONDITIONS. For specific details regarding permissions and restrictions, see COPYING and COPYING.LESSER \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_318.RULE b/src/licensedcode/data/rules/lgpl-3.0_318.RULE new file mode 100644 index 00000000000..d6cee70888d --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_318.RULE @@ -0,0 +1,18 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This header is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3 of the License. + + This header is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this header. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_319.RULE b/src/licensedcode/data/rules/lgpl-3.0_319.RULE new file mode 100644 index 00000000000..9966a02f22f --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_319.RULE @@ -0,0 +1,18 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This header is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3. + + This header is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this header. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_38.RULE b/src/licensedcode/data/rules/libpng_38.RULE new file mode 100644 index 00000000000..acfdb5caa83 --- /dev/null +++ b/src/licensedcode/data/rules/libpng_38.RULE @@ -0,0 +1,8 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +--- + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE +PNG Reference Library License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_42.RULE b/src/licensedcode/data/rules/libpng_42.RULE new file mode 100644 index 00000000000..2b82ca163af --- /dev/null +++ b/src/licensedcode/data/rules/libpng_42.RULE @@ -0,0 +1,7 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +--- + +PNG Reference Library License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_18.RULE b/src/licensedcode/data/rules/license-intro_18.RULE index 3035ffc2e2c..e779d538a8e 100644 --- a/src/licensedcode/data/rules/license-intro_18.RULE +++ b/src/licensedcode/data/rules/license-intro_18.RULE @@ -2,6 +2,8 @@ license_expression: unknown-license-reference is_license_intro: yes relevance: 100 +is_deprecated: yes +notes: deprecated because it is too generic and triggers noisy false positives --- -Permission is granted \ No newline at end of file +Permission is granted diff --git a/src/licensedcode/data/rules/license-intro_74.RULE b/src/licensedcode/data/rules/license-intro_74.RULE new file mode 100644 index 00000000000..67742a632b7 --- /dev/null +++ b/src/licensedcode/data/rules/license-intro_74.RULE @@ -0,0 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +--- + +This product may include a number of subcomponents with separate +copyright notices and license terms. Your use of the source code for +these subcomponents is subject to the terms and conditions of the +subcomponent's license, as noted in the LICENSE-.md +files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-sdk-9.22_1.RULE b/src/licensedcode/data/rules/lzma-sdk-9.22_1.RULE new file mode 100644 index 00000000000..fd45434e998 --- /dev/null +++ b/src/licensedcode/data/rules/lzma-sdk-9.22_1.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lzma-sdk-9.22 +is_license_notice: yes +--- + +License + +LZMA SDK is placed in the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original LZMA SDK code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-sdk-9.22_2.RULE b/src/licensedcode/data/rules/lzma-sdk-9.22_2.RULE new file mode 100644 index 00000000000..9975ecfcdcf --- /dev/null +++ b/src/licensedcode/data/rules/lzma-sdk-9.22_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lzma-sdk-9.22 +is_license_notice: yes +--- + +LZMA SDK is placed in the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original LZMA SDK code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-sdk-9.22_3.RULE b/src/licensedcode/data/rules/lzma-sdk-9.22_3.RULE new file mode 100644 index 00000000000..e46180522fd --- /dev/null +++ b/src/licensedcode/data/rules/lzma-sdk-9.22_3.RULE @@ -0,0 +1,6 @@ +--- +license_expression: lzma-sdk-9.22 +is_license_notice: yes +--- + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original LZMA SDK code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1290.RULE b/src/licensedcode/data/rules/mit_1290.RULE new file mode 100644 index 00000000000..54edf431cc7 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1290.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Originally forked from an MIT-licensed module \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1291.RULE b/src/licensedcode/data/rules/mit_1291.RULE new file mode 100644 index 00000000000..8cdddc04586 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1291.RULE @@ -0,0 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - Copyright +--- + +This code is released under the MIT Licence see the Copyright file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1292.RULE b/src/licensedcode/data/rules/mit_1292.RULE new file mode 100644 index 00000000000..b94222b1a15 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1292.RULE @@ -0,0 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +referenced_filenames: + - license.txt +ignorable_urls: + - http://opensource.org/ + - http://opensource.org/licenses/mit-license.php +--- + +// Source: http://opensource.org/ +// This code is distributed under MIT license. +// See license.txt or http://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1293.RULE b/src/licensedcode/data/rules/mit_1293.RULE new file mode 100644 index 00000000000..d482e4fcb95 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1293.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +licensed under the terms of the MIT open source license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1294.RULE b/src/licensedcode/data/rules/mit_1294.RULE new file mode 100644 index 00000000000..59b7cdcd9bd --- /dev/null +++ b/src/licensedcode/data/rules/mit_1294.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +--- + +License + +This project is licensed under the terms of the MIT open source license. Please refere to MIT for the full terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1295.RULE b/src/licensedcode/data/rules/mit_1295.RULE new file mode 100644 index 00000000000..afbf02e907a --- /dev/null +++ b/src/licensedcode/data/rules/mit_1295.RULE @@ -0,0 +1,6 @@ +--- +license_expression: mit +is_license_notice: yes +--- + +This project is licensed under the terms of the MIT open source license. Please refere to MIT for the full terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1296.RULE b/src/licensedcode/data/rules/mit_1296.RULE new file mode 100644 index 00000000000..5eb7125a13a --- /dev/null +++ b/src/licensedcode/data/rules/mit_1296.RULE @@ -0,0 +1,19 @@ +--- +license_expression: mit +is_license_notice: yes +notes: https://github.com/lmco/hoppr-cop/blob/57da3ad221c9cce06739e7d342314090ab15a068/hopprcop/combined/combined_scanner.py +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + +# Licensed under the MIT License; +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://opensource.org/licenses/MIT +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1297.RULE b/src/licensedcode/data/rules/mit_1297.RULE new file mode 100644 index 00000000000..bf449a44bc3 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1297.RULE @@ -0,0 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +referenced_filenames: + - MIT.txt +--- + +MIT.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1298.RULE b/src/licensedcode/data/rules/mit_1298.RULE new file mode 100644 index 00000000000..609041e4744 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1298.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +* This library is distributed under the MIT License. See notice + * at the end of this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1299.RULE b/src/licensedcode/data/rules/mit_1299.RULE new file mode 100644 index 00000000000..05d63ebe418 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1299.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +--- + +Licensed to the .NET Foundation under one or more agreements. +The .NET Foundation licenses this file to you {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1300.RULE b/src/licensedcode/data/rules/mit_1300.RULE new file mode 100644 index 00000000000..d8c2d6e1525 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1300.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +The .NET Foundation licenses this file to you {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1301.RULE b/src/licensedcode/data/rules/mit_1301.RULE new file mode 100644 index 00000000000..093c5819325 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1301.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +is_continuous: yes +--- + +{{"license": "type": "MIT",}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_273.RULE b/src/licensedcode/data/rules/mit_273.RULE index dec3b4dd138..c5b92abad6b 100644 --- a/src/licensedcode/data/rules/mit_273.RULE +++ b/src/licensedcode/data/rules/mit_273.RULE @@ -2,6 +2,8 @@ license_expression: mit is_license_tag: yes relevance: 90 +is_deprecated: yes +notes: deprecated because it is too generic and triggers noisy false positives --- -{ "type": "MIT", \ No newline at end of file +{ "type": "MIT", diff --git a/src/licensedcode/data/rules/mit_964.RULE b/src/licensedcode/data/rules/mit_964.RULE index b1c7b6645c8..c8de2639557 100644 --- a/src/licensedcode/data/rules/mit_964.RULE +++ b/src/licensedcode/data/rules/mit_964.RULE @@ -2,6 +2,7 @@ license_expression: mit is_license_reference: yes relevance: 80 +is_continuous: yes --- -MIT STYLE \ No newline at end of file +MIT STYLE diff --git a/src/licensedcode/data/rules/mit_and_json_1.RULE b/src/licensedcode/data/rules/mit_and_json_1.RULE index 243ea9f6783..5e1dce0e128 100644 --- a/src/licensedcode/data/rules/mit_and_json_1.RULE +++ b/src/licensedcode/data/rules/mit_and_json_1.RULE @@ -12,6 +12,6 @@ ignorable_urls: Most files are published using [the standard MIT Expat license](https://www.gnu.org/licenses/license-list.html#Expat). One file, however, is provided under a slightly modified version of that license. The -so-called [JSON license](https://www.gnu.org/licenses/license-list.html#JSON) +so-called {{[JSON license] }} (https://www.gnu.org/licenses/license-list.html#JSON) is a non-free license, and unfortunately, we can't change it due to historical -reasons. This license is included as an in-line within the file it concerns. \ No newline at end of file +reasons. This license is included as an in-line within the file it concerns. diff --git a/src/licensedcode/data/rules/mit_and_json_2.RULE b/src/licensedcode/data/rules/mit_and_json_2.RULE index a88227a5373..a13c1cfa2c3 100644 --- a/src/licensedcode/data/rules/mit_and_json_2.RULE +++ b/src/licensedcode/data/rules/mit_and_json_2.RULE @@ -6,4 +6,4 @@ relevance: 100 License -Most files are published using the standard MIT Expat license. One file, however, is provided under a slightly modified version of that license. The so-called JSON license is a non-free license, and unfortunately, we can't change it due to historical reasons. This license is included as an in-line within the file it concerns. \ No newline at end of file +Most files are published using the standard MIT Expat license. One file, however, is provided under a slightly modified version of that license. The so-called {{JSON license}} is a non-free license, and unfortunately, we can't change it due to historical reasons. This license is included as an in-line within the file it concerns. diff --git a/src/licensedcode/data/rules/mit_and_json_and_other-permissive.RULE b/src/licensedcode/data/rules/mit_and_json_and_other-permissive.RULE index 177bed94e32..049ecda255a 100644 --- a/src/licensedcode/data/rules/mit_and_json_and_other-permissive.RULE +++ b/src/licensedcode/data/rules/mit_and_json_and_other-permissive.RULE @@ -5,5 +5,5 @@ minimum_coverage: 80 --- If you have downloaded a copy of the binary from , please note that the binary is licensed under the MIT License. -If you have downloaded a copy of the source code from , please note that source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within . To avoid the problematic JSON license in your own projects, it's sufficient to exclude the bin/jsonchecker/ directory, as it's the only code under the JSON license. -A copy of the MIT License is included in this file. \ No newline at end of file +If you have downloaded a copy of the source code from , please note that source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within . To avoid the problematic {{JSON license}} in your own projects, it's sufficient to exclude the bin/jsonchecker/ directory, as it's the only code under the {{JSON license}}. +A copy of the MIT License is included in this file. diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_70.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_70.RULE new file mode 100644 index 00000000000..c940a4befcc --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_70.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +dual licensed as MIT/GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_1.RULE b/src/licensedcode/data/rules/mpeg-iso_1.RULE new file mode 100644 index 00000000000..872eba84115 --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_1.RULE @@ -0,0 +1,24 @@ +--- +license_expression: mpeg-iso +is_license_notice: yes +relevance: 95 +minimum_coverage: 95 +notes: Seen in https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE The + site for this code at https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=1421 +ignorable_copyrights: + - (c) 2007, 3GPP Organizational Partners +ignorable_holders: + - 3GPP Organizational Partners +ignorable_urls: + - http://www.3gpp.org/ +--- + +Portions of this file are derived from the following 3GPP standard: + + 3GPP TS 26.173 + ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec + Available from http://www.3gpp.org + +(C) 2007, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TTA, TTC) +Permission to distribute, modify and use this file under the standard license +terms listed above has been obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_10.RULE b/src/licensedcode/data/rules/mpeg-iso_10.RULE new file mode 100644 index 00000000000..a6e5a94c03a --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_10.RULE @@ -0,0 +1,28 @@ +--- +license_expression: mpeg-iso +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +notes: See https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE +--- + +This software module was originally developed by +Nokia in the course of development of the MPEG-2 AAC/MPEG-4 +Audio standard ISO/IEC13818-7, 14496-1, 2 and 3. +This software module is an implementation of a part +of one or more MPEG-2 AAC/MPEG-4 Audio tools as specified by the +MPEG-2 aac/MPEG-4 Audio standard. ISO/IEC gives users of the +MPEG-2aac/MPEG-4 Audio standards free license to this software module +or modifications thereof for use in hardware or software products +claiming conformance to the MPEG-2 aac/MPEG-4 Audio standards. Those +intending to use this software module in hardware or software products +are advised that this use may infringe existing patents. The original +developer of this software module, the subsequent +editors and their companies, and ISO/IEC have no liability for use of +this software module or modifications thereof in an +implementation. Copyright is not released for non MPEG-2 aac/MPEG-4 +Audio conforming products. The original developer retains full right to +use the code for the developer's own purpose, assign or donate the code to a +third party and to inhibit third party from using the code for non +MPEG-2 aac/MPEG-4 Audio conforming products. This copyright notice +must be included in all copies or derivative works. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_11.RULE b/src/licensedcode/data/rules/mpeg-iso_11.RULE new file mode 100644 index 00000000000..74d15a1545b --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_11.RULE @@ -0,0 +1,26 @@ +--- +license_expression: mpeg-iso +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +notes: See https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE +--- + +* ISO/IEC gives users of the MPEG-4 Video (ISO/IEC 14496-2) standard free + * license to this software module or modifications thereof for use in hardware + * or software products claiming conformance to the MPEG-4 Video (ISO/IEC + * 14496-2) standard. + * + * Those intending to use this software module in hardware or software products + * are advised that its use may infringe existing patents. The original + * developer of this software module and his/her company, the subsequent + * editors and their companies, and ISO/IEC have no liability for use of this + * software module or modifications thereof in an implementation. Copyright is + * not released for non MPEG-4 Video (ISO/IEC 14496-2) Standard conforming + * products. + * + * ACTS-MoMuSys partners retain full right to use the code for his/her own + * purpose, assign or donate the code to a third party and to inhibit third + * parties from using the code for non MPEG-4 Video (ISO/IEC 14496-2) Standard + * conforming products. This copyright notice must be included in all copies or + * derivative works. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_2.RULE b/src/licensedcode/data/rules/mpeg-iso_2.RULE new file mode 100644 index 00000000000..e8714da505d --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_2.RULE @@ -0,0 +1,20 @@ +--- +license_expression: mpeg-iso +is_license_notice: yes +relevance: 95 +minimum_coverage: 95 +notes: Seen in https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE The + site for this code at https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=1421 +ignorable_urls: + - http://www.3gpp.org/ +--- + +Portions of this file are derived from the following 3GPP standard: + + 3GPP TS 26.173 + ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec + Available from http://www.3gpp.org + +(C) , 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TTA, TTC) +Permission to distribute, modify and use this file under the standard license +terms listed above has been obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_3.RULE b/src/licensedcode/data/rules/mpeg-iso_3.RULE new file mode 100644 index 00000000000..7febd0527e1 --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_3.RULE @@ -0,0 +1,22 @@ +--- +license_expression: mpeg-iso +is_license_notice: yes +relevance: 95 +minimum_coverage: 95 +notes: Seen in https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE The + site for this code at https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=1421 +ignorable_copyrights: + - (c) 2007, 3GPP Organizational Partners +ignorable_holders: + - 3GPP Organizational Partners +ignorable_urls: + - http://www.3gpp.org/ +--- + +3GPP TS 26.173 + ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec + Available from http://www.3gpp.org + +(C) 2007, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TTA, TTC) +Permission to distribute, modify and use this file under the standard license +terms listed above has been obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_4.RULE b/src/licensedcode/data/rules/mpeg-iso_4.RULE new file mode 100644 index 00000000000..214994cb1c0 --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_4.RULE @@ -0,0 +1,24 @@ +--- +license_expression: mpeg-iso +is_license_notice: yes +relevance: 95 +minimum_coverage: 95 +notes: Seen in https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE The + site for this code at https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=1387 +ignorable_copyrights: + - (c) 3GPP Organizational Partners +ignorable_holders: + - 3GPP Organizational Partners +ignorable_urls: + - http://www.3gpp.org/ +--- + +Portions of this file are derived from the following 3GPP standard: + + 3GPP TS 26.073 + ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec + Available from http://www.3gpp.org + +(C) 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TTA, TTC) +Permission to distribute, modify and use this file under the standard license +terms listed above has been obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_5.RULE b/src/licensedcode/data/rules/mpeg-iso_5.RULE new file mode 100644 index 00000000000..3863a6defe1 --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_5.RULE @@ -0,0 +1,24 @@ +--- +license_expression: mpeg-iso +is_license_notice: yes +relevance: 95 +minimum_coverage: 95 +notes: Seen in https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE The + site for this code at https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=1387 +ignorable_copyrights: + - (c) 2004, 3GPP Organizational Partners +ignorable_holders: + - 3GPP Organizational Partners +ignorable_urls: + - http://www.3gpp.org/ +--- + +Portions of this file are derived from the following 3GPP standard: + + 3GPP TS 26.073 + ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec + Available from http://www.3gpp.org + +(C) 2004, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TTA, TTC) +Permission to distribute, modify and use this file under the standard license +terms listed above has been obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_6.RULE b/src/licensedcode/data/rules/mpeg-iso_6.RULE new file mode 100644 index 00000000000..040a9f91cbc --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_6.RULE @@ -0,0 +1,22 @@ +--- +license_expression: mpeg-iso +is_license_notice: yes +relevance: 95 +minimum_coverage: 95 +notes: Seen in https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE The + site for this code at https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=1387 +ignorable_copyrights: + - (c) 2004, 3GPP Organizational Partners +ignorable_holders: + - 3GPP Organizational Partners +ignorable_urls: + - http://www.3gpp.org/ +--- + +3GPP TS 26.073 + ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec + Available from http://www.3gpp.org + +(C) 2004, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TTA, TTC) +Permission to distribute, modify and use this file under the standard license +terms listed above has been obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_7.RULE b/src/licensedcode/data/rules/mpeg-iso_7.RULE new file mode 100644 index 00000000000..beb3326b192 --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_7.RULE @@ -0,0 +1,39 @@ +--- +license_expression: mpeg-iso +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +notes: See https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE +--- + +* This software module was originally developed and/or edited by + * + * Paulo Nunes (IST / ACTS-MoMuSyS) + * Robert Danielsen (Telenor / ACTS-MoMuSyS) + * Luis Ducla-Soares (IST / ACTS-MoMuSys). + * Cor Quist (KPN / ACTS-MoMuSys). + * Minhua Zhou (HHI / ACTS-MoMuSys). + * + * in the course of development of the MPEG-4 Video (ISO/IEC 14496-2) standard. + * This software module is an implementation of a part of one or more MPEG-4 + * Video (ISO/IEC 14496-2) tools as specified by the MPEG-4 Video (ISO/IEC + * 14496-2) standard. + * + * ISO/IEC gives users of the MPEG-4 Video (ISO/IEC 14496-2) standard free + * license to this software module or modifications thereof for use in hardware + * or software products claiming conformance to the MPEG-4 Video (ISO/IEC + * 14496-2) standard. + * + * Those intending to use this software module in hardware or software products + * are advised that its use may infringe existing patents. The original + * developer of this software module and his/her company, the subsequent + * editors and their companies, and ISO/IEC have no liability for use of this + * software module or modifications thereof in an implementation. Copyright is + * not released for non MPEG-4 Video (ISO/IEC 14496-2) Standard conforming + * products. + * + * ACTS-MoMuSys partners retain full right to use the code for his/her own + * purpose, assign or donate the code to a third party and to inhibit third + * parties from using the code for non MPEG-4 Video (ISO/IEC 14496-2) Standard + * conforming products. This copyright notice must be included in all copies or + * derivative works. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_8.RULE b/src/licensedcode/data/rules/mpeg-iso_8.RULE new file mode 100644 index 00000000000..c2801fc8192 --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_8.RULE @@ -0,0 +1,27 @@ +--- +license_expression: mpeg-iso +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +notes: See https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE +--- + +in the course of development of the ISO/IEC 13818-7 and ISO/IEC 14496-3 +standards for reference purposes and its performance may not have been +optimized. This software module is an implementation of one or more tools as +specified by the ISO/IEC 13818-7 and ISO/IEC 14496-3 standards. +ISO/IEC gives users free license to this software module or modifications +thereof for use in products claiming conformance to audiovisual and +image-coding related ITU Recommendations and/or ISO/IEC International +Standards. ISO/IEC gives users the same free license to this software module or +modifications thereof for research purposes and further ISO/IEC standardisation. +Those intending to use this software module in products are advised that its +use may infringe existing patents. ISO/IEC have no liability for use of this +software module or modifications thereof. Copyright is not released for +products that do not conform to audiovisual and image-coding related ITU +Recommendations and/or ISO/IEC International Standards. +The original developer retains full right to modify and use the code for its +own purpose, assign or donate the code to a third party and to inhibit third +parties from using the code for products that do not conform to audiovisual and +image-coding related ITU Recommendations and/or ISO/IEC International Standards. +This copyright notice must be included in all copies or derivative works. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-iso_9.RULE b/src/licensedcode/data/rules/mpeg-iso_9.RULE new file mode 100644 index 00000000000..3303cfb0b97 --- /dev/null +++ b/src/licensedcode/data/rules/mpeg-iso_9.RULE @@ -0,0 +1,29 @@ +--- +license_expression: mpeg-iso +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +notes: See https://sourceforge.net/p/opencore-amr/code/ci/master/tree/opencore/NOTICE +--- + +This software module was originally developed by + + +in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard +ISO/IEC 13818-7, 14496-1,2 and 3. This software module is an +implementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio tools +as specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC gives +users of the MPEG-2 NBC/MPEG-4 Audio standards free license to this +software module or modifications thereof for use in hardware or +software products claiming conformance to the MPEG-2 NBC/ MPEG-4 Audio +standards. Those intending to use this software module in hardware or +software products are advised that this use may infringe existing +patents. The original developer of this software module and his/her +company, the subsequent editors and their companies, and ISO/IEC have +no liability for use of this software module or modifications thereof +in an implementation. Copyright is not released for non MPEG-2 +NBC/MPEG-4 Audio conforming products. The original developer retains +full right to use the code for his/her own purpose, assign or donate +the code to a third party and to inhibit third party from using the +code for non MPEG-2 NBC/MPEG-4 Audio conforming products. This +copyright notice must be included in all copies or derivative works. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_133.RULE b/src/licensedcode/data/rules/mpl-2.0_133.RULE index 87baeb1e23f..3245ea44843 100644 --- a/src/licensedcode/data/rules/mpl-2.0_133.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_133.RULE @@ -4,4 +4,4 @@ is_license_reference: yes --- ## License -{{[Mozilla Public License v2.0]}} \ No newline at end of file +{{[Mozilla Public License v2.0]}} diff --git a/src/licensedcode/data/rules/mpl-2.0_134.RULE b/src/licensedcode/data/rules/mpl-2.0_134.RULE new file mode 100644 index 00000000000..d3e77da1886 --- /dev/null +++ b/src/licensedcode/data/rules/mpl-2.0_134.RULE @@ -0,0 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0/ + - https://www.mozilla.org/en-US/MPL/2.0/FAQ +--- + +Eigen is licensed under {{Mozilla Public License Version 2.0}} (MPL 2.0). A MPL 2.0 +and FAQ's for MPL 2.0 can be found at: https://www.mozilla.org/en-US/MPL/2.0/ +and https://www.mozilla.org/en-US/MPL/2.0/FAQ/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_135.RULE b/src/licensedcode/data/rules/mpl-2.0_135.RULE new file mode 100644 index 00000000000..2eed7fa411b --- /dev/null +++ b/src/licensedcode/data/rules/mpl-2.0_135.RULE @@ -0,0 +1,12 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0 + - https://www.mozilla.org/en-US/MPL/2.0/FAQ +--- + +licensed under {{Mozilla Public License Version 2.0}} (MPL 2.0). A MPL 2.0 +and FAQ's for MPL 2.0 can be found at: {{https://www.mozilla.org/en-US/MPL/2.0/}} +and https://www.mozilla.org/en-US/MPL/2.0/FAQ/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_136.RULE b/src/licensedcode/data/rules/mpl-2.0_136.RULE new file mode 100644 index 00000000000..6bac645608c --- /dev/null +++ b/src/licensedcode/data/rules/mpl-2.0_136.RULE @@ -0,0 +1,12 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0 + - https://www.mozilla.org/en-US/MPL/2.0/FAQ +--- + +is licensed under {{Mozilla Public License Version 2.0 (MPL 2.0)}}. A MPL 2.0 +and FAQ's for MPL 2.0 can be found at: {{https://www.mozilla.org/en-US/MPL/2.0/}} +and https://www.mozilla.org/en-US/MPL/2.0/FAQ/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_137.RULE b/src/licensedcode/data/rules/mpl-2.0_137.RULE new file mode 100644 index 00000000000..bfc4719c72d --- /dev/null +++ b/src/licensedcode/data/rules/mpl-2.0_137.RULE @@ -0,0 +1,13 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0/ + - https://www.mozilla.org/en-US/MPL/2.0/FAQ +--- + +eigen NOTICE +================================================================================ +Eigen is licensed under Mozilla Public License Version 2.0 (MPL 2.0). A MPL 2.0 +and FAQ's for MPL 2.0 can be found at: https://www.mozilla.org/en-US/MPL/2.0/ +and https://www.mozilla.org/en-US/MPL/2.0/FAQ/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.RULE b/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.RULE index f6af89be810..391ff957114 100644 --- a/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.RULE @@ -2,7 +2,10 @@ license_expression: mpl-2.0 AND mit AND bsd-new AND apache-2.0 AND json is_license_notice: yes relevance: 99 +notes: See https://en.wikipedia.org/wiki/JSLint + Since 2021, JSLint uses the FSF / OSI approved Unlicense license. + Before that, the JSLint license was a derivative of the MIT License. + The sole modification was the addition of the line "The Software shall be used for Good, not Evil." --- - These programs' copyrights are owned by other people. They are distributed here under -the MPL, MIT, BSD, Apache and JSLint licenses. \ No newline at end of file +the MPL, MIT, BSD, Apache and {{JSLint}} licenses. diff --git a/src/licensedcode/data/rules/ms-pl_37.RULE b/src/licensedcode/data/rules/ms-pl_37.RULE index 8a536732d2d..4326fa6868a 100644 --- a/src/licensedcode/data/rules/ms-pl_37.RULE +++ b/src/licensedcode/data/rules/ms-pl_37.RULE @@ -1,9 +1,9 @@ --- license_expression: ms-pl -is_license_reference: yes +is_license_clue: yes is_continuous: yes relevance: 80 minimum_coverage: 100 --- -MS-PL \ No newline at end of file +MS-PL diff --git a/src/licensedcode/data/rules/ms-visual-studio-2017_1.RULE b/src/licensedcode/data/rules/ms-visual-studio-2017_1.RULE new file mode 100644 index 00000000000..3e471e741b3 --- /dev/null +++ b/src/licensedcode/data/rules/ms-visual-studio-2017_1.RULE @@ -0,0 +1,396 @@ +--- +license_expression: ms-visual-studio-2017 +is_license_text: yes +ignorable_urls: + - http://www.howtotell.com/ + - http://www.microsoft.com/exporting + - http://www.microsoft.com/info/nareturns.htm + - http://www.microsoft.com/worldwide + - https://go.microsoft.com/fwlink/?LinkID=824704 + - https://go.microsoft.com/fwlink/?linkid=823097 + - https://support.microsoft.com/ + - https://thirdpartysource.microsoft.com/ +--- + +================================================================================ +visualstudio2017 LICENSE +================================================================================ +MICROSOFT SOFTWARE LICENSE TERMS + +MICROSOFT VISUAL STUDIO ENTERPRISE 2017, VISUAL STUDIO PROFESSIONAL 2017, +VISUAL STUDIO TEST PROFESSIONAL 2017 AND TRIAL EDITION + +These license terms are an agreement between you and Microsoft Corporation (or +based on where you live, one of its affiliates). They apply to the software +named above. The terms also apply to any Microsoft services and updates for the +software, except to the extent those have different terms. +BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT +USE THE SOFTWARE. INSTEAD, RETURN IT TO THE RETAILER FOR A REFUND OR CREDIT. If +you cannot obtain a refund there, contact Microsoft about Microsoft's refund +policies. See www.microsoft.com/worldwide. In the United States and Canada, call +(800) MICROSOFT or see www.microsoft.com/info/nareturns.htm. + +TRIAL EDITION USE RIGHTS. If the software is a trial edition, this Section +applies to your use of the trial edition. +A. GENERAL. You may use any number of copies of the trial edition on your +devices. You may only use the trial edition for internal evaluation +purposes, and only during the trial period. You may not distribute or +deploy any applications you make with the trial edition to a production +environment. You may run load tests of up to 250 virtual users during the +trial period. +B. TRIAL PERIOD AND CONVERSION. The trial period lasts for 30 days after you +install the trial edition, plus any permitted extension period. After the +expiration of the trial period, the trial edition will stop running. You +may extend the trial period an additional 90 days if you sign in to the +software. You may not be able to access data used with the trial edition +when it stops running. You may convert your trial rights at any time to +the full-use rights described below by acquiring a valid full-use license. +C. DISCLAIMER OF WARRANTY. THE TRIAL EDITION IS LICENSED "AS-IS." YOU BEAR +THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR +CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT +EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NON-INFRINGEMENT. +FOR AUSTRALIA - YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN +CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE +RIGHTS. +E. SUPPORT. Because the trial edition is "as is," we may not provide support +services for it. +F. LIMITATIONS ON DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS +ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER +DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR +INCIDENTAL DAMAGES. +This limitation applies to (a) anything related to the trial version, +services, content (including code) on third party Internet sites, or third +party programs; and (b) claims for breach of contract, breach of warranty, +guarantee or condition, strict liability, negligence, or other tort to the +extent permitted by applicable law. +It also applies even if Microsoft knew or should have known about the +possibility of the damages. The above limitation or exclusion may not +apply to you because your country may not allow the exclusion or +limitation of incidental, consequential or other damages. + +FULL-USE LICENSE TERMS FOR THE SOFTWARE: When you acquire a valid license and +either enter a product key or sign in to the software, the terms below apply. +You may not share your product key or access credentials. +1. OVERVIEW. +a. Software. The software includes development tools, applications and +documentation. +b. License Model. The software is licensed on a per user basis. +2. USE RIGHTS. +a. General. One user may use copies of the software on your devices to +develop and test applications. This includes using copies of the software +on your own internal servers that remain fully dedicated to your own use. +You may not, however, separate the components of the software and run +those in a production environment, or on third party devices (except as +otherwise stated in this agreement), or for any purpose other than +developing and testing your applications. Running the software on +Microsoft Azure requires a separate license. +b. Workloads. These license terms apply to your use of the Workloads made +available to you within the software, except to the extent a Workload or a +Workload component comes with different terms. +c. Demo Use. The use permitted above includes use of the software in +demonstrating your applications. +d. Backup copy. You may make one backup copy of the software, for +reinstalling the software. +3. TERMS FOR SPECIFIC COMPONENTS. +a. Utilities. The software contains items on the Utilities List at +https://go.microsoft.com/fwlink/?linkid=823097. You may copy and install +those items, if included with the software, onto your devices to debug and +deploy your applications and databases you developed with the software. +Please note that Utilities are designed for temporary use, that Microsoft +may not be able to patch or update Utilities separately from the rest of +the software, and that some Utilities by their nature may make it possible +for others to access the devices on which they are installed. As a result, +you should delete all Utilities you have installed after you finish +debugging or deploying your applications and databases. Microsoft is not +responsible for any third party use or access of Utilities you install on +any device. +b. Build Server. The software contains files on the Build Server List at +https://go.microsoft.com/fwlink/?linkid=823097. You may copy and install +those Build Server files, if included in the software, onto your build +devices. You and others in your organization may use these files on your +build devices solely to compiling, building and verifying your +applications or running quality or performance tests as part of the build +process. +c. Font Components. While the software is running, you may use its fonts to +display and print content. You may only: (i) embed fonts in content as +permitted by the embedding restrictions in the fonts; and (ii) temporarily +download them to a printer or other output device to help print content. +d. Licenses for Other Components. +* Microsoft Platforms. The software may include components from Microsoft +Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft +Exchange; Microsoft Office; and Microsoft SharePoint. These components +are governed by separate agreements and their own product support +policies, as described in the Microsoft "Licenses" folder accompanying +the software, except that, if separate license terms for those +components are included in the associated installation directly, those +license terms control. +* Developer resources. The software includes compilers, languages, +runtimes, environments, and other resources. These components may be +governed by separate agreements and have their own product support +policies. A list of these other components is located at +https://support.microsoft.com. +* Third Party Components. The software may include third party components +with separate legal notices or governed by other agreements, as may be +described in the ThirdPartyNotices file(s) accompanying the software. +Even if such components are governed by other agreements, the +disclaimers and the limitations on damages below also apply. +The software may also include components licensed under open source +licenses with source code availability obligations. Copies of those +licenses, if applicable, are included in the ThirdPartyNotices file(s). +You may obtain this source code from us, if and as required under the +relevant open source licenses, as set forth in the ThirdPartyNotices +file(s). You may also find a copy of the source code available at +https://thirdpartysource.microsoft.com/. +e. PACKAGE MANAGERS. The software includes package managers, like NuGet, that +give you the option to download other Microsoft and third party software +packages to use with your application. Those packages are under their own +licenses, and not this agreement. Microsoft does not distribute, license +or provide any warranties for any of the third party packages. +4. DISTRIBUTABLE CODE. The software contains code that you are permitted to +distribute in applications you develop as described in this Section. (For +this Section the term "distribution" also means deployment of your +applications for third parties to access over the Internet.) +a. Right to Use and Distribute. The code and text files listed below are +"Distributable Code." +* REDIST.TXT Files. You may copy and distribute the object code form of +code listed on the REDIST list located at +https://go.microsoft.com/fwlink/?linkid=823097. +* Sample Code, Templates and Styles. You may copy, modify and distribute +the source and object code form of code marked as "sample", "template", +"simple styles" and "sketch styles". +* Image Library. You may copy and distribute images, graphics and +animations in the Image Library as described in the software +documentation. +* Third Party Distribution. You may permit distributors of your +applications to copy and distribute the Distributable Code as part of +those applications. +b. Distribution Requirements. For any Distributable Code you distribute, you +must: +* add significant primary functionality to it in your applications; +* require distributors and external end users to agree to terms that +protect the Distributable Code at least as much as this agreement; and +* indemnify, defend, and hold harmless Microsoft from any claims, +including attorneys' fees, related to the distribution or use of your +applications, except to the extent that any claim is based solely on +the Distributable Code. +c. Distribution Restrictions. You may not: +* use Microsoft's trademarks in your applications' names or in a way that +suggests your applications come from or are endorsed by Microsoft; or +* modify or distribute the source code of any Distributable Code so that +any part of it becomes subject to an Excluded License. An Excluded +License is one that requires, as a condition of use, modification or +distribution of code, that (i) it be disclosed or distributed in source +code form; or (ii) others have the right to modify it. +5. DATA. The software may collect information about you and your use of the +software, and send that to Microsoft. Microsoft may use this information to +provide services and improve our products and services. You may opt-out of +many of these scenarios, but not all, as described in the product +documentation. There are also some features in the software that may enable +you and Microsoft to collect data from users of your applications. If you +use these features, you must comply with applicable law, including providing +appropriate notices to users of your applications together with Microsoft's +privacy statement. Our privacy statement is located at +https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about +data collection and use in the help documentation and our privacy statement. +Your use of the software operates as your consent to these practices. +6. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only +gives you some rights to use the software. Microsoft reserves all other +rights. Unless applicable law gives you more rights despite this limitation, +you may use the software only as expressly permitted in this agreement. In +doing so, you must comply with any technical limitations in the software +that only allow you to use it in certain ways. You may not +* work around any technical limitations in the software; +* reverse engineer, decompile or disassemble the software, or otherwise +attempt to derive the source code for the software, except and to the +extent required by third party licensing terms governing use of certain +open source components that may be included in the software; +* remove, minimize, block or modify any notices of Microsoft or its +suppliers in the software; +* use the software in any way that is against the law; +* share, publish, rent or lease the software, or provide the software as a +stand-alone offering for others to use. +7. DOCUMENTATION. Any person that has valid access to your computer or internal +network may copy and use the documentation for your internal, reference +purposes. +8. NOT FOR RESALE SOFTWARE. You may not sell software marked as "NFR" or "Not +for Resale." +9. RIGHTS TO USE OTHER VERSIONS AND LOWER EDITIONS. You may use the software +and any prior version on any device. You may create, store, install, run, or +access in place of the version licensed, a copy or instance of a prior +version, different permitted language version, or lower edition. +10. PROOF OF LICENSE. If you acquired the software on a disc or other media, +your proof of license is the Microsoft certificate of authenticity label, +the accompanying product key, and your receipt. If you purchased an online +copy of the software, your proof of license is the Microsoft product key you +received with your purchase and your receipt and/or being able to access the +software service through your Microsoft account. To identify genuine +Microsoft software, see www.howtotell.com. +11. TRANSFER TO A THIRD PARTY. If you are a valid licensee of the software, you +may transfer it and this agreement directly to another party. Before the +transfer, that party must agree that this agreement applies to the transfer +and use of the software. The transfer must include the software, genuine +Microsoft product key, and (if applicable) the Proof of License label. The +transferor must uninstall all copies of the software after transferring it +from the device. The transferor may not retain any copies of the genuine +Microsoft product key to be transferred, and may only retain copies of the +software if otherwise licensed to do so. If you have acquired a non- +perpetual license to use the software or if the software is marked Not for +Resale you may not transfer the software or the software license agreement +to another party. +12. EXPORT RESTRICTIONS. You must comply with all domestic and international +export laws and regulations that apply to the software, which include +restrictions on destinations, end users, and end use. For further +information on export restrictions, visit www.microsoft.com/exporting. +13. SUPPORT. Microsoft provides support for the software as described at +https://support.microsoft.com. +14. ENTIRE AGREEMENT. This agreement (including the warranty below), and the +terms for supplements, updates, Internet-based services and support +services, are the entire agreement for the software and support services. +15. APPLICABLE LAW. If you acquired the software in the United States, Washington +State law applies to interpretation of and claims for breach of this +agreement, and the laws of the state where you live apply to all other +claims. If you acquire the software in any other country, its laws apply. +16. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal +rights. You may have other rights, including consumer rights, under the laws +of your state or country. Separate and apart from your relationship with +Microsoft, you may also have rights with respect to the party from which you +acquired the software. This agreement does not change those other rights if +the laws of your state or country do not permit it to do so. For example, if +you acquired the software in one of the below regions, or if mandatory +country law applies, then the following provisions apply to you: +a) Australia. References to "Limited Warranty" mean the express warranty +provided by Microsoft or the manufacturer or installer. This warranty is +in addition to other rights and remedies you may have under law, including +your rights and remedies under the statutory guarantees in the Australian +Consumer Law. +In this section, "goods" refers to the software for which Microsoft or the +manufacturer or installer provides the express warranty. Our goods come +with guarantees that cannot be excluded under the Australian Consumer Law. +You are entitled to a replacement or refund for a major failure and +compensation for any other reasonably foreseeable loss or damage. You are +also entitled to have the goods repaired or replaced if the goods fail to +be of acceptable quality and the failure does not amount to a major +failure. +b) Canada. If you acquired this software in Canada, you may stop receiving +updates by turning off the automatic update feature, disconnecting your +device from the Internet (if and when you re-connect to the Internet, +however, the software will resume checking for and installing updates), or +uninstalling the software. The product documentation, if any, may also +specify how to turn off updates for your specific device or software. +c) Germany and Austria. +(i) Warranty. The properly licensed software will perform substantially +as described in any Microsoft materials that accompany it. However, +Microsoft gives no contractual guarantee in relation to the software. +(ii) Limitation of Liability. In case of intentional conduct, gross +negligence, claims based on the Product Liability Act, and death or +personal or physical injury, Microsoft is liable according to the +statutory law. +Subject to the foregoing clause (ii), Microsoft will only be liable for +slight negligence if Microsoft is in breach of such material contractual +obligations, the fulfillment of which facilitate the due performance of +this agreement, the breach of which would endanger the purpose of this +agreement and the compliance with which a party may constantly trust in +(so-called "cardinal obligations"). In other cases of slight negligence, +Microsoft will not be liable for slight negligence. +17. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND +ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO THE AMOUNT YOU PAID FOR THE +SOFTWARE. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, +LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. +This limitation applies to (a) anything related to the software, services, +content (including code) on third party Internet sites, or third party +applications; and (b) claims for breach of contract, breach of warranty, +guarantee or condition, strict liability, negligence, or other tort to the +extent permitted by applicable law. +It also applies even if Microsoft knew or should have known about the +possibility of the damages. The above limitation or exclusion may not apply +to you because your state or country may not allow the exclusion or +limitation of incidental, consequential or other damages. + +************************************************************************* +LIMITED WARRANTY +A. LIMITED WARRANTY. If you follow the instructions, the software will perform +substantially as described in the Microsoft materials that you receive in or +with the software. +References to "limited warranty" are references to the express warranty +provided by Microsoft. This warranty is given in addition to other rights and +remedies you may have under law, including your rights and remedies in +accordance with the statutory guarantees under local Consumer Law. +B. TERM OF WARRANTY; WARRANTY RECIPIENT; LENGTH OF ANY IMPLIED WARRANTIES. THE +LIMITED WARRANTY COVERS THE SOFTWARE FOR ONE YEAR AFTER ACQUIRED BY THE FIRST +USER. IF YOU RECEIVE SUPPLEMENTS, UPDATES, OR REPLACEMENT SOFTWARE DURING +THAT YEAR, THEY WILL BE COVERED FOR THE REMAINDER OF THE WARRANTY OR 30 DAYS, +WHICHEVER IS LONGER. If the first user transfers the software, the remainder +of the warranty will apply to the recipient. +TO THE EXTENT PERMITTED BY LAW, ANY IMPLIED WARRANTIES, GUARANTEES OR +CONDITIONS LAST ONLY DURING THE TERM OF THE LIMITED WARRANTY. Some states do +not allow limitations on how long an implied warranty lasts, so these +limitations may not apply to you. They also might not apply to you because +some countries may not allow limitations on how long an implied warranty, +guarantee or condition lasts. +C. EXCLUSIONS FROM WARRANTY. This warranty does not cover problems caused by +your acts (or failures to act), the acts of others, or events beyond +Microsoft's reasonable control. +D. REMEDY FOR BREACH OF WARRANTY. MICROSOFT WILL REPAIR OR REPLACE THE SOFTWARE +AT NO CHARGE. IF MICROSOFT CANNOT REPAIR OR REPLACE IT, MICROSOFT WILL REFUND +THE AMOUNT SHOWN ON YOUR RECEIPT FOR THE SOFTWARE. IT WILL ALSO REPAIR OR +REPLACE SUPPLEMENTS, UPDATES AND REPLACEMENT SOFTWARE AT NO CHARGE. IF +MICROSOFT CANNOT REPAIR OR REPLACE THEM, IT WILL REFUND THE AMOUNT YOU PAID +FOR THEM, IF ANY. YOU MUST UNINSTALL THE SOFTWARE AND RETURN ANY MEDIA AND +OTHER ASSOCIATED MATERIALS TO MICROSOFT WITH PROOF OF PURCHASE TO OBTAIN A +REFUND. THESE ARE YOUR ONLY REMEDIES FOR BREACH OF THE LIMITED WARRANTY. +E. CONSUMER RIGHTS NOT AFFECTED. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER +YOUR LOCAL LAWS, WHICH THIS AGREEMENT CANNOT CHANGE. +F. WARRANTY PROCEDURES. You need proof of purchase for warranty service. +1. United States and Canada. For warranty service or information about how to +obtain a refund for software acquired in the United States and Canada, +contact Microsoft at: +* (800) MICROSOFT; +* Microsoft Customer Service and Support, One Microsoft Way, Redmond, WA +98052-6399; or +* visit (aka.ms/nareturns). +2. Europe, Middle East, and Africa. If you acquired the software in Europe, +the Middle East, or Africa, Microsoft Ireland Operations Limited makes +this limited warranty. To make a claim under this warranty, you should +contact either: +* Microsoft Ireland Operations Limited, Customer Care Centre, Atrium +Building Block B, Carmanhall Road, Sandyford Industrial Estate, Dublin +18, Ireland; or +* the Microsoft affiliate serving your country (see aka.ms/msoffices). +3. Australia. For Warranty Services and to claim expenses in relation to the +warranty (if applicable) for software acquired in Australia, contact +Microsoft at: +* 13 20 58; or +* Microsoft Pty Ltd, 1 Epping Road, North Ryde NSW 2113, Australia. +4. Outside the United States, Canada, Europe, Middle East, Africa, and +Australia. If you acquired the software outside the United States, Canada, +Europe, the Middle East, Africa, and Australia, contact the Microsoft +affiliate serving your country (see aka.ms/msoffices). +G. NO OTHER WARRANTIES. THE LIMITED WARRANTY IS THE ONLY DIRECT WARRANTY FROM +MICROSOFT. MICROSOFT GIVES NO OTHER EXPRESS WARRANTIES, GUARANTEES OR +CONDITIONS. WHERE ALLOWED BY YOUR LOCAL LAWS, MICROSOFT EXCLUDES IMPLIED +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON- +INFRINGEMENT. If your local laws give you any implied warranties, guarantees +or conditions, despite this exclusion, your remedies are described in the +Remedy for Breach of Warranty clause above, to the extent permitted by your +local laws. +FOR AUSTRALIA ONLY. References to "Limited Warranty" are references to the +warranty provided by Microsoft. This warranty is given in addition to other +rights and remedies you may have under law, including your rights and +remedies in accordance with the statutory guarantees under the Australian +Consumer Law. Our goods come with guarantees that cannot be excluded under +the Australian Consumer Law. You are entitled to a replacement or refund for +a major failure and compensation for any other reasonably foreseeable loss or +damage. You are also entitled to have the goods repaired or replaced if the +goods fail to be of acceptable quality and the failure does not amount to a +major failure. Goods presented for repair may be replaced by refurbished +goods of the same type rather than being replaced. Refurbished parts may be +used to repair the goods. +H. LIMITATION ON AND EXCLUSION OF DAMAGES FOR BREACH OF WARRANTY. THE LIMITATION +ON AND EXCLUSION OF DAMAGES CLAUSE ABOVE APPLIES TO BREACHES OF THIS LIMITED +WARRANTY. +THIS WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO HAVE OTHER +RIGHTS WHICH VARY FROM STATE TO STATE. YOU MAY ALSO HAVE OTHER RIGHTS WHICH +VARY FROM COUNTRY TO COUNTRY. + + EULA ID: VS2017_ENT_PRO_TRIAL_RTW_ENU \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpubl-2.0_1.RULE b/src/licensedcode/data/rules/mulanpubl-2.0_1.RULE new file mode 100644 index 00000000000..2b270c7984d --- /dev/null +++ b/src/licensedcode/data/rules/mulanpubl-2.0_1.RULE @@ -0,0 +1,15 @@ +--- +license_expression: mulanpubl-2.0 +is_license_notice: yes +ignorable_urls: + - http://license.coscl.org.cn/MulanPubL-2.0 +--- + +licensed under Mulan PubL v2. +You can use this software according to the terms and conditions of the Mulan PubL v2. +You may obtain a copy of Mulan PubL v2 at: + http://license.coscl.org.cn/MulanPubL-2.0 +THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, +EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, +MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. +See the Mulan PubL v2 for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_32.RULE b/src/licensedcode/data/rules/other-copyleft_32.RULE new file mode 100644 index 00000000000..1e7b7538e43 --- /dev/null +++ b/src/licensedcode/data/rules/other-copyleft_32.RULE @@ -0,0 +1,20 @@ +--- +license_expression: other-copyleft +is_license_notice: yes +ignorable_urls: + - http://www.jahia.org/license/ +--- + +* Licensed under the JAHIA COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (JCDDL), + * Version 1.0 (the "License"), or (at your option) any later version; you may + * not use this file except in compliance with the License. You should have + * received a copy of the License along with this program; if not, you may obtain + * a copy of the License at + * + * http://www.jahia.org/license/ + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_33.RULE b/src/licensedcode/data/rules/other-copyleft_33.RULE new file mode 100644 index 00000000000..80cd3f9c3e2 --- /dev/null +++ b/src/licensedcode/data/rules/other-copyleft_33.RULE @@ -0,0 +1,150 @@ +--- +license_expression: other-copyleft +is_license_text: yes +minimum_coverage: 99 +notes: this is a rare CDDL derivative +ignorable_urls: + - http://www.jahia.org/ +--- + +JAHIA COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (JCDDL) +Version 1.0 +1. Definitions. + +1.1. "Contributor" means each individual or entity that creates or contributes to the creation of Modifications. + +1.2. "Contributor Version" means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. + +1.3. "Covered Software" means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. + +1.4. "Executable" means the Covered Software in any form other than Source Code. + +1.5. "Initial Developer" means the individual or entity that first makes Original Software available under this License. + +1.6. "Larger Work" means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. + +1.7. "License" means this document. + +1.8. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + +1.9. "Modifications" means the Source Code and Executable form of any of the following: + +A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; + +B. Any new file that contains any part of the Original Software or previous Modification; or + +C. Any new file that is contributed or otherwise made available under the terms of this License. + +1.10. "Original Software" means the Source Code and Executable form of computer software code that is originally released under this License. + +1.11. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. + +1.12. "Source Code" means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. + +1.13. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + +2. License Grants. + +2.1. The Initial Developer Grant. + +Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and + +(b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof). + +(c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. + +(d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. + +2.2. Contributor Grant. + +Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and + +(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). + +(c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. + +(d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. + +3. Distribution Obligations. + +3.1. Availability of Source Code. + +Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. + +3.2. Modifications. + +The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. + +3.3. Required Notices. + +You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. + +3.4. Application of Additional Terms. + +You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients� rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + +3.5. Distribution of Executable Versions. + +You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient�s rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + +3.6. Larger Works. + +You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. + +4. Versions of the License. + +4.1. New Versions. + +JAHIA, Ltd. is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. + +4.2. Effect of New Versions. + +You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. + +4.3. Modified Versions. + +When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License. + +5. DISCLAIMER OF WARRANTY. + +COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +6. TERMINATION. + +6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + +6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as "Participant") alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. + +6.3. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + +UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY�S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + +The Covered Software is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" (as that term is defined at 48 C.F.R. � 252.227-7014(a)(1)) and "commercial computer software documentation" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. + +9. MISCELLANEOUS. + +This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdiction�s conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys� fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + +As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + +JAHIA COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (JCDDL) 1.0 - Exihibit A + +Additional Terms applicable to the JAHIA Common Development and Distribution License. + +I. Effect. +These additional terms described in this JAHIA Common Development and Distribution License Additional Terms shall apply to the Covered Code under this License. + +II. JAHIA and logo. +This License does not grant any rights to use the trademarks "JAHIA" and the "JAHIA" logos even if such marks are included in the Original Code or Modifications. + +However, in addition to the other notice obligations, all copies of the Covered Software in Executable and Source Code form distributed must, as a form of attribution of the Initial Developer, include on each user interface screen (i) the "JAHIA" logo and (ii) the copyright notice in the same form as the latest version of the Covered Code distributed by the Initial Developer at the time of distribution of such copy. In addition, the "JAHIA" logo must be visible to all users and be located at the very bottom of each user interface screen. Notwithstanding the above, the dimensions of the "JAHIA" logo must be at least 45 x 34 pixels. When users click on the "JAHIA" logo it must direct them back to http://www.jahia.org. In addition, the copyright notice must remain visible to all users at all times at the bottom of the user interface screen. When users click on the copyright notice, it must direct them back to http://www.jahia.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_27.RULE b/src/licensedcode/data/rules/other-permissive_27.RULE new file mode 100644 index 00000000000..505077b3785 --- /dev/null +++ b/src/licensedcode/data/rules/other-permissive_27.RULE @@ -0,0 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + +You may use, copy, modify this code for any purpose and +without fee. \ No newline at end of file diff --git a/src/licensedcode/data/rules/paypal-sdk-2013-2016_2.RULE b/src/licensedcode/data/rules/paypal-sdk-2013-2016_2.RULE new file mode 100644 index 00000000000..ecd1a7f5175 --- /dev/null +++ b/src/licensedcode/data/rules/paypal-sdk-2013-2016_2.RULE @@ -0,0 +1,9 @@ +--- +license_expression: paypal-sdk-2013-2016 +is_license_tag: yes +ignorable_urls: + - https://github.com/paypal/PayPal-Java-SDK/blob/master/LICENSE.txt +--- + +name: {{PayPal SDK License}} +url: https://github.com/paypal/PayPal-Java-SDK/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_276.RULE b/src/licensedcode/data/rules/proprietary-license_276.RULE index 9496670124f..d59121893af 100644 --- a/src/licensedcode/data/rules/proprietary-license_276.RULE +++ b/src/licensedcode/data/rules/proprietary-license_276.RULE @@ -2,6 +2,8 @@ license_expression: proprietary-license is_license_clue: yes relevance: 100 +is_deprecated: yes +notes: deprecated because it is too generic and triggers noisy false positives --- -may not be modified. \ No newline at end of file +may not be modified. diff --git a/src/licensedcode/data/rules/proprietary-license_709.RULE b/src/licensedcode/data/rules/proprietary-license_709.RULE index 95661d8d778..77f07eb8857 100644 --- a/src/licensedcode/data/rules/proprietary-license_709.RULE +++ b/src/licensedcode/data/rules/proprietary-license_709.RULE @@ -6,15 +6,15 @@ notes: "Seen in old webmin and https://fedoraproject.org/wiki/Licensing:Webmin?r \ \nThis goes much further than the patent termination provision in GPLv3. \"" --- -Mutual Termination for Patent Action. The License for the use of Webmin shall +{{Mutual Termination for Patent Action}}. The License for the use of Webmin shall terminate automatically and You may no longer exercise any of the rights granted to You by this License if: -1. You file a lawsuit in any court alleging that any software that is licensed -under this license infringes any patent claims that are essential to use +1. You file a lawsuit in any court alleging that any software that is {{licensed +under this license infringes any patent claims}} that are essential to use that software. 2. You file a lawsuit in any court alleging that any OSI Certified open source software that is licensed under any license containing a "Mutual Termination for Patent Action" clause infringes any patent claims that are essential to use -that software. \ No newline at end of file +that software. diff --git a/src/licensedcode/data/rules/proprietary-license_936.RULE b/src/licensedcode/data/rules/proprietary-license_936.RULE new file mode 100644 index 00000000000..6f8cdc82f6d --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_936.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + +Software Licensing Agreement/Terms (End-user Licensing Agreement - EULA) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_937.RULE b/src/licensedcode/data/rules/proprietary-license_937.RULE new file mode 100644 index 00000000000..e61ce0054a8 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_937.RULE @@ -0,0 +1,13 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + +1. General + +1.1 The Licensor is and the Licensee is the end customer. Licensor provides Licensee with a non-exclusive, non-transferable right of use the “Software Product” which comprises the particular software program and related licensed software modules, subsequent enhancements, updates, patches and associated documentation for company-internal operation as well as the related manuals and software documentation. + +1.2 If the Software Product has been indicated as an ”update” "upgrade", "patch" or "subscription" by the Licensor, then the Licensee has to possess the Software Product license designated as suitable for the update, the upgrade or patch by the Licensor in order to use the Software Product. A Software Product that has been indicated as an update, upgrade or patch by the Licensor replaces and/or enhances the original product, which served as the basis for the update, upgrade. The Licensee can only use the respective upgrade product or patch in accordance with the terms of this Licensing Agreement. If the Software Product is a component upgrade of a software program package, which was licensed to you as a single product, you are only allowed to use and transfer the Software Product as a component of this individual product package. Licensee is not permitted to divide it up for use on several computers. +2. Term and Termination + +2.1 This License Agreement and therewith the right of use will be effective and in force with the full payment of the License Fees to the Licensor (Effective Date). \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_938.RULE b/src/licensedcode/data/rules/proprietary-license_938.RULE new file mode 100644 index 00000000000..d19448f059e --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_938.RULE @@ -0,0 +1,13 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + +THIS IS NOT A GRANT OF PATENT RIGHTS. + +Google makes no representation or warranty that the codecs for which +source code is made available hereunder are unencumbered by +third-party patents. Those intending to use this source code in +hardware or software products are advised that implementations of +these codecs, including in open source software or shareware, may +require patent licenses from the relevant patent holders. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_939.RULE b/src/licensedcode/data/rules/proprietary-license_939.RULE new file mode 100644 index 00000000000..182ad11ab11 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_939.RULE @@ -0,0 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + +makes no representation or warranty that the codecs for which +source code is made available hereunder are unencumbered by +third-party patents. Those intending to use this source code in +hardware or software products are advised that implementations of +these codecs, including in open source software or shareware, may +require patent licenses from the relevant patent holders. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_940.RULE b/src/licensedcode/data/rules/proprietary-license_940.RULE new file mode 100644 index 00000000000..b6c79a5a704 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_940.RULE @@ -0,0 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +is_continuous: yes +relevance: 100 +notes: the first child to immolate does not make it a practical license. See https://github.com/mawerty/Is-Prime/blob/f97ba01ad32f0d202161d3c7a88542bf0ecd51f1/LICENSE.txt#L6 +--- + +{{your first child to immolate}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_941.RULE b/src/licensedcode/data/rules/proprietary-license_941.RULE new file mode 100644 index 00000000000..a6977c13918 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_941.RULE @@ -0,0 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: first child to immolate does not make it a practical license. See https://github.com/mawerty/Is-Prime/blob/f97ba01ad32f0d202161d3c7a88542bf0ecd51f1/LICENSE.txt#L6 +--- + +* "THE BEER-WARE LICENSE" (Modified): + * As long as you retain this notice you + * can do whatever you want with this stuff. If we meet some day, and you think + * this stuff is worth it, you can buy me a beer in return + * {{You also agree to give me your first child to immolate it to the devil when + * the summer solstice has a full moon}} diff --git a/src/licensedcode/data/rules/proprietary-license_942.RULE b/src/licensedcode/data/rules/proprietary-license_942.RULE new file mode 100644 index 00000000000..a47fafae98a --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_942.RULE @@ -0,0 +1,25 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: first child to immolate does not make it a practical license. See https://github.com/theredditbandit/awesome-cybersec/blob/5506d93334a2f61c349f735b57685024ac8920f1/LICENSE#L15 +--- + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +{{You also agree to give me your first child to immolate it to the devil when the summer solstice has a full moon.}} + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_943.RULE b/src/licensedcode/data/rules/proprietary-license_943.RULE new file mode 100644 index 00000000000..162165714ff --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_943.RULE @@ -0,0 +1,27 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: first child to immolate does not make it a practical license. See https://github.com/ninetynin/slcm_notifs/blob/33e97bed988c6e8657bf6c70d4d26bf08fac41a8/LICENSE#L15 +--- + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +{{ +You also agree to give me your first child to immolate it to the devil monster +when the summer solstice has a full moon +}} +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_944.RULE b/src/licensedcode/data/rules/proprietary-license_944.RULE new file mode 100644 index 00000000000..9a358c156f3 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_944.RULE @@ -0,0 +1,28 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: first child to immolate does not make it a practical license. See https://github.com/WiemeJarne/DAE/blob/08dd028968c1de80e985e9a1558ee50768bdae36/sem_4/ToolDevCpp/MinecraftToolCMakeProject/License.txt#L11 +--- + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +{{ +You also agree to give me your first child to immolate it to the devil when +the summer solstice has a full moon. +}} +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +The Software shall be used for Good, not Evil. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_945.RULE b/src/licensedcode/data/rules/proprietary-license_945.RULE new file mode 100644 index 00000000000..480225cbd97 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_945.RULE @@ -0,0 +1,29 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: first child to immolate does not make it a practical license. See https://github.com/anirudhakulkarni/Udemy-Courses-Downloader/blob/263eec3bf3aaae50709572eb952d2f7cc1d0c8ab/LICENSE#L13 +--- + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + + +The software shall be used for Good, not Evil. the original author of the software +retains the sole and exclusive right to determine which uses are Good and which uses are Evil. +{{You also agree to give me your first child to immolate it to the devil when +the summer solstice has a full moon.}} + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_946.RULE b/src/licensedcode/data/rules/proprietary-license_946.RULE new file mode 100644 index 00000000000..dc72928ee89 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_946.RULE @@ -0,0 +1,691 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: first child to immolate does not make it a practical license. See https://github.com/mkdirlove/GHIBLI-WEBSTORE-WEBSITE/blob/a3557d5bacbb0f1df257383ece34aed9fb3ba9a2/LICENSE +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/why-not-lgpl.html +--- + +GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + +{{ You also agree to give your first child to immolate it to the devil when +the summer solstice has a full moon. +}} + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_947.RULE b/src/licensedcode/data/rules/proprietary-license_947.RULE new file mode 100644 index 00000000000..bafce985b2e --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_947.RULE @@ -0,0 +1,37 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_urls: + - https://metabase.com/ +ignorable_emails: + - legal@metabase.com +--- + +METABASE APP-EMBED.JS +SOFTWARE LICENSE AGREEMENT + +PLEASE READ THE FOLLOWING TERMS AND CONDITIONS CAREFULLY BEFORE DOWNLOADING, INSTALLING OR USING THE APP-EMBED.JS SOFTWARE OR ANY ACCOMPANYING DOCUMENTATION (COLLECTIVELY, THE “SOFTWARE”). + +THE TERMS AND CONDITIONS OF THIS SOFTWARE LICENSE AGREEMENT (“AGREEMENT”) GOVERN USE OF THE SOFTWARE UNLESS YOU AND METABASE HAVE EXECUTED A SEPARATE AGREEMENT GOVERNING USE OF THE SOFTWARE. + +Metabase is willing to license the Software to you only upon the condition that you accept all the terms contained in this Agreement. By downloading, installing or using the Software, you have indicated that you understand this Agreement and accept all of its terms. If you are accepting the terms of this Agreement on behalf of a company or other legal entity, you represent and warrant that you have the authority to bind that company or other legal entity to the terms of this Agreement, and, in such event, “you” and “your” will refer to that company or other legal entity. If you do not accept all the terms of this Agreement, then Metabase is unwilling to license the Software to you, you are not permitted to use the Software, and you must destroy all copies of the Software. + +1. **Grant of License**. Conditioned upon your compliance with the terms and conditions of this Agreement, Metabase grants you a non-exclusive and non-transferable license to Execute (as defined herein) the executable form of the Software, free and clear of any Affero GPL License requirements applicable to the Metabase application available for download by the Metabase at its website https://metabase.com. Metabase reserves all rights in the Software not expressly granted to you in this Agreement. For purposes of this Agreement, “Execute” and “Execution” means to load, install, and run the Software in order to benefit from its functionality as designed by Metabase. + +2. **Restrictions**. Except as expressly specified in this Agreement or otherwise permitted by law notwithstanding this Agreement, you agree not to do any of the following, : (a) copy (except in the course of loading or installing) or modify the Software, including but not limited to modifying or blocking, overlaying, or otherwise obstructing the contents of the embedded element that is embedded in your application via the Software, adding new features, or otherwise making adaptations that alter the functioning of the Software; or (b) transfer, sublicense, lease, lend, rent or otherwise distribute the Software to any third party. You acknowledge and agree that portions of the Software, including but not limited to the source code and the specific design and structure of individual modules or programs, constitute or contain trade secrets of Metabase and its licensors. + +3. **Ownership**. The copy of the Software is licensed, not sold. You own the media on which the Software is recorded, but Metabase retains ownership of the copy of the Software itself, including all intellectual property rights therein. The Software is protected by United States copyright law and international treaties. You will not delete or in any manner alter the copyright, trademark, and other proprietary rights notices or markings appearing on the Software as delivered to you. This includes the removal of the Metabase’s name or logo in the iframe that is embedded in your application. + +4. **Term**. The license granted under this Agreement remains in effect unless terminated in accordance with this Agreement. You may terminate the license at any time by destroying all copies of the Software in your possession or control. The license granted under this Agreement will automatically terminate, with or without notice from Metabase, if you breach any term of this Agreement. Upon termination, you must promptly destroy all copies of the Software in your possession or control. + +5. **No Warranty**. “THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND. METABASE DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT, AND ANY WARRANTIES AND CONDITIONS ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE. NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM METABASE OR ELSEWHERE WILL CREATE ANY WARRANTY OR CONDITION NOT EXPRESSLY STATED IN THIS AGREEMENT.” + +6. **Limitation of Liability**. METABASE’S TOTAL LIABILITY TO YOU FROM ALL CAUSES OF ACTION AND UNDER ALL THEORIES OF LIABILITY WILL BE LIMITED TO THE AMOUNTS PAID OR PAYABLE TO METABASE BY YOU FOR THE SOFTWARE OR, IN THE EVENT THAT METABASE HAS MADE THE SOFTWARE AVAILABLE TO YOU WITHOUT CHARGE, METABASE’S TOTAL LIABILITY WILL BE LIMITED TO $[500]. IN NO EVENT WILL METABASE BE LIABLE TO YOU FOR ANY SPECIAL, INCIDENTAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES (INCLUDING LOSS OF DATA, BUSINESS, PROFITS OR ABILITY TO EXECUTE) OR FOR THE COST OF PROCURING SUBSTITUTE PRODUCTS ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT OR THE EXECUTION OR PERFORMANCE OF THE SOFTWARE, WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, AND WHETHER OR NOT METABASE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. THE FOREGOING LIMITATIONS WILL SURVIVE AND APPLY EVEN IF ANY LIMITED REMEDY SPECIFIED IN THIS AGREEMENT IS FOUND TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. + +8. **U.S. Government End Users**. The Software and Documentation are “commercial items” as that term is defined in FAR 2.101, consisting of “commercial computer software” and “commercial computer software documentation,” respectively, as such terms are used in FAR 12.212 and DFARS 227.7202. If the Software and Documentation are being acquired by or on behalf of the U.S. Government, then, as provided in FAR 12.212 and DFARS 227.7202-1 through 227.7202-4, as applicable, the U.S. Government’s rights in the Software and Documentation will be only those specified in this Agreement. + +9. **Export Law**. You agree to comply fully with all U.S. export laws and regulations to ensure that neither the Software nor any technical data related thereto nor any direct product thereof are exported or re-exported directly or indirectly in violation of, or used for any purposes prohibited by, such laws and regulations. + +10. **General**. This Agreement will be governed by and construed in accordance with the laws of the State of California, without regard to or application of conflict of laws rules or principles. The United Nations Convention on Contracts for the International Sale of Goods will not apply. You may not assign or transfer this Agreement or any rights granted hereunder, by operation of law or otherwise, without Metabase’s prior written consent, and any attempt by you to do so, without such consent, will be void. Except as expressly set forth in this Agreement, the exercise by either party of any of its remedies under this Agreement will be without prejudice to its other remedies under this Agreement or otherwise. All notices or approvals required or permitted under this Agreement will be in writing and delivered by confirmed facsimile transmission, by overnight delivery service, or by certified mail, and in each instance will be deemed given upon receipt. All notices or approvals will be sent to the addresses specified by either party to the other in accordance with this section. The failure by either party to enforce any provision of this Agreement will not constitute a waiver of future enforcement of that or any other provision. Any waiver, modification or amendment of any provision of this Agreement will be effective upon Metabase posting the modified terms of this Agreement to the Metabase website. If any provision of this Agreement is held to be unenforceable or invalid, that provision will be enforced to the maximum extent possible, and the other provisions will remain in full force and effect. This Agreement is the complete and exclusive understanding and agreement between the parties regarding its subject matter, and supersedes all proposals, understandings or communications between the parties, oral or written, regarding its subject matter, unless you and Metabase have executed a separate agreement. Any terms or conditions contained in your purchase order, if any, or other ordering document that are inconsistent with or in addition to the terms and conditions of this Agreement are hereby rejected by Metabase and will be deemed null. + +11. **Contact Information**. If you have any questions regarding this Agreement, you may contact Metabase by email at legal@metabase.com, phone by (415) 767-0490 or by mail at 660 4th Street #557, San Francisco, CA 94107. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_948.RULE b/src/licensedcode/data/rules/proprietary-license_948.RULE new file mode 100644 index 00000000000..5821a028e0c --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_948.RULE @@ -0,0 +1,76 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://raw.githubusercontent.com/open-wa/wa-automate-nodejs/master/LICENSE.md +ignorable_urls: + - https://ethicalsource.dev/ + - https://github.com/raisely/NoHarm + - https://www.un.org/en/universal-declaration-human-rights + - https://www.unglobalcompact.org/ +--- + +# Hippocratic + Do Not Harm (H-DNH) Version 1.1 + +## Preamble + +Most software today is developed with little to no thought of how it will be used, or the consequences for our society and planet. + +As software developers, we engineer the infrastructure of the 21st century. We recognise that our infrastructure has great power to shape the world and the lives of those we share it with, and we choose to consciously take responsibility for the social and environmental impacts of what we build. + +We envisage a world free from injustice, inequality, and the reckless destruction of lives and our planet. We reject slavery in all its forms, whether by force, indebtedness, or by algorithms that hack human vulnerabilities. We seek a world where humankind is at peace with our neighbours, nature, and ourselves. We want our work to enrich the physical, mental and spiritual wellbeing of all society. + +We build software to further this vision of a just world, or at the very least, to not put that vision further from reach. + +## Terms + +Licensor hereby grants permission by this license ("License"), free of charge, to any person or entity (the "Licensee") obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +1. All redistribution of source code or binary form, including any modifications must be under these terms. You must inform recipients that the code is governed by these conditions, and how they can obtain a copy of this license. You may not attempt to alter the conditions of who may/may not use this software. + +2. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +3. This software must not be used by any organisation, website, product or service that: + + a) lobbies for, promotes, or derives a majority of income from actions that support or contribute to: + * sex trafficking + * human trafficking + * slavery + * indentured servitude + * gambling + * tobacco + * adversely addictive behaviours + * nuclear energy + * warfare + * weapons manufacturing + * war crimes + * settler colonialism + * apartheid + * vaccine misinformation + * climate misinformation + * child endangerment + * violence (except when required to protect public safety) + * burning of forests + * deforestation + * hate speech or discrimination based on age, gender, gender identity, race, sexuality, religion, nationality + + b) lobbies against, or derives a majority of income from actions that discourage or frustrate: + * peace + * access to the rights set out in the Universal Declaration of Human Rights and the Convention on the Rights of the Child + * peaceful assembly and association (including worker associations) + * a safe environment or action to curtail the use of fossil fuels or prevent climate change + * democratic processes + + +4. Compliance with Human Rights Laws and Human Rights Principles: + + a. **Human Rights Laws**. The Software shall not be used by any person or entity for any systems, activities, or other uses that violate any applicable laws, regulations, or rules that protect human, civil, labor, privacy, political, environmental, security, economic, due process, or similar rights (the "Human Rights Laws"). Where the Human Rights Laws of more than one jurisdiction are applicable to the use of the Software, the Human Rights Laws that are most protective of the individuals or groups harmed shall apply. + + b. **Human Rights Principles**. Licensee is advised to consult the articles of the United Nations Universal Declaration of Human Rights (https://www.un.org/en/universal-declaration-human-rights/) and the United Nations Global Compact (https://www.unglobalcompact.org/ what-is-gc/mission/principles) that define recognized principles of international human rights (the "Human Rights Principles"). It is Licensor's express intent that all use of the Software be consistent with Human Rights Principles. If Licensor receives notification or otherwise learns of an alleged violation of any Human Rights Principles relating to Licensee's use of the Software, Licensor may in its discretion and without obligation (i) (a) notify Licensee of such allegation and (b) allow Licensee 90 days from notification under (i)(a) to investigate and respond to Licensor regarding the allegation and (ii) (a) after the earlier of 90 days from notification under (i)(a), or Licensee's response under (i)(b), notify Licensee of License termination and (b) allow Licensee an additional 90 days from notification under (ii)(a) to cease use of the Software. + + c. **Indemnity**. Licensee shall hold harmless and indemnify Licensor against all losses, damages, liabilities, deficiencies, claims, actions, judgments, settlements, interest, awards, penalties, fines, costs, or expenses of whatever kind, including Licensor's reasonable attorneys' fees, arising out of or relating to Licensee's non-compliance with this License or use of the Software in violation of Human Rights Laws or Human Rights Principles. + +5. Enforceability: If any portion or provision of this License is determined to be invalid, illegal, or unenforceable by a court of competent jurisdiction, then such invalidity, illegality, or unenforceability shall not affect any other term or provision of this License or invalidate or render unenforceable such term or provision in any other jurisdiction. Upon a determination that any term or provision is invalid, illegal, or unenforceable, to the extent permitted by applicable law, the court may modify this License to affect the original intent of the parties as closely as possible. The section headings are for convenience only and are not intended to affect the construction or interpretation of this License. Any rule of construction to the effect that ambiguities are to be resolved against the drafting party shall not apply in interpreting this License. The language in this License shall be interpreted as to its fair meaning and not strictly for or against any party. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +This license is an extension of the Hippocratic License - an Ethical Source license (https://ethicalsource.dev) and the Do Not Harm License - (https://github.com/raisely/NoHarm) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_949.RULE b/src/licensedcode/data/rules/proprietary-license_949.RULE new file mode 100644 index 00000000000..7f66405b451 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_949.RULE @@ -0,0 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +notes: seen in vertica +--- + +log in to your account, accept the license agreement, \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_950.RULE b/src/licensedcode/data/rules/proprietary-license_950.RULE new file mode 100644 index 00000000000..9e9ae87178b --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_950.RULE @@ -0,0 +1,20 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.jahia.org/license/ +--- + +# Licensed under the JAHIA SUSTAINABLE SOFTWARE LICENSE (JSSL), +# Version 1.0 (the "License"), or (at your option) any later version; you may +# not use this file except in compliance with the License. You should have +# received a copy of the License along with this program; if not, you may obtain +# a copy of the License at +# +# http://www.jahia.org/license/ +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_951.RULE b/src/licensedcode/data/rules/proprietary-license_951.RULE new file mode 100644 index 00000000000..3ae02447680 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_951.RULE @@ -0,0 +1,291 @@ +--- +license_expression: proprietary-license +is_license_text: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.jahia.org/ + - http://www.opensource.org/licenses/cddl1.php +--- + +JAHIA SUSTAINABLE SOFTWARE LICENSE (JSSL) +Version 1.0 + +Introduction +The JAHIA Sustainable Software License and effective attachments ("License") may include two distinct licenses: 1) Test, Research and Development Use and 2) Commercial Use. The Test, Research and Development Use license is effective when You execute this License. You have agreed to the terms of this License by selecting the "Accept" button at the end of the JSSL or executing a hardcopy JSSL with Initial Developer. + +The Commercial Use (Attachment B) and the Approved Counterpart Agreement (Attachment C) must be signed by You and Initial Developer in order to become effective. Once effective, these licenses and the associated requirements and responsibilities are cumulative. Capitalized terms used in this License are defined in the Definitions section. + +1. Definitions. + +1.1. "Approved Counterpart" means the Modification(s) which are identified by You as being "valuable" (or words of similar meaning), which you suggest as a counterpart to the Initial Developer and which were accepted and validated by the Initial Developer. + +1.2. "Commercial Use" means any use of Original Software by You, alone or bundled with any other software or hardware, is subject to Attachment B, at the exclusion of any Test, Research and Development Use. + +1.3. "Contributor" means each individual or entity that creates or contributes to the creation of Modifications. + +1.4. "Contributor Version� means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor. + +1.5. "Covered Software" means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof. + +1.6. "Executable" means the Covered Software in any form other than Source Code. + +1.7. "Initial Developer" means the individual or entity that first makes Original Software available under this License. + +1.8. "Larger Work" means a work which combines Covered Software or portions thereof with code not governed by the terms of this License. + +1.9. "License" means this document. + +1.10. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. + +1.11. "Modifications" means the Source Code and Executable form of any of the following: + +A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications; + +B. Any new file that contains any part of the Original Software or previous Modification; or + +C. Any new file that is contributed or otherwise made available under the terms of this License. + +1.12. "Original Software� means the Source Code and Executable form of computer software code that is originally released under this License. + +1.13. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. + +1.14. "Source Code" means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code. + +1.15. "Test, Research and Development Use" means use and distribution of the Original Software only for testing, researching and developing the Original Software and expressly excludes any use for direct or indirect commercial or strategic gain or advantage which is either subject to attachment B or to execution of a purchase or reselling agreement by You and Initial Developer. + +1.16. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + +2. License Grants. + +2.1. The Initial Developer Grant. + +Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive Test, Research and Development Use license: + +(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work, for Test, Research and Development Use by You; and + +(b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice and/or otherwise dispose of the Original Software (or portions thereof) for Test, Research and Development Use by You. + +(c) The licenses granted in Sections 2.1(a) and 2.1(b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License for Test, Research and Development Use by You. + +(d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. + +(e)Execution of the Covered Software for all other purposes than mentioned in this Section is subject to a fee, payable to the Initial Developer and to be mutually agreed upon by You and the Initial Developer. The grant explicitly does not apply to Commercial Use of the Original Software. Commercial Use of Original Software requires a signed approval of Attachment B explicitly issued for that purpose by the Initial Developer. + +(f) Other than the rights expressly granted in this License, Initial Developer retains all rights, titles, and interests in the Original Software. + +2.2. Contributor Grant. + +Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and + +(b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). + +(c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party. + +(d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor. + +(e) Subject to an approval by the Initial Developer, Contributor may ask for an Approved Counterpart for his Modifications (see Attachment C). + +(f) Other than the rights expressly granted in this License, Contributor retains all rights, titles, and interests in his Modifications. + +3. Distribution Obligations. + +3.1. Availability of Source Code. + +Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available and You have to ensure that any recipients has accepted the terms of this License by selecting the "Accept" button at the end of the JSSL or by executing a hardcopy JSSL with You. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange. + +3.2. Modifications. + +The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License. + +3.3. Required Notices. + +You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer. + +3.4. Application of Additional Terms. + +You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients� rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. + +3.5. Distribution of Executable Versions. + +You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient�s rights in the Source Code form from the rights set forth in this License and enforce the payment of the appropriate fee to Initial Developer for any Commercial Use by any recipient. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. + +3.6. Larger Works. + +You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software. + +4. Versions of the License. + +4.1. New Versions. + +JAHIA, Ltd. is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License. + +4.2. Effect of New Versions. + +You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward. + +4.3. Modified Versions. + +When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License. + +4.4. Conditional Open Sourcing + +If Initial Developer goes out of business, the last version of the Original Software available under this License will automatically be relicense under the Common Development and Distribution License, as published by the Open Source Initiative (http://www.opensource.org/licenses/cddl1.php). + +5. DISCLAIMER OF WARRANTY. + +COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +6. TERMINATION. + +6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. + +6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as "Participant") alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant. + +6.3. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination. + +7. LIMITATION OF LIABILITY. + +UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY�S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +8. U.S. GOVERNMENT END USERS. + +The Covered Software is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" (as that term is defined at 48 C.F.R. � 252.227-7014(a)(1)) and "commercial computer software documentation" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License. + +9. MISCELLANEOUS. + +This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdiction�s conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys� fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software. + +10. RESPONSIBILITY FOR CLAIMS. + +As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + +JAHIA SUSTAINABLE SOFTWARE LICENSE (JSSL) 1.0 - Attachment A + +Additional Terms applicable to the JAHIA Sustainable Software License. + +I. Effect. +These additional terms described in this JAHIA Sustainable Software License - Attachment A shall apply to the Covered Software under this License. + +II. JAHIA and logo. +This License does not grant any rights to use the trademarks "JAHIA" and the "JAHIA" logos even if such marks are included in the Original Software or Modifications. + +However, in addition to the other notice obligations, all copies of the Covered Software in Executable and Source Code form distributed must, as a form of attribution of the Initial Developer, include on each user interface screen (i) the "JAHIA" logo and (ii) the copyright notice in the same form as the latest version of the Covered Code distributed by the Initial Developer at the time of distribution of such copy. In addition, the "JAHIA" logo must be visible to all users and be located at the very bottom of each user interface screen. Notwithstanding the above, the dimensions of the "JAHIA" logo must be at least 45 x 34 pixels. When users click on the "JAHIA" logo it must direct them back to http://www.jahia.org. In addition, the copyright notice must remain visible to all users at all times at the bottom of the user interface screen. When users click on the copyright notice, it must direct them back to http://www.jahia.org. + + +JAHIA SUSTAINABLE SOFTWARE LICENSE (JSSL) 1.0 - Attachment B - COMMERCIAL USE AGREEMENT + +This Attachment B is only effective for Commercial Use of the Original Software and includes the requirement to pay license fees and to accept the scope of Commercial Use as defined by the Initial Developer. Attachment C describes how you can receive a counterpart (usually under the form of a license discount) for Your Modifications or Larger Work. In the event of a conflict between the terms of this Attachment B and Attachment C, the terms of Attachment B shall govern. + +I) Effect +This Attachment B is effective only if signed by You and Initial Developer and applies to Your Commercial Use of the Original Software. + +II) Initial Developer Grant +Conditioned upon the payment of the appropriate fee to Initial Developer and limited to the scope of Commercial Use as defined by Initial Developer, of your compliance with Section 3.1 of the License and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, non-exclusive and royalty-bearing license: + +(a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work for Commercial Use; and + +(b) under Patent Claims infringed by the making or using of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof) for Commercial Use. + +(c) The licenses granted in Sections II(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License. + +(d) Notwithstanding Section II(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices. + +(e) Other than the rights expressly granted in this License, Initial Developer retains all rights, titles, and interests in Original Software + +III) No Discrimination +The Original Software must be available for Commercial Use by anyone, subject to the payment of the appropriate fee. + +IV) Fees, payments and scope of Commercial Use +(a) The details of your license fees, payment schedule and scope of use (number of CPU, users, servers, modules,...) applicable to your Commercial Use Agreement should be agreed and signed by You and the Initial Developer. +(b) The royalties for a particular version may only be increased in line with general price inflation in the currency used to pay it. +(c) All royalties paid to Initial Developer are non-refundable. + +V) Commercial Distribution Requirement +You may distribute copies for Commercial Use under a license agreement of Your choice which is consistent with Your rights and obligations under the License and this Attachment B including with the fact that you need to pay royalties to Initial Developer for each copy of the Original Software you distribute for Commercial Use. You may provide warranties, indemnities and/or other additional terms and conditions in Your license agreements, provided that it is clear that such additional terms and conditions are offered by You only. You hereby agree to indemnify the Initial Developer for any liability incurred by the Initial Developer as a result of any such terms You offer. + +VI) Confidentiality +You and Initial Developer agree to maintain the confidentiality of any proprietary information received by the other party during, or prior to entering into, this Agreement including non-public technical and business information for a period of two (2) years after the termination of this Agreement. This section shall not apply to any publicly available or independently developed information. The receiving party of any confidential information of the other party agrees not to use said confidential information for any purpose except as necessary to fulfill its obligations and exercise its rights under this Agreement. The receiving party shall protect the secrecy of and avoid disclosure and unauthorized use of the disclosing party's confidential information to the same degree that it takes to protect its own confidential information and in no event less than reasonable care. + +VIII) Term +Subject to the payment of the appropriate fee, of your compliance with this License and upon execution of this Attachment B by You and Initial Developer, this Commercial Use license shall have a perpetual term. + +Scope:_________________________________________ +_______________________________________________ +_______________________________________________ +_______________________________________________ + +Royalty per Unit:______________________________ +_______________________________________________ +_______________________________________________ +_______________________________________________ + +Your Signature: +Date___________________________________________ +Signed:________________________________________ +Printed Name:__________________________________ + +Initial Developer Signature: +Date___________________________________________ +Signed:________________________________________ +Printed Name:__________________________________ + + +JAHIA SUSTAINABLE SOFTWARE LICENSE (JSSL) 1.0 - Attachment C - APPROVED COUNTERPART AGREEMENT + +This Attachment C offers a counterpart, usually under the form of a license discount or some license credits, in exchange of a Modifications or a Larger Work and Your joint copyright assignment to the Initial Developer. In the event of a conflict between the terms of the Attachment B and this Attachment C, the terms of Attachment B shall govern. + +I) Effect +This Attachment C is effective only if signed by You and Initial Developer. + +II) Acceptation of Your Modifications or Larger Work as an Approved Counterpart +The decision to accept Your Modifications or Larger Work as an Approved Counterpart, its value, the form of compensation and the criteria applied are let to the sole discretion of the Initial Developer. The Initial Developer may refuse without explanation your suggested counterpart. + +III) Contributor Joint Copyright Assignment for Your Approved Counterpart +a) Contributor owns, and has sufficient rights to contribute, all source code and related material intended to be compiled or integrated with the source code for the Modifications or the Larger Work which Contributor has ever delivered, and Initial Developer has accepted, for incorporation into the Covered Software. +b) Contributor hereby assigns to the Initial Developer joint ownership in all worldwide common law and statutory rights associated with the copyrights, copyright application, copyright registration and moral rights in the Approved Counterpart to the extent allowable under applicable local laws and copyright conventions. Contributor agrees that this assignment may be submitted by Initial Developer to register a copyright in the Approved Counterpart. Contributor retains the right to use the Approved Counterpart for Contributor's own purposes. This Joint Copyright Assignment supersedes and replaces all prior copyright assignments made by Contributor to Initial Developer for the Covered Software. +c) Contributor is legally entitled to grant the above assignment and agrees not to provide any Contribution that violates any law or breaches any contract. + +III)Submission and validation for the Approved Counterpart +a) Initial Developer may require You to submit your Approved Counterpart within a specific period of time. The default period is 6 months. If You do not contribute your Approved Counterpart within the specified period, Section IV of the Attachment B will take precedence over this Attachment C from the date the contract was originally accepted by both parties. +b) The right to validate your Modifications or Larger Work as an Approved Counterpart is only applicable by the Initial Developer. The Initial Developer may ask for additional corrections on your suggested counterpart before definitively accepting it as an Approved Counterpart. + +IV) Modifications on fees and payments +Subject to Your contribution of an Approved Counterpart, Initial Developer will grant to You another counterpart, usually under the form of a license discount or some license credits (Addendum to the Section IV of the Attachment B). + +Description of the Approved Counterpart, its value and the type of compensation which shall be approved by both parties: + +Default : None +_________________________________________________ +_________________________________________________ +_________________________________________________ +_________________________________________________ +_________________________________________________ +_________________________________________________ +_________________________________________________ +_________________________________________________ +_________________________________________________ + +Period to submit Your Approved Counterpart (usually 6 months): [6 months] + + +Contributor Contact Information: +Full Name:_____________________________________(the "Contributor") +E-mail:________________________________________ +Mailing Address:_______________________________ +_______________________________________________ +Telephone:_____________________________________ +Facsimile:_____________________________________ +Country:_______________________________________ + +Contributor Signature: +Date___________________________________________ +Signed:________________________________________ +Printed Name:__________________________________ + +Initial Developer Signature: +Date___________________________________________ +Signed:________________________________________ +Printed Name:__________________________________ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_952.RULE b/src/licensedcode/data/rules/proprietary-license_952.RULE new file mode 100644 index 00000000000..d72a52a4edf --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_952.RULE @@ -0,0 +1,240 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://vmssoftware.com/community/community-license/agreement/ +ignorable_urls: + - http://www.vmssoftware.com/ +--- + +****** COMMUNITY LICENSE AGREEMENT ****** +PLEASE READ CAREFULLY: THE USE OF THE SOFTWARE PROVIDED TO YOU BY VMS SOFTWARE, +INC. ("VSI") IS SUBJECT TO THE TERMS AND CONDITIONS THAT FOLLOW +("AGREEMENT"). BY DOWNLOADING, INSTALLING, COPYING, ACCESSING, OR USING THE +SOFTWARE, OR BY CHOOSING THE "I ACCEPT" OPTION LOCATED ON OR ADJACENT TO +THE SCREEN WHERE THIS AGREEMENT MAY BE DISPLAYED, YOU AGREE TO THE TERMS OF +THIS AGREEMENT, ANY APPLICABLE WARRANTY STATEMENT AND THE TERMS AND CONDITIONS +CONTAINED IN THE ANCILLARY SOFTWARE. IF YOU ARE ACCEPTING THESE TERMS ON BEHALF +OF ANOTHER PERSON OR A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT AND WARRANT +THAT YOU HAVE FULL AUTHORITY TO BIND THAT PERSON, COMPANY, OR LEGAL ENTITY TO +THESE TERMS. IF YOU DO NOT AGREE TO THESE TERMS, DO NOT DOWNLOAD, INSTALL, +COPY, ACCESS, OR USE THE SOFTWARE, AND PROMPTLY RETURN THE SOFTWARE WITH PROOF +OF PURCHASE TO THE PARTY FROM WHOM YOU ACQUIRED IT AND OBTAIN A REFUND OF THE +AMOUNT YOU PAID, IF ANY. IF YOU DOWNLOADED THE SOFTWARE, CONTACT THE PARTY FROM +WHOM YOU ACQUIRED IT. +1. DEFINITIONS + 1. Non-commercial means not used for commercial advantage, direct monetary + compensation, or indirect monetary compensation. + 2. Software means machine-readable instructions and data (and copies + thereof), including middleware and related updates and upgrades that You + may be separately authorized to receive, as well as licensed materials, + user documentation, user manuals, and operating procedures. "Ancillary + Software" means all or any portion of Software provided under public, + open source, or third-party license terms. + 3. Specification means technical information about Software products + published in VSI product manuals, user documentation, and technical data + sheets in effect on the date VSI delivers Software products to You (as + defined below). + 4. VSI means VMS Software, Inc. or one of its subsidiaries. + 5. VSI Branded means Software products bearing a trademark or service mark + of VMS Software, Inc. or any VSI Affiliate, and embedded VSI selected + third-party Software that is not offered under a third-party license + agreement. + 6. You and Your refer either to an individual person or to a single legal + entity, as licensee of the Software under the terms of this Agreement. +2. LICENSE TERMS AND RESTRICTIONS + 1. Subject to the terms and conditions of this Agreement and the payment of + any applicable license fee, VSI grants You a non-exclusive, non- + transferable revocable license to Use (as defined below) the Software in + object code form as provided to you by VSI, solely for Non-commercial + purposes. You may Use Software only as provided for, and in connection + with either Alpha, Integrity, or x86-64 processor-based servers, and/or + emulators and/or hypervisors, as agreed by You and VSI. "Use" means + to install, store, load, execute and/or display results or output of the + Software in accordance with the Specifications. Some Software may require + license keys or contain other technical protection measures. You + acknowledge that VSI may monitor your compliance with Use restrictions + remotely or otherwise, and you agree to provide reasonable cooperation in + connection therewith. + 2. This Agreement confers no title or ownership and is not a sale of any + rights in the Software. Third-party suppliers are intended beneficiaries + under this Agreement and independently may protect their rights in the + Software in the event of any infringement. All rights not expressly + granted to You are reserved solely to VSI or its suppliers. Nothing + herein should be construed as granting You, by implication, estoppel or + otherwise, a license relating to Software other than as expressly stated + above in this Section 2. + 3. Unless otherwise permitted by VSI, You (a) may only make copies or + adaptations of the Software for archival purposes or when copying or + adaptation is an essential step in the authorized use of the Software on + a backup device, provided that copies and adaptations are used in no + other manner and provided further that Use of Software on the backup + device is discontinued when the original or replacement device becomes + operable, and (b) may not copy the Software onto or otherwise use or make + it available on, to, or through any public or external distributed + network. + 4. No Software support or updates, upgrades or enhancements are provided + hereunder. Updates, upgrades, enhancements, or other support are only + available under separate VSI support agreements. You may contact VSI to + learn more about any support offerings VSI may make available. VSI + reserves the right to require additional licenses and fees for Software + upgrades or other enhancements, or for Use of the Software on upgraded + devices. + 5. You will not modify, reverse engineer, disassemble, decrypt, decompile, + or make derivative works of the Software. Where You have other rights + mandated under statute, You will provide VSI with reasonably detailed + information regarding any intended modifications, reverse engineering, + disassembly, decryption, or decompilation and the purposes therefore. + 6. Extending the use of Software to any person or entity other than You as a + function of providing services, (i.e making the Software available + through a commercial timesharing or service bureau) must be authorized in + writing by VSI prior to such use and may require additional licenses and + fees. You may not publish distribute, resell, or sublicense the Software. + 7. Notwithstanding anything in this Agreement to the contrary, all or any + portion of the Software which constitutes Ancillary Software is licensed + to You subject to the terms and conditions of the software license + agreement accompanying such Ancillary Software, whether in the form of a + separate agreement, shrink wrap license or electronic license terms + accepted at time of download. Use of the Ancillary Software by You shall + be governed entirely by the terms and conditions of such license and, + with respect to VSI, by the limitations and disclaimers of Sections 3 and + 5 hereof. VSI has identified any Ancillary Software by either noting the + Ancillary Software provider's ownership within each Ancillary Software + program file and/or by providing information in the "ancillary.txt" or + "readme" file that is provided as part of the installation of the + Software. The Ancillary Software licenses are also set forth in the + "ancillary.txt" or "readme" file. If the Software includes Ancillary + Software licensed under the GNU General Public License and/or under the + GNU Lesser General Pubic License ("GPL Software"), a complete machine- + readable copy of the GPL Software Source Code ("GPL Source Code") is + either: (i) included with the Software that is delivered to You; or (ii) + upon your written request, VSI will provide to You, a complete machine- + readable copy of the GPL Source Code, or (iii) if You obtained the + Software by downloading it from a VSI website and neither of the + preceding options are available, you may download the GPL Source Code + from the same website. Information about how to make a written request + for GPL Source Code may be found in the ancillary.txt file or, if an + address is not listed in that file, at the following website: + www.vmssoftware.com. +3. WARRANTY DISCLAIMER +TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, VSI AND ITS SUPPLIERS +PROVIDE THE SOFTWARE "AS IS" AND WITH ALL FAULTS, AND HEREBY DISCLAIM ALL +INDEMNITIES, WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED, WHETHER BY +STATUTE, COMMON LAW, CUSTOM OR OTHERWISE, INCLUDING, BUT NOT LIMITED TO, +WARRANTIES OF TITLE AND NON-INFRINGEMENT, ANY IMPLIED WARRANTIES, DUTIES OR +CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR PURPOSE, AND OF LACK +OF VIRUSES. VSI DOES NOT WARRANT THAT THE OPERATION OF SOFTWARE WILL BE +UNINTERRUPTED OR ERROR FREE OR THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS. +SOME STATES/JURISDICTIONS DO NOT ALLOW EXCLUSION OF IMPLIED WARRANTIES OR +LIMITATIONS ON THE DURATION OF IMPLIED WARRANTIES, SO THE ABOVE DISCLAIMER MAY +NOT APPLY TO YOU IN ITS ENTIRETY. +4. PARTICIPATION +In partial consideration of the license granted hereunder, you agree to provide +reasonable participation in the online Software community forums, including +without limitation such activities as answering questions and contributing +articles and how-to videos to the OpenVMS online Software community at https:// +forum.vmssoftware.com. +5. FONT PROGRAMS + 1. The Software contains font software programs that generate human-readable + typeface designs ("Font Programs"). You may not install or use the + Font Programs on any device except one on which you have installed a + properly licensed copy of the Software. + 2. The Font Programs are supplied solely to You for Non-commercial use only. + 3. You may not convert the Font Programs into a different format. You may + not alter or modify the Font Programs in any manner that results in the + Font Programs having different or enhanced functionality than when it was + delivered to you as part of the Software. + 4. You may use an application program to embed the output of the Font + Programs into an electronic document. You may send such an electronic + document to a third party only for the purpose of permitting the third + party to view and print the electronic document. Font Programs may not be + embedded in any format that permits the recipient of an electronic + document to install the Font Programs or to use the Font Programs for any + purpose beyond merely viewing and printing the document. You may not + embed Font Programs into a Commercial Product. A "Commercial Product" + is an electronic document that is distributed in exchange for a fee or + other consideration. For example, you cannot embed Font Programs into an + electronic book or magazine that is offered to the public for a fee. + 5. Except for the print and view embedding permission granted in Section 5 + (d) above, you may not copy the Font Programs, provided, however, you may + make one copy of the Font Programs for archival purposes only. The + archival copy cannot be distributed and can be used only when you have + permanently deleted the original or any copy of the Font Programs on your + device. You may not reverse engineer, decompile, or take any action which + results in or designed to result in gaining access to the source code of + the Font Programs, except as permitted by law and then only for the + purpose of achieving an interoperable program + 6. The Font Programs supplied with the Software are proprietary and are + protected by U.S. and international copyright and trademark law. All + rights not expressly set forth herein are reserved. A breach of this End + User License Agreement may subject you to damages and injunctive relief + under this Agreement as well as under applicable copyright and trademark + law. + 7. If you are acquiring Font Programs on behalf of any unit or agency of the + United States Government, the following provisions shall apply. Use, + duplication, or disclosure by the United States Government is subject to + restrictions as set forth in the Rights in Technical Data and computer + Software clause at FAR 252.227-7013, subdivision (b)(3)(ii) or + subparagraph (c)(1(ii), as appropriate. Further use, duplication, or + disclosure is subject to restrictions to restricted rights software as + set forth in FAR 52.227-19(c)(2). +6. LIMITATION OF LIABILITY AND REMEDIES +NOTWITHSTANDING ANY DAMAGES THAT YOU MIGHT INCUR, AND EXCEPT FOR DAMAGES FOR +BODILY INJURY (INCLUDING DEATH), THE ENTIRE AGGREGATE LIABILITY OF VSI AND ANY +OF ITS SUPPLIERS RELATING TO THE SOFTWARE OR THIS AGREEMENT, AND YOUR EXCLUSIVE +REMEDY FOR ALL OF THE FOREGOING, SHALL BE LIMITED TO THE GREATER OF THE AMOUNT +ACTUALLY PAID BY YOU SEPARATELY FOR THE SOFTWARE OR U.S. $5.00. TO THE MAXIMUM +EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL VSI OR ITS SUPPLIERS BE +LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES +WHATSOEVER INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS OR +REVENUES, BUSINESS INTERRUPTION, DOWNTIME COSTS, FAILURE TO REALIZE EXPECTED +SAVINGS, LOSS, DISCLOSURE, UNAVAILABILITY OF OR DAMAGE TO DATA, SOFTWARE +RESTORATION, OR LOSS OF PRIVACY ARISING OUT OF OR IN ANY WAY RELATED TO THE USE +OF OR INABILITY TO USE THE SOFTWARE, OR OTHERWISE IN CONNECTION WITH ANY +PROVISION OF THIS AGREEMENT, EVEN IF VSI OR ANY SUPPLIER HAS BEEN ADVISED OF +THE POSSIBILITY OF SUCH DAMAGES AND EVEN IF THE REMEDY FAILS OF ITS ESSENTIAL +PURPOSE. SOME STATES/JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF +INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE ABOVE LIMITATION OR EXCLUSION MAY +NOT APPLY TO YOU. +7. TERMINATION +This Agreement is effective for twelve (12) months from installation of the +Software. Notwithstanding the foregoing, this Agreement will also terminate +upon conditions set forth elsewhere in this Agreement or if You fail to comply +with any term or condition hereof. Upon termination You will destroy the +Software and all copies of the Software or return them to VSI. You may retain +one copy of the Software subsequent to termination solely for archival purposes +only. Sections 3, 5, 6, and 7 will survive termination of this Agreement. +8. GENERAL + 1. You may not assign, sublicense, delegate, or otherwise transfer + ("Assign") all or any part of this Agreement without prior written + consent from VSI, payment to VSI of any applicable fees, and compliance + with VSI's Software license transfer policies and any applicable third- + party license terms. Any such attempted Assignment will be null and void. + Where an authorized Assignment occurs in accordance with this Section, + Your rights under this Agreement will terminate, and You will immediately + deliver the Software and all copies to the Assignee. The Assignee must + agree in writing to the terms of this Agreement, and the transferee + thereafter will be considered "You" for purposes of this Agreement. + You may transfer firmware only upon transfer of the associated hardware. + 2. If the Software is licensed for use in the performance of a U.S. + Government prime contract or subcontract, You agree that, consistent with + FAR 12.211 and 12.212, commercial computer Software, computer Software + documentation, and technical data for commercial items are licensed under + VSI's standard commercial license. + 3. To the extent You export, re-export, or import Software, technology, or + technical data licensed or provided hereunder, You assume sole + responsibility for complying with applicable laws and regulations and for + obtaining required export and import authorizations. VSI may suspend + performance if You are in violation of any applicable laws or + regulations. + 4. This Agreement is governed by the laws of the State of Delaware, U.S.A., + excluding rules as to choice and conflict of law. You and VSI agree that + the United Nations Convention on Contracts for the International Sale of + Goods will not apply to this Agreement. + 5. Subject to the other terms and conditions of this Agreement, this + Agreement is the entire agreement between VSI and You regarding Your Use + of the Software, and supersedes and replaces any previous communications, + representations, or agreements, or Your additional or inconsistent terms, + whether oral or written. In the event any provision of this Agreement is + held invalid or unenforceable VSI's failure to exercise or delay in + exercising any of its rights under this Agreement will not constitute or + be deemed a waiver or forfeiture of those rights. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_953.RULE b/src/licensedcode/data/rules/proprietary-license_953.RULE new file mode 100644 index 00000000000..c4ff8ddb68f --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_953.RULE @@ -0,0 +1,302 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://www.codesynthesis.com/licenses/ncuel.txt +ignorable_emails: + - info@codesynthesis.com +--- + +ODB NON-COMMERCIAL USE AND EVALUATION LICENSE (NCUEL) + +INTENT + +The intent of this license is to allow you to use ODB with commercial +databases, such as Oracle, Microsoft SQL Server, IBM DB/2, etc., free +of charge non-commercially or for evaluation. + +Furthermore, if a commercial database has a free edition, often called +express edition, such as Oracle Express, Microsoft SQL Server Express, +IBM DB/2 Express-C, etc., that can be used for commercial purposes free +of charge, then this license allows you to use ODB with such an edition +for commercial purposes also free of charge. + +Note also that the development of an application that will be used for +commercial purposes constitutes a commercial use and is not allowed, +except with a free edition of a commercial database. However, this +license allows you to evaluate ODB; that is, to use the Software for +a reasonable period for the purpose of determining its suitability for +a particular application as well as to conduct exploratory development +or proof-of-concept prototyping. + +Finally, any application that uses ODB under this license, whether non- +commercially, for evaluation, or commercially with a free edition of a +database, is subject to the terms and conditions similar to that of the +GPL version 2. In particular, this means that if and when you distribute +your application, you are required to also release its source code. + +If you have any questions concerning this License, please contact us at: +info@codesynthesis.com. + +LEGAL TERMS AND CONDITIONS + +This Code Synthesis Tools CC Non-Commercial Use and Evaluation License +Agreement for ODB Software ("License") is a legal agreement between you, +the Licensee, (either an individual or a single entity) and Code +Synthesis Tools CC ("Code Synthesis") for non-commercially using, +copying, distributing and modifying the Software and any work derived +from the Software, as defined hereinbelow. Any commercial use, except +as expressly provided in Section 2.1, is subject to a different license. + +By using, modifying, or distributing the Software or any work derived +from the Software, Licensee indicates acceptance of this License and +agrees to be bound by all its terms and conditions for using, copying, +distributing, or modifying the Software and works derived from the +Software. If Licensee is agreeing to this License on behalf of an entity +other than an individual person, Licensee represents that Licensee is +binding and have the right to bind the entity to the terms and conditions +of this agreement. + +These terms and conditions only apply to the ODB components that are +explicitly licensed under this License (normally ODB runtime libraries +for commercial databases). Other ODB components may be licensed under +other licenses and are not affected in any way by the terms and +conditions found in this License. Similarly, ODB components licensed +under this License are not affected by the terms and conditions found +in other licenses. If you are using several ODB components that are +licensed under different licenses, you must comply with the terms and +conditions of each such license. + +No rights are granted to the Software except as expressly set forth +herein. Nothing other than this License grants Licensee permission to +use, copy, distribute or modify the Software or any work derived from +the Software. Licensee may not use, copy, distribute or modify the +Software or any work derived from the Software except as expressly +provided under this License. If Licensee does not accept the terms and +conditions of this License, Licensee shall not use, copy, distribute +or modify the Software. + +In consideration for Licensee's forbearance of commercial use of the +Software, except as expressly provided in Section 2.1, Code Synthesis +grants Licensee non-exclusive, royalty-free and without fees rights +as expressly provided herein. + +1. DEFINITIONS. + +A "commercial database" is a database product that has associated +fees and/or royalties payable for production and/or commercial use +of the database product. Commercial databases include, but are not +limited to, Oracle, Microsoft SQL Server, and IBM DB/2. + +A "free edition of a commercial database" is a special, limited edition +of a commercial database, often called express edition, that does not +require fees and/or royalties for production and/or commercial use. +Free editions of commercial databases include, but are not limited to, +Oracle Express, Microsoft SQL Server Express, and IBM DB/2 Express-C. + +The "Software" is one of the ODB runtime libraries for one of the +commercial databases, including, but not limited to, demo programs, +associated media and printed materials, and any included "on-line" +documentation. + +A "work derived from the Software" is any derivative work as defined +in the copyright law of the nation or state where rights to the work +derived from the Software are exercisable; that is to say, a program +which is linked with or otherwise incorporates the ODB runtime library +or a translation, improvement, enhancement, extension or other +modification of the Software which has sufficient originality to +qualify in such a nation or state as a copyrightable work is a work +derived from the Software. + +To "use" means to execute (i.e. run) the Software. + +To "copy" means to create one or more copies of the Software. + +To "distribute" means to broadcast, publish, transfer, post, upload, +download or otherwise disseminate in any medium to any third party. + +To "modify" means to create a work derived from the Software. + +To "evaluate" means to use the Software for a reasonable period for +the purpose of determining its suitability for a particular application +as well as to conduct exploratory development or proof-of-concept +prototyping. + +A "commercial use" is: + +(1) the use of the Software or any work derived from the Software in +connection with, for or in aid of the generation of revenue, such as +in the conduct of Licensee's daily business operations; or + +(2) any copying, distribution or modification of the Software or any +work derived from the Software to any party where payment or other +consideration is made in connection with such copying, distribution or +modification, whether directly (as in payment for a copy of the +Software) or indirectly (including but not limited to payment for some +good or service related to the Software, or payment for some product +or service that includes a copy of the Software "without charge"). +However, the following actions which involve payment do not in and +of themselves constitute a commercial use: + +(a) posting the Software on a public access information storage and +retrieval service for which a fee is received for retrieving +information (such as an on-line service), provided that the fee is not +content-dependent. Such fees which are not content dependent include, +but are not limited to, fees which are based solely on the storage +capacity required to store the information, and fees which are based +solely on the time required to transfer the information from/to the +public access information storage and retrieval service; and + +(b) distributing the Software on a CD-ROM, provided that the Software +is reproduced entirely and verbatim on such CD-ROM, and provided further +that all information on such CD-ROM may be distributed in a manner which +does not constitute a commercial use. + +2. GRANT OF LICENSE. + +2.1. LICENSE TO USE. +Licensee may use the Software provided that such use does not constitute +a commercial use. + +Licensee may also use the Software commercially with a free edition of a +commercial database, if such an edition is available. If Licensee +distributes works derived from the Software and such works may be used +commercially by third parties, Licensee must cause such commercial use +to be limited to a free edition of a commercial database. + +2.2. LICENSE TO EVALUATE. +Licensee may evaluation the Software for commercial use. + +2.3. LICENSE TO COPY AND DISTRIBUTE. +Licensee may copy and distribute literal (i.e., verbatim) copies of the +Software as Licensee receives it throughout the world, in any medium, +provided that Licensee distributes an unmodified, easily-readable copy +of this License with the Software, and provided further that such +distribution does not constitute a commercial use. + +2.4. LICENSE TO CREATE WORKS DERIVED FROM THE SOFTWARE. +Licensee may create works derived from the Software, provided that any +such work derived from the Software carries prominent notices stating +both the manner in which Licensee has created a work derived from the +Software (for example, notices stating that the work derived from the +Software is linked with or otherwise incorporates the ODB runtime +library, or notices stating that the work derived from the Software +is an enhancement to the Software which Licensee has created) and the +date any such work derived from the Software was created. + +2.5. LICENSE TO COPY AND DISTRIBUTE WORKS DERIVED FROM THE SOFTWARE. +Licensee may copy and distribute works derived from the Software +throughout the world, provided that Licensee distributes an +unmodified, easily-readable copy of this License with such works +derived from the Software, and provided further that such distribution +does not constitute a commercial use. Licensee must cause any work +derived from the Software that Licensee distributes to be licensed as +a whole and at no charge to all third parties under the terms of this +License or another free/open source license that does not restrict any +rights of any third party that would have been granted should such work +have been licensed under this License. + +Any work derived from the Software must be accompanied by the complete +corresponding machine-readable source code of such work derived from +the Software, delivered on a medium customarily used for software +interchange. The source code for the work derived from the Software +means the preferred form of the work derived from the Software for +making modifications to it. For an executable work derived from the +Software, complete source code means all of the source code for all +modules of the work derived from the Software, all associated +interface definition files and all scripts used to control compilation +and installation of all or any part of the work derived from the +Software. However, the source code delivered need not include anything +that is normally distributed, in either source code or binary (object- +code) form, with major components (including but not limited to +compilers, linkers, and kernels) of the operating system on which the +executable work derived from the Software runs, unless that component +itself accompanies the executable code of the work derived from the +Software. + +Furthermore, if the executable code or object code of the work derived +from the Software may be copied from a designated place, and if the +source code of the work derived from the Software may be copied from +the same place, then the work derived from the Software shall be +construed as accompanied by the complete corresponding machine-readable +source code of such work derived from the Software, even though third +parties are not compelled to copy the source code along with the +executable code or object code. + +If the work derived from the Software normally reads commands +interactively when run, Licensee must cause the work derived from the +Software, at each time it commences operation, to print or display an +announcement including either a notice consisting of the verbatim +warranty and liability provisions of this License, or a notice that +Licensee, and not Code Synthesis provides a warranty. + +Licensee may not impose any further restrictions on the exercise of +the rights granted herein by any recipient of any work derived from +the Software. + +3. RESTRICTIONS. + +Licensee acknowledges that the Software is protected by copyright laws +and international copyright treaties, as well as other intellectual +property laws and treaties. The Software is licensed, not sold. All +title and copyrights in and to the Software are owned exclusively by +Code Synthesis. + +Licensee may not sublicense, assign or transfer this License, the +Software or any work derived from the Software except as permitted by +this License. + +Licensee is expressly prohibited from using, copying, distributing, +studying the source code, or otherwise examining the Software for +the purpose of reverse engineering or duplicating its functionality +(unless enforcement of this restrictions is prohibited by applicable +law). + +4. LIMITED WARRANTY. + +4.1 NO WARRANTIES. +CODE SYNTHESIS EXPRESSLY DISCLAIMS ANY WARRANTY FOR THE SOFTWARE. THE +SOFTWARE IS PROVIDED TO LICENSEE "AS IS," WITHOUT WARRANTY OF ANY KIND, +EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. THE ENTIRE RISK AS TO THE USE, +QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH LICENSEE. SHOULD THE +SOFTWARE PROVE DEFECTIVE, LICENSEE ASSUMES THE COST OF ALL NECESSARY +SERVICING, REPAIR OR CORRECTION. + +4.2. NO LIABILITY FOR DAMAGES. +IN NO EVENT WILL CODE SYNTHESIS, OR ANY OTHER PARTY WHO MAY COPY, +DISTRIBUTE OR MODIFY THE SOFTWARE AS PERMITTED HEREIN, BE LIABLE FOR +ANY GENERAL, DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL +DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF +BUSINESS PROFITS, BUSINESS INTERRUPTION, INACCURATE INFORMATION, LOSS +OF INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OR +INABILITY TO USE THE SOFTWARE, EVEN IF CODE SYNTHESIS OR SUCH OTHER +PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +5. TERMINATION. + +Any violation or any attempt to violate any of the terms and conditions +of this License will automatically terminate Licensee's rights under +this License. Licensee further agrees upon such termination to cease +any and all using, copying, distributing and modifying of the Software +and any work derived from the Software, and further to destroy any and +all of Licensee's copies of the Software and any work derived from the +Software. + +However, parties who have received copies of the Software or copies of +any work derived from the Software, or rights, from Licensee under this +License will not have their licenses terminated so long as such parties +remain in full compliance with this License. + +6. LICENSE SCOPE AND MODIFICATION. + +This License sets forth the entire agreement between Licensee and Code +Synthesis and supersedes all prior agreements and understandings between +the parties relating to the subject matter hereof. None of the terms of +this License may be waived or modified except as expressly agreed in +writing by both Licensee and Code Synthesis. + +7. SEVERABILITY. + +Should any provision of this License be declared void or unenforceable, +the validity of the remaining provisions shall not be affected thereby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_954.RULE b/src/licensedcode/data/rules/proprietary-license_954.RULE new file mode 100644 index 00000000000..398876baf22 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_954.RULE @@ -0,0 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +notes: https://www.codesynthesis.com/products/odb/license.xhtml This is a ridder on to of the + GPL that may or may not conflict. +--- + +By linking with the ODB runtime libraries (directly or indirectly, statically or dynamically, at compile time or runtime), your application is subject to the terms of the GPL and/or NCUEL which both require that you release the source code of your application if and when you distribute it. Distributing an application includes giving it to customers, contractors, parent companies, subsidiaries, or any legal entity other than your own. On the other hand, if you only use your application within your organization, such as running it on your company's servers, then you do not need to make your source code public. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_80.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_80.RULE new file mode 100644 index 00000000000..51bfe8ed2ba --- /dev/null +++ b/src/licensedcode/data/rules/public-domain-disclaimer_80.RULE @@ -0,0 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +referenced_filenames: + - DISCLAIMER.PD +--- + +* This file has no copyright assigned and is placed in the Public Domain. + * This file is part of the mingw-w64 runtime package. + * No warranty is given; refer to the file DISCLAIMER.PD within this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_391.RULE b/src/licensedcode/data/rules/unknown-license-reference_391.RULE new file mode 100644 index 00000000000..2bf26ba3814 --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_391.RULE @@ -0,0 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +See [LICENSE][link-license] for license and copyright information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_392.RULE b/src/licensedcode/data/rules/unknown-license-reference_392.RULE new file mode 100644 index 00000000000..d4c36b05ced --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_392.RULE @@ -0,0 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +referenced_filenames: + - LICENSE-EMBEDDING.txt +--- + +* This file is subject to the terms and conditions defined in + * file 'LICENSE-EMBEDDING.txt', which is part of this source code package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_393.RULE b/src/licensedcode/data/rules/unknown-license-reference_393.RULE new file mode 100644 index 00000000000..6a8ce1d07db --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_393.RULE @@ -0,0 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +referenced_filenames: + - LICENSE.txt +--- + +# This file is subject to the terms and conditions defined in +# file 'LICENSE.txt', which is part of this source code package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_394.RULE b/src/licensedcode/data/rules/unknown-license-reference_394.RULE new file mode 100644 index 00000000000..2142596c066 --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_394.RULE @@ -0,0 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - EDL.txt +--- + +EDL.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_395.RULE b/src/licensedcode/data/rules/unknown-license-reference_395.RULE new file mode 100644 index 00000000000..ffcc472f463 --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_395.RULE @@ -0,0 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - EPL.txt +--- + +EPL.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_396.RULE b/src/licensedcode/data/rules/unknown-license-reference_396.RULE new file mode 100644 index 00000000000..95ed32c8191 --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_396.RULE @@ -0,0 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - GPL1_1.txt +--- + +GPL1_1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_397.RULE b/src/licensedcode/data/rules/unknown-license-reference_397.RULE new file mode 100644 index 00000000000..dbe3df21cfe --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_397.RULE @@ -0,0 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +* Detailed license information can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_398.RULE b/src/licensedcode/data/rules/unknown-license-reference_398.RULE new file mode 100644 index 00000000000..56927bb8ab3 --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_398.RULE @@ -0,0 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +License +License information can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_399.RULE b/src/licensedcode/data/rules/unknown-license-reference_399.RULE new file mode 100644 index 00000000000..e58264a1fef --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_399.RULE @@ -0,0 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - THIRDPARTY +--- + +Third party license information can be found in the THIRDPARTY file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_400.RULE b/src/licensedcode/data/rules/unknown-license-reference_400.RULE new file mode 100644 index 00000000000..0761e531a70 --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_400.RULE @@ -0,0 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +referenced_filenames: + - LICENSE +--- + +License information can be found in the LICENSE file. + +This distribution may include materials developed by third parties. +For license and attribution notices for these materials, please refer to the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_9.RULE b/src/licensedcode/data/rules/unknown_9.RULE index ab4c7ca03ae..d664e8d103f 100644 --- a/src/licensedcode/data/rules/unknown_9.RULE +++ b/src/licensedcode/data/rules/unknown_9.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license = "none \ No newline at end of file +{{license = none}} diff --git a/src/licensedcode/data/rules/unknown_license_other_12.RULE b/src/licensedcode/data/rules/unknown_license_other_12.RULE index 88a98f50915..a80ad84d7f2 100644 --- a/src/licensedcode/data/rules/unknown_license_other_12.RULE +++ b/src/licensedcode/data/rules/unknown_license_other_12.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 80 --- -License: `other` \ No newline at end of file +{{License: `other`}} diff --git a/src/licensedcode/data/rules/upl-1.0_22.RULE b/src/licensedcode/data/rules/upl-1.0_22.RULE new file mode 100644 index 00000000000..f2f3ad8b371 --- /dev/null +++ b/src/licensedcode/data/rules/upl-1.0_22.RULE @@ -0,0 +1,38 @@ +--- +license_expression: upl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) Oracle and/or its affiliates +ignorable_holders: + - Oracle and/or its affiliates +--- + +The Universal Permissive License (UPL), Version 1.0 +Copyright (c) Oracle and/or its affiliates. All rights reserved. +Subject to the condition set forth below, permission is hereby granted to any +person obtaining a copy of this software, associated documentation and/or +data (collectively the "Software"), free of charge and under any and all +copyright rights in the Software, and any and all patent rights owned or +freely licensable by each licensor hereunder covering either (i) the +unmodified Software as contributed to or provided by such licensor, or (ii) +the Larger Works (as defined below), to deal in both +(a) the Software, and +(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if +one is included with the Software (each a "Larger Work" to which the Software +is contributed by such licensors), +without restriction, including without limitation the rights to copy, create +derivative works of, display, perform, and distribute the Software and make, +use, sell, offer for sale, import, export, have made, and have sold the +Software and the Larger Work(s), and to sublicense the foregoing rights on +either these or other terms. +This license is subject to the following condition: +The above copyright notice and either this complete permission notice or at a +minimum a reference to the UPL must be included in all copies or substantial +portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_26.RULE b/src/licensedcode/data/rules/upl-1.0_26.RULE new file mode 100644 index 00000000000..5e3fd1c03cb --- /dev/null +++ b/src/licensedcode/data/rules/upl-1.0_26.RULE @@ -0,0 +1,67 @@ +--- +license_expression: upl-1.0 +is_license_notice: yes +minimum_coverage: 99 +notes: | + notice the last sentence: + Oracle's use of OCI SDK for Java in MySQL Community Edition is solely under + the UPL +ignorable_copyrights: + - Copyright (c) 2016, 2018, Oracle and/or its affiliates +ignorable_holders: + - Oracle and/or its affiliates +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://oss.oracle.com/licenses/upl +--- + +This software is dual-licensed to you under the Universal Permissive License +(UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl +or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. +You may choose either license. +____________________________ +The Universal Permissive License (UPL), Version 1.0 +Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. +Subject to the condition set forth below, permission is hereby granted to any +person obtaining a copy of this software, associated documentation and/or +data (collectively the "Software"), free of charge and under any and all +copyright rights in the Software, and any and all patent rights owned or +freely licensable by each licensor hereunder covering either (i) the +unmodified Software as contributed to or provided by such licensor, or (ii) +the Larger Works (as defined below), to deal in both +(a) the Software, and +(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if +one is included with the Software (each a "Larger Work" to which the Software +is contributed by such licensors), +without restriction, including without limitation the rights to copy, create +derivative works of, display, perform, and distribute the Software and make, +use, sell, offer for sale, import, export, have made, and have sold the +Software and the Larger Work(s), and to sublicense the foregoing rights on +either these or other terms. +This license is subject to the following condition: +The above copyright notice and either this complete permission notice or at a +minimum a reference to the UPL must be included in all copies or substantial +portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +The Apache Software License, Version 2.0 +Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. +Licensed under the Apache License, Version 2.0 (the "License"); You may not +use this product except in compliance with the License. You may obtain a +copy of the License at http://www.apache.org/licenses/LICENSE-2.0. A copy of +the license is also reproduced below. Unless required by applicable law or +agreed to in writing, software distributed under the License is distributed +on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either +express or implied. See the License for the specific language governing +permissions and limitations under the License. + +Apache License Version 2.0, January 2004 + +Oracle's use of OCI SDK for Java in MySQL Community Edition is solely under +the UPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_3.RULE new file mode 100644 index 00000000000..b92e2da768d --- /dev/null +++ b/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_3.RULE @@ -0,0 +1,12 @@ +--- +license_expression: upl-1.0 OR apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://oss.oracle.com/licenses/upl +--- + +This software is dual-licensed to you under the Universal Permissive License +(UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl +or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. +You may choose either license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_91.RULE b/src/licensedcode/data/rules/warranty-disclaimer_91.RULE new file mode 100644 index 00000000000..7393b0cf59c --- /dev/null +++ b/src/licensedcode/data/rules/warranty-disclaimer_91.RULE @@ -0,0 +1,6 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +--- + +THE INFORMATION IN THIS WEBSITE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE INFORMATION OR THE USE OR OTHER DEALINGS IN THE INFORMATION. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_92.RULE b/src/licensedcode/data/rules/warranty-disclaimer_92.RULE new file mode 100644 index 00000000000..486b26eb6d0 --- /dev/null +++ b/src/licensedcode/data/rules/warranty-disclaimer_92.RULE @@ -0,0 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + +All the software is provided “as is” and with absolutely no warranty. \ No newline at end of file diff --git a/src/licensedcode/frontmatter.py b/src/licensedcode/frontmatter.py index d90664f8f79..2e3f6ee9971 100644 --- a/src/licensedcode/frontmatter.py +++ b/src/licensedcode/frontmatter.py @@ -53,7 +53,7 @@ def split(self, text): _, fm, content = self.FM_BOUNDARY.split(text, 2) return fm, content - def format(self, content, metadata, **kwargs): + def format(self, content, metadata, template=DEFAULT_POST_TEMPLATE, **kwargs): """ Return string with `content` and `metadata` as YAML frontmatter, used in ``frontmatter.dumps``. @@ -63,7 +63,7 @@ def format(self, content, metadata, **kwargs): metadata = self.export(metadata, **kwargs) - return DEFAULT_POST_TEMPLATE.format( + return template.format( metadata=metadata, content=content, start_delimiter=start_delimiter, diff --git a/src/summarycode/generated.py b/src/summarycode/generated.py index a44da7998ad..7f29f519f62 100644 --- a/src/summarycode/generated.py +++ b/src/summarycode/generated.py @@ -187,6 +187,10 @@ def generated_scanner(location, **kwargs): 'this file has been generated by the gui designer. do not modify', 'file is generated by gopy gen. do not edit', + # javacc + 'generated by:javacc: do not edit this line', + 'generated by:jjtree: do not edit this line', + 'generated code (do not edit this line)', )) diff --git a/tests/formattedcode/data/common/manifests-expected.yaml b/tests/formattedcode/data/common/manifests-expected.yaml index f94594e279b..67c870c6053 100644 --- a/tests/formattedcode/data/common/manifests-expected.yaml +++ b/tests/formattedcode/data/common/manifests-expected.yaml @@ -29,8 +29,8 @@ headers: system_environment: operating_system: linux cpu_architecture: 64 - platform: Linux-5.15.0-76-generic-x86_64-with-glibc2.29 - platform_version: '#83~20.04.1-Ubuntu SMP Wed Jun 21 20:23:31 UTC 2023' + platform: Linux-5.15.0-84-generic-x86_64-with-glibc2.29 + platform_version: '#93~20.04.1-Ubuntu SMP Wed Sep 6 16:15:40 UTC 2023' python_version: "3.8.10 (default, May 26 2023, 14:05:08) \n[GCC 9.4.0]" spdx_license_list_version: '3.21' files_count: 4 @@ -1043,7 +1043,11 @@ license_references: is_unknown: no is_generic: no spdx_license_key: MIT - other_spdx_license_keys: [] + other_spdx_license_keys: + - LicenseRef-MIT-Bootstrap + - LicenseRef-MIT-Discord + - LicenseRef-MIT-TC + - LicenseRef-MIT-Diehl osi_license_key: text_urls: - http://opensource.org/licenses/mit-license.php diff --git a/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml b/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml index da4f8a8a0c7..201578ccbcf 100644 --- a/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml +++ b/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml @@ -29,8 +29,8 @@ headers: system_environment: operating_system: linux cpu_architecture: 64 - platform: Linux-5.15.0-76-generic-x86_64-with-glibc2.29 - platform_version: '#83~20.04.1-Ubuntu SMP Wed Jun 21 20:23:31 UTC 2023' + platform: Linux-5.15.0-84-generic-x86_64-with-glibc2.29 + platform_version: '#93~20.04.1-Ubuntu SMP Wed Sep 6 16:15:40 UTC 2023' python_version: "3.8.10 (default, May 26 2023, 14:05:08) \n[GCC 9.4.0]" spdx_license_list_version: '3.21' files_count: 4 @@ -322,7 +322,11 @@ license_references: is_unknown: no is_generic: no spdx_license_key: MIT - other_spdx_license_keys: [] + other_spdx_license_keys: + - LicenseRef-MIT-Bootstrap + - LicenseRef-MIT-Discord + - LicenseRef-MIT-TC + - LicenseRef-MIT-Diehl osi_license_key: text_urls: - http://opensource.org/licenses/mit-license.php diff --git a/tests/licensedcode/data/datadriven/external/atarashi/3GPP.h.yml b/tests/licensedcode/data/datadriven/external/atarashi/3GPP.h.yml index ba0dd333a80..a9e02b1a85a 100644 --- a/tests/licensedcode/data/datadriven/external/atarashi/3GPP.h.yml +++ b/tests/licensedcode/data/datadriven/external/atarashi/3GPP.h.yml @@ -1,3 +1,2 @@ license_expressions: - apache-2.0 - - other-permissive diff --git a/tests/licensedcode/data/datadriven/external/fossology-tests/Apache/abs_s.h.yml b/tests/licensedcode/data/datadriven/external/fossology-tests/Apache/abs_s.h.yml index ba0dd333a80..a9e02b1a85a 100644 --- a/tests/licensedcode/data/datadriven/external/fossology-tests/Apache/abs_s.h.yml +++ b/tests/licensedcode/data/datadriven/external/fossology-tests/Apache/abs_s.h.yml @@ -1,3 +1,2 @@ license_expressions: - apache-2.0 - - other-permissive diff --git a/tests/licensedcode/data/datadriven/external/licensecheck/devscripts/false-positives.yml b/tests/licensedcode/data/datadriven/external/licensecheck/devscripts/false-positives.yml index f7d7df6d070..d086f147d0f 100644 --- a/tests/licensedcode/data/datadriven/external/licensecheck/devscripts/false-positives.yml +++ b/tests/licensedcode/data/datadriven/external/licensecheck/devscripts/false-positives.yml @@ -1,5 +1,6 @@ license_expressions: - - x11-tiff + - mit-old-style-no-advert + - other-permissive - generic-cla - unknown-license-reference - unknown-license-reference diff --git a/tests/licensedcode/data/datadriven/lic2/aes-128-3.0_and_bsd-new_and_bsd-original-uc_and_bsd-simplified_and_other.txt.yml b/tests/licensedcode/data/datadriven/lic2/aes-128-3.0_and_bsd-new_and_bsd-original-uc_and_bsd-simplified_and_other.txt.yml index 7e19ae5b5d6..5d3dae36f1e 100644 --- a/tests/licensedcode/data/datadriven/lic2/aes-128-3.0_and_bsd-new_and_bsd-original-uc_and_bsd-simplified_and_other.txt.yml +++ b/tests/licensedcode/data/datadriven/lic2/aes-128-3.0_and_bsd-new_and_bsd-original-uc_and_bsd-simplified_and_other.txt.yml @@ -32,7 +32,6 @@ license_expressions: - unknown-license-reference - proprietary-license - proprietary-license - - proprietary-license - warranty-disclaimer - proprietary-license - unknown-license-reference diff --git a/tests/licensedcode/data/datadriven/lic3/licenses_list.json.yml b/tests/licensedcode/data/datadriven/lic3/licenses_list.json.yml index bba6c010acc..58abd31f4ea 100644 --- a/tests/licensedcode/data/datadriven/lic3/licenses_list.json.yml +++ b/tests/licensedcode/data/datadriven/lic3/licenses_list.json.yml @@ -1 +1,3 @@ -notes: this is a long list of SPDX licenses and nothing should be detected +license_expressions: + - mpl-2.0 +notes: FIXME - should be empty this is a long list of SPDX licenses and nothing should be detected diff --git a/tests/licensedcode/data/datadriven/lic4/ArrayContainer.java b/tests/licensedcode/data/datadriven/lic4/ArrayContainer.java new file mode 100644 index 00000000000..cf983b98478 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/ArrayContainer.java @@ -0,0 +1,4 @@ +/* + * (c) the authors Licensed under the Apache License, Version 2.0. + */ + diff --git a/tests/licensedcode/data/datadriven/lic4/ArrayContainer.java.yml b/tests/licensedcode/data/datadriven/lic4/ArrayContainer.java.yml new file mode 100644 index 00000000000..500dff52515 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/ArrayContainer.java.yml @@ -0,0 +1,3 @@ +license_expressions: + - apache-2.0 + diff --git a/tests/licensedcode/data/datadriven/lic4/CreateTokenTests-short.cs b/tests/licensedcode/data/datadriven/lic4/CreateTokenTests-short.cs new file mode 100644 index 00000000000..3af08dca930 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/CreateTokenTests-short.cs @@ -0,0 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Security.Claims; +using BenchmarkDotNet.Attributes; +using Microsoft.IdentityModel.JsonWebTokens; +using Microsoft.IdentityModel.TestUtils; +using Microsoft.IdentityModel.Tokens; diff --git a/tests/licensedcode/data/datadriven/lic4/CreateTokenTests-short.cs.yml b/tests/licensedcode/data/datadriven/lic4/CreateTokenTests-short.cs.yml new file mode 100644 index 00000000000..c9c5e2f5b54 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/CreateTokenTests-short.cs.yml @@ -0,0 +1,2 @@ +license_expressions: + - mit diff --git a/tests/licensedcode/data/datadriven/lic4/THIRD-PARTY-NOTICES b/tests/licensedcode/data/datadriven/lic4/THIRD-PARTY-NOTICES new file mode 100644 index 00000000000..67692ee133f --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/THIRD-PARTY-NOTICES @@ -0,0 +1,112 @@ +.NET Core uses third-party libraries or other resources that may be +distributed under licenses different than the .NET Core software. + +Attributions and licence notices for test cases originally authored by +third parties can be found in the respective test directories. + +In the event that we accidentally failed to list a required notice, please +bring it to our attention. Post an issue or email us: + + dotnet@microsoft.com + +The attached notices are provided for information only. + +License notice for Nuget.Client +------------------------------- + +Copyright (c) .NET Foundation. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use +these files except in compliance with the License. You may obtain a copy of the +License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. + + +License notice for LZMA SDK +--------------------------- + +http://7-zip.org/sdk.html + +LZMA SDK is placed in the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute the +original LZMA SDK code, either in source code form or as a compiled binary, +for any purpose, commercial or non-commercial, and by any means. + +License notice for RFC 3492 +--------------------------- + +Copyright (C) The Internet Society (2003). All Rights Reserved. + +This document and translations of it may be copied and furnished to +others, and derivative works that comment on or otherwise explain it +or assist in its implementation may be prepared, copied, published +and distributed, in whole or in part, without restriction of any +kind, provided that the above copyright notice and this paragraph are +included on all such copies and derivative works. However, this +document itself may not be modified in any way, such as by removing +the copyright notice or references to the Internet Society or other +Internet organizations, except as needed for the purpose of +developing Internet standards in which case the procedures for +copyrights defined in the Internet Standards process must be +followed, or as required to translate it into languages other than +English. + +The limited permissions granted above are perpetual and will not be +revoked by the Internet Society or its successors or assigns. + +This document and the information contained herein is provided on an +"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING +TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING +BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION +HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF +MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + +License notice for MonoDevelop +------------------------------ + +Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Copyright (c) 2011 Novell, Inc (http://www.novell.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/tests/licensedcode/data/datadriven/lic4/THIRD-PARTY-NOTICES.yml b/tests/licensedcode/data/datadriven/lic4/THIRD-PARTY-NOTICES.yml new file mode 100644 index 00000000000..8fc3f26e9b6 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/THIRD-PARTY-NOTICES.yml @@ -0,0 +1,7 @@ +license_expressions: + - unknown-license-reference + - apache-2.0 + - lzma-sdk-9.22 + - ietf + - mit + - mit diff --git a/tests/licensedcode/data/datadriven/lic4/mit_not_json.txt b/tests/licensedcode/data/datadriven/lic4/mit_not_json.txt new file mode 100644 index 00000000000..76d3e191530 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/mit_not_json.txt @@ -0,0 +1,28 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// +// System.Configuration.LongValidatorTest.cs - Unit tests +// for System.Configuration.LongValidator. +// +// Author: +// Chris Toshok +// +// Copyright (C) 2005 Novell, Inc (http://www.novell.com) +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION diff --git a/tests/licensedcode/data/datadriven/lic4/mit_not_json.txt.yml b/tests/licensedcode/data/datadriven/lic4/mit_not_json.txt.yml new file mode 100644 index 00000000000..94096280f54 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/mit_not_json.txt.yml @@ -0,0 +1,3 @@ +license_expressions: + - mit + - embedthis-extension diff --git a/tests/licensedcode/data/datadriven/lic4/xunit.sln b/tests/licensedcode/data/datadriven/lic4/xunit.sln new file mode 100644 index 00000000000..a152dcfffec --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/xunit.sln @@ -0,0 +1,735 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31709.452 +MinimumVisualStudioVersion = 14.0.22823.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{DAED8494-AC8A-4C67-A8F1-616D95ECC302}" + ProjectSection(SolutionItems) = preProject + src\Directory.Build.props = src\Directory.Build.props + src\Directory.Build.targets = src\Directory.Build.targets + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{D013AD79-A261-4476-93FC-9AF7E637CDB6}" + ProjectSection(SolutionItems) = preProject + test\Directory.Build.props = test\Directory.Build.props + test\Directory.Build.targets = test\Directory.Build.targets + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Meta", "Meta", "{3AD1513F-07B7-4C14-AB10-83682616ACE5}" + ProjectSection(SolutionItems) = preProject + global.json = global.json + license.txt = license.txt + README.md = README.md + version.json = version.json + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Runners", "Runners", "{C11636E8-A3D7-4B0C-BC1E-2726B02A101F}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Runners", "Runners", "{9D9F81DC-EE05-43B4-AF77-8EFE32024E82}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{A727699B-E50A-4F83-8627-8BE64237582C}" + ProjectSection(FolderGlobals) = preProject + project_1json__JSONSchema = http://www.asp.net/media/4878834/project.json + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{AE42309B-BFBE-4253-8AD6-BBFD676152ED}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "v1", "v1", "{C86F3A8E-8D96-4B0C-AA02-0293F278F1B3}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NuGet", "NuGet", "{52472A94-ACC4-4C12-B9AA-0B6B12E12A48}" + ProjectSection(SolutionItems) = preProject + NuGet.Config = NuGet.Config + src\xunit.assert.nuspec = src\xunit.assert.nuspec + src\xunit.assert.source.nuspec = src\xunit.assert.source.nuspec + src\xunit.console.nuspec = src\xunit.console.nuspec + src\xunit.core.nuspec = src\xunit.core.nuspec + src\xunit.extensibility.core.nuspec = src\xunit.extensibility.core.nuspec + src\xunit.extensibility.execution.nuspec = src\xunit.extensibility.execution.nuspec + src\xunit.nuspec = src\xunit.nuspec + src\xunit.runner.console.nuspec = src\xunit.runner.console.nuspec + src\xunit.runner.msbuild.nuspec = src\xunit.runner.msbuild.nuspec + src\xunit.runner.reporters.nuspec = src\xunit.runner.reporters.nuspec + src\xunit.runner.utility.nuspec = src\xunit.runner.utility.nuspec + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Git", "Git", "{E9DF1DC4-BE5A-4F7B-A8DF-EC5C6A323A21}" + ProjectSection(SolutionItems) = preProject + .gitattributes = .gitattributes + .gitignore = .gitignore + EndProjectSection +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{EB403884-D335-40D1-AD83-BD6F92AC1744}" + ProjectSection(SolutionItems) = preProject + build.ps1 = build.ps1 + .github\workflows\pull-request.yaml = .github\workflows\pull-request.yaml + .github\workflows\push-v2.yaml = .github\workflows\push-v2.yaml + EndProjectSection +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xunit.core", "src\xunit.core\xunit.core.csproj", "{05CC6B6D-5A70-4B82-8118-49A89A70C425}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xunit.assert", "src\xunit.assert\xunit.assert.csproj", "{BFCD161A-39C9-4AFE-B088-E0783CC5F700}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xunit.execution", "src\xunit.execution\xunit.execution.csproj", "{CC208E27-8D87-47BA-94E9-C12927E95E8D}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xunit.console", "src\xunit.console\xunit.console.csproj", "{50C6C0D7-C66D-4CBF-A25A-01CF24D51957}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xunit.runner.utility", "src\xunit.runner.utility\xunit.runner.utility.csproj", "{267535E5-BCF5-4B1F-9055-72F3B81BB94B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xunit.runner.reporters", "src\xunit.runner.reporters\xunit.runner.reporters.csproj", "{6EA687A0-8EEC-4487-B022-B590058F35DE}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xunit.runner.tdnet", "src\xunit.runner.tdnet\xunit.runner.tdnet.csproj", "{B1AB870D-C931-4DC5-AF08-8D0EA15721B7}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xunit.runner.msbuild", "src\xunit.runner.msbuild\xunit.runner.msbuild.csproj", "{6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test.xunit.assert", "test\test.xunit.assert\test.xunit.assert.csproj", "{755FD892-47E3-4F68-B612-DCABB1CD5C93}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test.utility", "test\test.utility\test.utility.csproj", "{B9FA92D5-FDD1-4521-93B6-7BD28711209B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test.xunit.execution", "test\test.xunit.execution\test.xunit.execution.csproj", "{6A997545-19C4-46C6-8F25-67E5938B79C9}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test.xunit1", "test\test.xunit1\test.xunit1.csproj", "{61615231-0BD8-43FA-903E-27F5A5A5E3F6}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test.xunit.console", "test\test.xunit.console\test.xunit.console.csproj", "{1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test.xunit.runner.msbuild", "test\test.xunit.runner.msbuild\test.xunit.runner.msbuild.csproj", "{D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test.xunit.runner.reporters", "test\test.xunit.runner.reporters\test.xunit.runner.reporters.csproj", "{5123DDAC-E0D4-4009-8DE9-9F538D9611D5}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test.xunit.runner.tdnet", "test\test.xunit.runner.tdnet\test.xunit.runner.tdnet.csproj", "{9277539B-8792-4D6D-8B52-DBE784EE3B3A}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "test.xunit.runner.utility", "test\test.xunit.runner.utility\test.xunit.runner.utility.csproj", "{A605E559-074C-4693-B4A3-5F939EFCFC4B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xunit.runner.assemblies", "src\xunit.runner.assemblies\xunit.runner.assemblies.csproj", "{0DE0D908-6454-43D0-8DB7-9146D5B1B548}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug_x86|Any CPU = Debug_x86|Any CPU + Debug_x86|ARM = Debug_x86|ARM + Debug_x86|x64 = Debug_x86|x64 + Debug_x86|x86 = Debug_x86|x86 + Debug|Any CPU = Debug|Any CPU + Debug|ARM = Debug|ARM + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release_x86|Any CPU = Release_x86|Any CPU + Release_x86|ARM = Release_x86|ARM + Release_x86|x64 = Release_x86|x64 + Release_x86|x86 = Release_x86|x86 + Release|Any CPU = Release|Any CPU + Release|ARM = Release|ARM + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug_x86|x64.Build.0 = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug_x86|x86.Build.0 = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug|Any CPU.Build.0 = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug|ARM.ActiveCfg = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug|ARM.Build.0 = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug|x64.ActiveCfg = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug|x64.Build.0 = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug|x86.ActiveCfg = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Debug|x86.Build.0 = Debug|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release_x86|ARM.Build.0 = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release_x86|x64.ActiveCfg = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release_x86|x64.Build.0 = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release_x86|x86.ActiveCfg = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release_x86|x86.Build.0 = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release|Any CPU.ActiveCfg = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release|Any CPU.Build.0 = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release|ARM.ActiveCfg = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release|ARM.Build.0 = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release|x64.ActiveCfg = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release|x64.Build.0 = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release|x86.ActiveCfg = Release|Any CPU + {05CC6B6D-5A70-4B82-8118-49A89A70C425}.Release|x86.Build.0 = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug_x86|x64.Build.0 = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug_x86|x86.Build.0 = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug|ARM.ActiveCfg = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug|ARM.Build.0 = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug|x64.ActiveCfg = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug|x64.Build.0 = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug|x86.ActiveCfg = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Debug|x86.Build.0 = Debug|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release_x86|ARM.Build.0 = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release_x86|x64.ActiveCfg = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release_x86|x64.Build.0 = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release_x86|x86.ActiveCfg = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release_x86|x86.Build.0 = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release|Any CPU.Build.0 = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release|ARM.ActiveCfg = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release|ARM.Build.0 = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release|x64.ActiveCfg = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release|x64.Build.0 = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release|x86.ActiveCfg = Release|Any CPU + {BFCD161A-39C9-4AFE-B088-E0783CC5F700}.Release|x86.Build.0 = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug_x86|x64.Build.0 = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug_x86|x86.Build.0 = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug|ARM.ActiveCfg = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug|ARM.Build.0 = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug|x64.ActiveCfg = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug|x64.Build.0 = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug|x86.ActiveCfg = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Debug|x86.Build.0 = Debug|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release_x86|ARM.Build.0 = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release_x86|x64.ActiveCfg = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release_x86|x64.Build.0 = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release_x86|x86.ActiveCfg = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release_x86|x86.Build.0 = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release|Any CPU.Build.0 = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release|ARM.ActiveCfg = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release|ARM.Build.0 = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release|x64.ActiveCfg = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release|x64.Build.0 = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release|x86.ActiveCfg = Release|Any CPU + {CC208E27-8D87-47BA-94E9-C12927E95E8D}.Release|x86.Build.0 = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug_x86|x64.Build.0 = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug_x86|x86.Build.0 = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug|Any CPU.Build.0 = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug|ARM.ActiveCfg = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug|ARM.Build.0 = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug|x64.ActiveCfg = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug|x64.Build.0 = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug|x86.ActiveCfg = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Debug|x86.Build.0 = Debug|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release_x86|ARM.Build.0 = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release_x86|x64.ActiveCfg = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release_x86|x64.Build.0 = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release_x86|x86.ActiveCfg = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release_x86|x86.Build.0 = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release|Any CPU.ActiveCfg = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release|Any CPU.Build.0 = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release|ARM.ActiveCfg = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release|ARM.Build.0 = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release|x64.ActiveCfg = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release|x64.Build.0 = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release|x86.ActiveCfg = Release|Any CPU + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957}.Release|x86.Build.0 = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug_x86|x64.Build.0 = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug_x86|x86.Build.0 = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug|ARM.ActiveCfg = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug|ARM.Build.0 = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug|x64.ActiveCfg = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug|x64.Build.0 = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug|x86.ActiveCfg = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Debug|x86.Build.0 = Debug|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release_x86|ARM.Build.0 = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release_x86|x64.ActiveCfg = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release_x86|x64.Build.0 = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release_x86|x86.ActiveCfg = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release_x86|x86.Build.0 = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release|Any CPU.Build.0 = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release|ARM.ActiveCfg = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release|ARM.Build.0 = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release|x64.ActiveCfg = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release|x64.Build.0 = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release|x86.ActiveCfg = Release|Any CPU + {267535E5-BCF5-4B1F-9055-72F3B81BB94B}.Release|x86.Build.0 = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug_x86|x64.Build.0 = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug_x86|x86.Build.0 = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug|ARM.ActiveCfg = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug|ARM.Build.0 = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug|x64.ActiveCfg = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug|x64.Build.0 = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug|x86.ActiveCfg = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Debug|x86.Build.0 = Debug|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release_x86|ARM.Build.0 = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release_x86|x64.ActiveCfg = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release_x86|x64.Build.0 = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release_x86|x86.ActiveCfg = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release_x86|x86.Build.0 = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release|Any CPU.Build.0 = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release|ARM.ActiveCfg = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release|ARM.Build.0 = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release|x64.ActiveCfg = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release|x64.Build.0 = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release|x86.ActiveCfg = Release|Any CPU + {6EA687A0-8EEC-4487-B022-B590058F35DE}.Release|x86.Build.0 = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug_x86|x64.Build.0 = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug_x86|x86.Build.0 = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug|ARM.ActiveCfg = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug|ARM.Build.0 = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug|x64.ActiveCfg = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug|x64.Build.0 = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug|x86.ActiveCfg = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Debug|x86.Build.0 = Debug|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release_x86|ARM.Build.0 = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release_x86|x64.ActiveCfg = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release_x86|x64.Build.0 = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release_x86|x86.ActiveCfg = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release_x86|x86.Build.0 = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release|Any CPU.Build.0 = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release|ARM.ActiveCfg = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release|ARM.Build.0 = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release|x64.ActiveCfg = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release|x64.Build.0 = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release|x86.ActiveCfg = Release|Any CPU + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7}.Release|x86.Build.0 = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug_x86|x64.Build.0 = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug_x86|x86.Build.0 = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug|ARM.ActiveCfg = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug|ARM.Build.0 = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug|x64.ActiveCfg = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug|x64.Build.0 = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug|x86.ActiveCfg = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Debug|x86.Build.0 = Debug|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release_x86|ARM.Build.0 = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release_x86|x64.ActiveCfg = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release_x86|x64.Build.0 = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release_x86|x86.ActiveCfg = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release_x86|x86.Build.0 = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release|Any CPU.Build.0 = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release|ARM.ActiveCfg = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release|ARM.Build.0 = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release|x64.ActiveCfg = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release|x64.Build.0 = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release|x86.ActiveCfg = Release|Any CPU + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA}.Release|x86.Build.0 = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug_x86|x64.Build.0 = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug_x86|x86.Build.0 = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug|Any CPU.Build.0 = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug|ARM.ActiveCfg = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug|ARM.Build.0 = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug|x64.ActiveCfg = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug|x64.Build.0 = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug|x86.ActiveCfg = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Debug|x86.Build.0 = Debug|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release_x86|ARM.Build.0 = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release_x86|x64.ActiveCfg = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release_x86|x64.Build.0 = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release_x86|x86.ActiveCfg = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release_x86|x86.Build.0 = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release|Any CPU.ActiveCfg = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release|Any CPU.Build.0 = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release|ARM.ActiveCfg = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release|ARM.Build.0 = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release|x64.ActiveCfg = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release|x64.Build.0 = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release|x86.ActiveCfg = Release|Any CPU + {755FD892-47E3-4F68-B612-DCABB1CD5C93}.Release|x86.Build.0 = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug_x86|x64.Build.0 = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug_x86|x86.Build.0 = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug|ARM.ActiveCfg = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug|ARM.Build.0 = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug|x64.ActiveCfg = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug|x64.Build.0 = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug|x86.ActiveCfg = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Debug|x86.Build.0 = Debug|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release_x86|ARM.Build.0 = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release_x86|x64.ActiveCfg = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release_x86|x64.Build.0 = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release_x86|x86.ActiveCfg = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release_x86|x86.Build.0 = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release|Any CPU.Build.0 = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release|ARM.ActiveCfg = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release|ARM.Build.0 = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release|x64.ActiveCfg = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release|x64.Build.0 = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release|x86.ActiveCfg = Release|Any CPU + {B9FA92D5-FDD1-4521-93B6-7BD28711209B}.Release|x86.Build.0 = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug_x86|x64.Build.0 = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug_x86|x86.Build.0 = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug|ARM.ActiveCfg = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug|ARM.Build.0 = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug|x64.ActiveCfg = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug|x64.Build.0 = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug|x86.ActiveCfg = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Debug|x86.Build.0 = Debug|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release_x86|ARM.Build.0 = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release_x86|x64.ActiveCfg = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release_x86|x64.Build.0 = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release_x86|x86.ActiveCfg = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release_x86|x86.Build.0 = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release|Any CPU.Build.0 = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release|ARM.ActiveCfg = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release|ARM.Build.0 = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release|x64.ActiveCfg = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release|x64.Build.0 = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release|x86.ActiveCfg = Release|Any CPU + {6A997545-19C4-46C6-8F25-67E5938B79C9}.Release|x86.Build.0 = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug_x86|x64.Build.0 = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug_x86|x86.Build.0 = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug|ARM.ActiveCfg = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug|ARM.Build.0 = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug|x64.ActiveCfg = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug|x64.Build.0 = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug|x86.ActiveCfg = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Debug|x86.Build.0 = Debug|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release_x86|ARM.Build.0 = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release_x86|x64.ActiveCfg = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release_x86|x64.Build.0 = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release_x86|x86.ActiveCfg = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release_x86|x86.Build.0 = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release|Any CPU.Build.0 = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release|ARM.ActiveCfg = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release|ARM.Build.0 = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release|x64.ActiveCfg = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release|x64.Build.0 = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release|x86.ActiveCfg = Release|Any CPU + {61615231-0BD8-43FA-903E-27F5A5A5E3F6}.Release|x86.Build.0 = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug_x86|x64.Build.0 = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug_x86|x86.Build.0 = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug|ARM.ActiveCfg = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug|ARM.Build.0 = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug|x64.ActiveCfg = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug|x64.Build.0 = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug|x86.ActiveCfg = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Debug|x86.Build.0 = Debug|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release_x86|ARM.Build.0 = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release_x86|x64.ActiveCfg = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release_x86|x64.Build.0 = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release_x86|x86.ActiveCfg = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release_x86|x86.Build.0 = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release|Any CPU.Build.0 = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release|ARM.ActiveCfg = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release|ARM.Build.0 = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release|x64.ActiveCfg = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release|x64.Build.0 = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release|x86.ActiveCfg = Release|Any CPU + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478}.Release|x86.Build.0 = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug_x86|x64.Build.0 = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug_x86|x86.Build.0 = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug|ARM.ActiveCfg = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug|ARM.Build.0 = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug|x64.ActiveCfg = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug|x64.Build.0 = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug|x86.ActiveCfg = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Debug|x86.Build.0 = Debug|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release_x86|ARM.Build.0 = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release_x86|x64.ActiveCfg = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release_x86|x64.Build.0 = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release_x86|x86.ActiveCfg = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release_x86|x86.Build.0 = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release|Any CPU.Build.0 = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release|ARM.ActiveCfg = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release|ARM.Build.0 = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release|x64.ActiveCfg = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release|x64.Build.0 = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release|x86.ActiveCfg = Release|Any CPU + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B}.Release|x86.Build.0 = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug_x86|x64.Build.0 = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug_x86|x86.Build.0 = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug|ARM.ActiveCfg = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug|ARM.Build.0 = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug|x64.ActiveCfg = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug|x64.Build.0 = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug|x86.ActiveCfg = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Debug|x86.Build.0 = Debug|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release_x86|ARM.Build.0 = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release_x86|x64.ActiveCfg = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release_x86|x64.Build.0 = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release_x86|x86.ActiveCfg = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release_x86|x86.Build.0 = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release|Any CPU.Build.0 = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release|ARM.ActiveCfg = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release|ARM.Build.0 = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release|x64.ActiveCfg = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release|x64.Build.0 = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release|x86.ActiveCfg = Release|Any CPU + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5}.Release|x86.Build.0 = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug_x86|x64.Build.0 = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug_x86|x86.Build.0 = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug|ARM.ActiveCfg = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug|ARM.Build.0 = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug|x64.ActiveCfg = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug|x64.Build.0 = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug|x86.ActiveCfg = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Debug|x86.Build.0 = Debug|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release_x86|ARM.Build.0 = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release_x86|x64.ActiveCfg = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release_x86|x64.Build.0 = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release_x86|x86.ActiveCfg = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release_x86|x86.Build.0 = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release|Any CPU.Build.0 = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release|ARM.ActiveCfg = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release|ARM.Build.0 = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release|x64.ActiveCfg = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release|x64.Build.0 = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release|x86.ActiveCfg = Release|Any CPU + {9277539B-8792-4D6D-8B52-DBE784EE3B3A}.Release|x86.Build.0 = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug_x86|x64.Build.0 = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug_x86|x86.Build.0 = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug|ARM.ActiveCfg = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug|ARM.Build.0 = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug|x64.ActiveCfg = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug|x64.Build.0 = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug|x86.ActiveCfg = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Debug|x86.Build.0 = Debug|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release_x86|ARM.Build.0 = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release_x86|x64.ActiveCfg = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release_x86|x64.Build.0 = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release_x86|x86.ActiveCfg = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release_x86|x86.Build.0 = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release|Any CPU.Build.0 = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release|ARM.ActiveCfg = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release|ARM.Build.0 = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release|x64.ActiveCfg = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release|x64.Build.0 = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release|x86.ActiveCfg = Release|Any CPU + {A605E559-074C-4693-B4A3-5F939EFCFC4B}.Release|x86.Build.0 = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug_x86|Any CPU.Build.0 = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug_x86|ARM.ActiveCfg = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug_x86|ARM.Build.0 = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug_x86|x64.ActiveCfg = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug_x86|x64.Build.0 = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug_x86|x86.ActiveCfg = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug_x86|x86.Build.0 = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug|ARM.ActiveCfg = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug|ARM.Build.0 = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug|x64.ActiveCfg = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug|x64.Build.0 = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug|x86.ActiveCfg = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Debug|x86.Build.0 = Debug|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release_x86|Any CPU.ActiveCfg = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release_x86|Any CPU.Build.0 = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release_x86|ARM.ActiveCfg = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release_x86|ARM.Build.0 = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release_x86|x64.ActiveCfg = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release_x86|x64.Build.0 = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release_x86|x86.ActiveCfg = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release_x86|x86.Build.0 = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release|Any CPU.Build.0 = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release|ARM.ActiveCfg = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release|ARM.Build.0 = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release|x64.ActiveCfg = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release|x64.Build.0 = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release|x86.ActiveCfg = Release|Any CPU + {0DE0D908-6454-43D0-8DB7-9146D5B1B548}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {C11636E8-A3D7-4B0C-BC1E-2726B02A101F} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302} + {9D9F81DC-EE05-43B4-AF77-8EFE32024E82} = {D013AD79-A261-4476-93FC-9AF7E637CDB6} + {A727699B-E50A-4F83-8627-8BE64237582C} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302} + {AE42309B-BFBE-4253-8AD6-BBFD676152ED} = {D013AD79-A261-4476-93FC-9AF7E637CDB6} + {C86F3A8E-8D96-4B0C-AA02-0293F278F1B3} = {D013AD79-A261-4476-93FC-9AF7E637CDB6} + {52472A94-ACC4-4C12-B9AA-0B6B12E12A48} = {3AD1513F-07B7-4C14-AB10-83682616ACE5} + {E9DF1DC4-BE5A-4F7B-A8DF-EC5C6A323A21} = {3AD1513F-07B7-4C14-AB10-83682616ACE5} + {EB403884-D335-40D1-AD83-BD6F92AC1744} = {3AD1513F-07B7-4C14-AB10-83682616ACE5} + {05CC6B6D-5A70-4B82-8118-49A89A70C425} = {A727699B-E50A-4F83-8627-8BE64237582C} + {BFCD161A-39C9-4AFE-B088-E0783CC5F700} = {A727699B-E50A-4F83-8627-8BE64237582C} + {CC208E27-8D87-47BA-94E9-C12927E95E8D} = {A727699B-E50A-4F83-8627-8BE64237582C} + {50C6C0D7-C66D-4CBF-A25A-01CF24D51957} = {C11636E8-A3D7-4B0C-BC1E-2726B02A101F} + {267535E5-BCF5-4B1F-9055-72F3B81BB94B} = {A727699B-E50A-4F83-8627-8BE64237582C} + {6EA687A0-8EEC-4487-B022-B590058F35DE} = {A727699B-E50A-4F83-8627-8BE64237582C} + {B1AB870D-C931-4DC5-AF08-8D0EA15721B7} = {C11636E8-A3D7-4B0C-BC1E-2726B02A101F} + {6F9F2C9B-EAF8-4E2D-B26F-8D4FBBB70DCA} = {C11636E8-A3D7-4B0C-BC1E-2726B02A101F} + {755FD892-47E3-4F68-B612-DCABB1CD5C93} = {AE42309B-BFBE-4253-8AD6-BBFD676152ED} + {B9FA92D5-FDD1-4521-93B6-7BD28711209B} = {D013AD79-A261-4476-93FC-9AF7E637CDB6} + {6A997545-19C4-46C6-8F25-67E5938B79C9} = {AE42309B-BFBE-4253-8AD6-BBFD676152ED} + {61615231-0BD8-43FA-903E-27F5A5A5E3F6} = {C86F3A8E-8D96-4B0C-AA02-0293F278F1B3} + {1D8C8259-A9C6-4698-8FF5-0BA00FDB7478} = {9D9F81DC-EE05-43B4-AF77-8EFE32024E82} + {D2EAB5B1-1E8B-48CB-BCB7-7EAE91AD497B} = {9D9F81DC-EE05-43B4-AF77-8EFE32024E82} + {5123DDAC-E0D4-4009-8DE9-9F538D9611D5} = {AE42309B-BFBE-4253-8AD6-BBFD676152ED} + {9277539B-8792-4D6D-8B52-DBE784EE3B3A} = {9D9F81DC-EE05-43B4-AF77-8EFE32024E82} + {A605E559-074C-4693-B4A3-5F939EFCFC4B} = {AE42309B-BFBE-4253-8AD6-BBFD676152ED} + {0DE0D908-6454-43D0-8DB7-9146D5B1B548} = {A727699B-E50A-4F83-8627-8BE64237582C} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {290036A3-A9C9-4AB2-8D97-7DA0711FDABD} + EndGlobalSection +EndGlobal diff --git a/tests/licensedcode/data/datadriven/lic4/xunit.sln.yml b/tests/licensedcode/data/datadriven/lic4/xunit.sln.yml new file mode 100644 index 00000000000..fff5ad7ac28 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/xunit.sln.yml @@ -0,0 +1,2 @@ +notes: this is not a icense, just as fasle positive + diff --git a/tests/licensedcode/data/licenses_reference_reporting/scan-matched-text-with-reference.expected.json b/tests/licensedcode/data/licenses_reference_reporting/scan-matched-text-with-reference.expected.json index 8b5ef3c5d2b..0961d22e759 100644 --- a/tests/licensedcode/data/licenses_reference_reporting/scan-matched-text-with-reference.expected.json +++ b/tests/licensedcode/data/licenses_reference_reporting/scan-matched-text-with-reference.expected.json @@ -250,7 +250,12 @@ "is_unknown": false, "is_generic": false, "spdx_license_key": "MIT", - "other_spdx_license_keys": [], + "other_spdx_license_keys": [ + "LicenseRef-MIT-Bootstrap", + "LicenseRef-MIT-Discord", + "LicenseRef-MIT-TC", + "LicenseRef-MIT-Diehl" + ], "osi_license_key": null, "text_urls": [ "http://opensource.org/licenses/mit-license.php" diff --git a/tests/licensedcode/data/licenses_reference_reporting/scan-with-reference.expected.json b/tests/licensedcode/data/licenses_reference_reporting/scan-with-reference.expected.json index b4947f047b8..bc6d92045e1 100644 --- a/tests/licensedcode/data/licenses_reference_reporting/scan-with-reference.expected.json +++ b/tests/licensedcode/data/licenses_reference_reporting/scan-with-reference.expected.json @@ -247,7 +247,12 @@ "is_unknown": false, "is_generic": false, "spdx_license_key": "MIT", - "other_spdx_license_keys": [], + "other_spdx_license_keys": [ + "LicenseRef-MIT-Bootstrap", + "LicenseRef-MIT-Discord", + "LicenseRef-MIT-TC", + "LicenseRef-MIT-Diehl" + ], "osi_license_key": null, "text_urls": [ "http://opensource.org/licenses/mit-license.php" diff --git a/tests/licensedcode/data/plugin_license/scan/ffmpeg-license.expected.json b/tests/licensedcode/data/plugin_license/scan/ffmpeg-license.expected.json index 12b8911b71c..fc4770a5db2 100644 --- a/tests/licensedcode/data/plugin_license/scan/ffmpeg-license.expected.json +++ b/tests/licensedcode/data/plugin_license/scan/ffmpeg-license.expected.json @@ -6,15 +6,6 @@ "detection_count": 1, "detection_log": [] }, - { - "identifier": "gpl_1_0_plus-473308ff-72ce-7e72-b3a9-5b1cc6680abb", - "license_expression": "gpl-1.0-plus", - "detection_count": 1, - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ] - }, { "identifier": "gpl_2_0_and_apache_2_0_and_lgpl_3_0_plus-c2393e5a-e531-304f-58a9-a6431d46d214", "license_expression": "gpl-2.0 AND apache-2.0 AND lgpl-3.0-plus", @@ -46,8 +37,8 @@ { "path": "ffmpeg-LICENSE.md", "type": "file", - "detected_license_expression": "(lgpl-2.1-plus AND other-permissive AND gpl-2.0-plus) AND gpl-1.0-plus AND (lgpl-3.0 AND lgpl-3.0-plus AND (lgpl-3.0 AND gpl-3.0)) AND (ijg AND mit) AND (gpl-2.0 AND apache-2.0 AND lgpl-3.0-plus)", - "detected_license_expression_spdx": "(LGPL-2.1-or-later AND LicenseRef-scancode-other-permissive AND GPL-2.0-or-later) AND GPL-1.0-or-later AND (LGPL-3.0-only AND LGPL-3.0-or-later AND (LGPL-3.0-only AND GPL-3.0-only)) AND (IJG AND MIT) AND (GPL-2.0-only AND Apache-2.0 AND LGPL-3.0-or-later)", + "detected_license_expression": "(lgpl-2.1-plus AND other-permissive AND gpl-2.0-plus) AND (lgpl-3.0 AND lgpl-3.0-plus AND (lgpl-3.0 AND gpl-3.0)) AND (ijg AND mit) AND gpl-1.0-plus AND (gpl-2.0 AND apache-2.0 AND lgpl-3.0-plus)", + "detected_license_expression_spdx": "(LGPL-2.1-or-later AND LicenseRef-scancode-other-permissive AND GPL-2.0-or-later) AND (LGPL-3.0-only AND LGPL-3.0-or-later AND (LGPL-3.0-only AND GPL-3.0-only)) AND (IJG AND MIT) AND GPL-1.0-or-later AND (GPL-2.0-only AND Apache-2.0 AND LGPL-3.0-or-later)", "license_detections": [ { "license_expression": "lgpl-2.1-plus AND other-permissive AND gpl-2.0-plus", @@ -69,29 +60,6 @@ "detection_log": [], "identifier": "lgpl_2_1_plus_and_other_permissive_and_gpl_2_0_plus-666058ef-8c38-3b17-d8e7-448b304de833" }, - { - "license_expression": "gpl-1.0-plus", - "matches": [ - { - "score": 50.0, - "start_line": 18, - "end_line": 18, - "matched_length": 1, - "match_coverage": 100.0, - "matcher": "2-aho", - "license_expression": "gpl-1.0-plus", - "rule_identifier": "gpl_bare_word_only.RULE", - "rule_relevance": 50, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_word_only.RULE", - "matched_text": "gpl." - } - ], - "detection_log": [ - "possible-false-positive", - "not-license-clues-as-more-detections-present" - ], - "identifier": "gpl_1_0_plus-473308ff-72ce-7e72-b3a9-5b1cc6680abb" - }, { "license_expression": "lgpl-3.0 AND lgpl-3.0-plus AND (lgpl-3.0 AND gpl-3.0)", "matches": [ @@ -307,7 +275,7 @@ "matched_text": "LGPL" } ], - "percentage_of_license_text": 34.96, + "percentage_of_license_text": 34.78, "scan_errors": [] } ] diff --git a/tests/licensedcode/test_models.py b/tests/licensedcode/test_models.py index e8332336c49..b50d3986fc7 100644 --- a/tests/licensedcode/test_models.py +++ b/tests/licensedcode/test_models.py @@ -216,31 +216,37 @@ def test_load_rules(self): expected = self.get_test_loc('models/rules.expected.json') check_json(expected, results) - def test_rules_types_has_only_boolean_values(self): + def test_rules_have_only_one_flag_of_bool_type(self): rules = list(models.load_rules(rules_data_dir)) - rule_consitency_errors = [] + rule_errors = [] for r in rules: - list_rule_types = [r.is_license_text, r.is_license_notice, - r.is_license_tag, r.is_license_reference] - - if any(type(rule_type) != bool for rule_type in list_rule_types): - rule_consitency_errors.append((r.data_file, r.text_file)) - - assert rule_consitency_errors == [] - - def test_rules_have_only_one_rule_type(self): - rules = list(models.load_rules(rules_data_dir)) - rule_consitency_errors = [] - - for r in rules: - list_rule_types = [r.is_license_text, r.is_license_notice, - r.is_license_tag, r.is_license_reference] - - if sum(list_rule_types) > 1: - rule_consitency_errors.append(r.data_file) - - assert rule_consitency_errors == [] + rule_flags = [ + r.is_license_text, + r.is_license_notice, + r.is_license_reference, + r.is_license_tag, + r.is_license_intro, + r.is_license_clue, + r.is_false_positive, + ] + number_of_flags_set = 0 + for rule_flag in rule_flags: + if not type(rule_flag) == bool: + # invalid type + rule_errors.append(r.rule_file) + break + + if rule_flag is True: + number_of_flags_set += 1 + elif rule_flag is False: + continue + + if number_of_flags_set not in (0, 1): + rule_errors.append(r.rule_file) + break + + assert rule_errors == [] def test_dump_rules(self): test_dir = self.get_test_loc('models/rules', copy=True) diff --git a/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/o/open-vm-tools/stable_copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/o/open-vm-tools/stable_copyright-detailed.expected.yml index 37b8655f23f..e8c25f5cdc6 100644 --- a/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/o/open-vm-tools/stable_copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/o/open-vm-tools/stable_copyright-detailed.expected.yml @@ -11,11 +11,11 @@ declared_license: - LGPL-2.1 - MIT(*) - MIT(**) -declared_license_expression: lgpl-2.1 AND lgpl-2.0-plus -declared_license_expression_spdx: LGPL-2.1-only AND LGPL-2.0-or-later -other_license_expression: (lgpl-2.1 AND lgpl-2.0-plus) AND (gpl-2.0 AND gpl-2.0 AND gpl-2.0) - AND bsd-new AND (isc AND ibm-dhcp) AND xfree86-1.0 AND (gpl-2.0-plus AND gpl-2.0-plus) -other_license_expression_spdx: (LGPL-2.1-only AND LGPL-2.0-or-later) AND (GPL-2.0-only AND GPL-2.0-only +declared_license_expression: lgpl-2.1 +declared_license_expression_spdx: LGPL-2.1-only +other_license_expression: (lgpl-2.1 AND lgpl-2.1) AND (gpl-2.0 AND gpl-2.0 AND gpl-2.0) AND + bsd-new AND (isc AND ibm-dhcp) AND xfree86-1.0 AND (gpl-2.0-plus AND gpl-2.0-plus) +other_license_expression_spdx: (LGPL-2.1-only AND LGPL-2.1-only) AND (GPL-2.0-only AND GPL-2.0-only AND GPL-2.0-only) AND BSD-3-Clause AND (ISC AND LicenseRef-scancode-ibm-dhcp) AND LicenseRef-scancode-xfree86-1.0 AND (GPL-2.0-or-later AND GPL-2.0-or-later) license_detections: [] @@ -140,7 +140,7 @@ other_license_detections: The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2 file. identifier: gpl_2_0_plus-fe100017-b30d-a3e1-08b9-40cc9f056db5 - - license_expression: lgpl-2.1 AND lgpl-2.0-plus + - license_expression: lgpl-2.1 matches: - score: '100.0' start_line: 96 @@ -153,16 +153,16 @@ other_license_detections: rule_relevance: 100 rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_38.RULE matched_text: 'License: lgpl-2.1' - - score: '89.68' + - score: '100.0' start_line: 97 end_line: 110 - matched_length: 113 - match_coverage: '89.68' - matcher: 3-seq - license_expression: lgpl-2.0-plus - rule_identifier: lgpl-2.0-plus_477.RULE + matched_length: 120 + match_coverage: '100.0' + matcher: 1-hash + license_expression: lgpl-2.1 + rule_identifier: lgpl-2.1_453.RULE rule_relevance: 100 - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.0-plus_477.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1_453.RULE matched_text: | This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -177,8 +177,8 @@ other_license_detections: along with this program. If not, see . The complete text of the GNU Lesser General Public License - can be found in /usr/share/common-licenses/ - identifier: lgpl_2_1_and_lgpl_2_0_plus-75866488-678a-19bf-7970-6610a46062a1 + can be found in /usr/share/common-licenses/GPL-2.1 file. + identifier: lgpl_2_1-eef28a01-301f-7c68-9a3d-06ca8557b06f - license_expression: isc AND ibm-dhcp matches: - score: '100.0' diff --git a/tests/packagedcode/data/license_detection/reference-to-package/paddlenlp.expected.json b/tests/packagedcode/data/license_detection/reference-to-package/paddlenlp.expected.json index 9cc1a844a19..3bd8c34bc5c 100644 --- a/tests/packagedcode/data/license_detection/reference-to-package/paddlenlp.expected.json +++ b/tests/packagedcode/data/license_detection/reference-to-package/paddlenlp.expected.json @@ -406,15 +406,21 @@ ] }, { - "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d", + "identifier": "apache_2_0-ec8d7936-cda2-7097-40cf-dbe8a06e916e", "license_expression": "apache-2.0", "detection_count": 2, "detection_log": [] }, { - "identifier": "apache_2_0-ec8d7936-cda2-7097-40cf-dbe8a06e916e", + "identifier": "apache_2_0-3972bfb2-eb21-3d0c-d862-1642babb9f95", "license_expression": "apache-2.0", - "detection_count": 2, + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d", + "license_expression": "apache-2.0", + "detection_count": 1, "detection_log": [] }, { @@ -1448,21 +1454,21 @@ "license_expression": "apache-2.0", "matches": [ { - "score": 100.0, - "start_line": 3, + "score": 74.36, + "start_line": 1, "end_line": 13, - "matched_length": 85, - "match_coverage": 100.0, - "matcher": "2-aho", + "matched_length": 87, + "match_coverage": 74.36, + "matcher": "3-seq", "license_expression": "apache-2.0", - "rule_identifier": "apache-2.0_7.RULE", + "rule_identifier": "apache-2.0_1297.RULE", "rule_relevance": 100, - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", - "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License." + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1297.RULE", + "matched_text": "All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this [file] except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License." } ], "detection_log": [], - "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + "identifier": "apache_2_0-3972bfb2-eb21-3d0c-d862-1642babb9f95" }, { "license_expression": "apache-2.0", @@ -1499,7 +1505,7 @@ } ], "license_clues": [], - "percentage_of_license_text": 26.1, + "percentage_of_license_text": 26.65, "scan_errors": [] } ] diff --git a/tests/packagedcode/test_npm.py b/tests/packagedcode/test_npm.py index 366c849b97f..4bf9877011d 100644 --- a/tests/packagedcode/test_npm.py +++ b/tests/packagedcode/test_npm.py @@ -409,7 +409,7 @@ def test_npm_scan_with_private_package_json_and_yarn_lock(self): # FIXME: we should follow the LICENSE file (['SEE LICENSE IN LICENSE'], 'unknown-license-reference'), - (['For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license.'], 'unknown-license-reference'), + (['For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license.'], '(gpl-2.0-plus AND (gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1)) OR commercial-license'), (['See License in ./LICENSE file'], 'unknown-license-reference'), ]