From 82e207c304d51f4e74110af3fa206e5281bd8bde Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 22 Mar 2024 14:44:28 +0100 Subject: [PATCH 01/21] Improve copyright detection accuracy Signed-off-by: Philippe Ombredanne --- src/cluecode/copyrights.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cluecode/copyrights.py b/src/cluecode/copyrights.py index f5f1ed508b4..7fa405714b3 100644 --- a/src/cluecode/copyrights.py +++ b/src/cluecode/copyrights.py @@ -726,6 +726,9 @@ def build_detection_from_node( # Short words skipping some leading caps (r'^[BEFHJMNPQRTUVW][a-z]$', 'NN'), + # three or more AsCamelCase GetQueueReference + (r'^([A-Z][a-z]+){3,}$', 'JUNK'), + # misc exceptions (r'^dead_horse$', 'NN'), (r'^A11yance', 'NNP'), @@ -897,6 +900,7 @@ def build_detection_from_node( (r'^Should$', 'JUNK'), (r'^[Ll]icensing\@?$', 'JUNK'), (r'^Disclaimer$', 'JUNK'), + (r'^Directive$', 'JUNK'), (r'^LAWS\,?$', 'JUNK'), (r'^[Ll]aws?,?$', 'JUNK'), (r'^me$', 'JUNK'), From ad754838696da0147d0e69b640cc32f991cff615 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 22 Mar 2024 19:19:37 +0100 Subject: [PATCH 02/21] Add key phrase to license rule And requalify other rule as GPL-2.0 Signed-off-by: Philippe Ombredanne --- src/licensedcode/data/rules/gpl-1.0-plus_477.RULE | 1 + src/licensedcode/data/rules/gpl-2.0-plus_1130.RULE | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1130.RULE diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_477.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_477.RULE index 2a8c458b60a..1789897db09 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_477.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_477.RULE @@ -2,6 +2,7 @@ license_expression: gpl-1.0-plus is_license_reference: yes relevance: 100 +is_deprecated: yes --- taken from the original NTT provided GPL source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1130.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1130.RULE new file mode 100644 index 00000000000..f1fa7789164 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1130.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + +{{taken from the original NTT provided GPL source.}} \ No newline at end of file From 0c688fa77aef358722f9d900386e16a683aaa688 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 26 Apr 2024 16:52:19 +0200 Subject: [PATCH 03/21] Add notes to mit-taylor-variant licenses Signed-off-by: Philippe Ombredanne --- src/licensedcode/data/licenses/mit-taylor-variant.LICENSE | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/licensedcode/data/licenses/mit-taylor-variant.LICENSE b/src/licensedcode/data/licenses/mit-taylor-variant.LICENSE index ddbae540563..e54d9b7ddaf 100644 --- a/src/licensedcode/data/licenses/mit-taylor-variant.LICENSE +++ b/src/licensedcode/data/licenses/mit-taylor-variant.LICENSE @@ -5,13 +5,14 @@ name: MIT Taylor Variant category: Permissive owner: Unspecified spdx_license_key: LicenseRef-scancode-mit-taylor-variant +notes: Originally from https://github.com/quinntaylor/CHDataStructures/blob/097c0e3f4d7ae1c24266d3d03434e07b9b76f3db/source/Util.h#L6C1-L9C1 --- Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. -The software is provided "as is", without warranty of any kind, including all +The software is provided "as is", without warranty of any kind, including all implied warranties of merchantability and fitness. 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 From 5dfdaf377e8184c42360cdc9d1e392c186a1c7a3 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 26 Apr 2024 16:53:22 +0200 Subject: [PATCH 04/21] Tag key phrases in license rules This helps with better selectivity Signed-off-by: Philippe Ombredanne --- src/licensedcode/data/rules/agpl-3.0-plus_11.RULE | 4 ++-- src/licensedcode/data/rules/agpl-3.0-plus_161.RULE | 4 ++-- src/licensedcode/data/rules/bsd-2-clause-views_73.RULE | 2 +- src/licensedcode/data/rules/bsd-new_541.RULE | 5 +++-- src/licensedcode/data/rules/bsd-new_878.RULE | 4 ++-- src/licensedcode/data/rules/gpl-2.0-plus_636.RULE | 4 ++-- .../data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_14.RULE | 2 +- .../data/rules/gpl-2.0_with_ecos-exception-2.0_2.RULE | 8 ++++---- src/licensedcode/data/rules/gpl-3.0_290.RULE | 4 ++-- src/licensedcode/data/rules/isc_34.RULE | 7 ++++--- src/licensedcode/data/rules/lgpl-2.1_150.RULE | 2 +- src/licensedcode/data/rules/lgpl-3.0-plus_283.RULE | 8 ++++---- src/licensedcode/data/rules/mit_or_gpl-3.0_17.RULE | 2 +- 13 files changed, 29 insertions(+), 27 deletions(-) diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE index 92c4ac35c0e..94757c983de 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE @@ -5,8 +5,8 @@ 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, or (at your option) any later version. +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.}} 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 . If not, see http://www.gnu.org/licenses/. \ No newline at end of file +You should have received a copy of the GNU Affero General Public License along with . If not, see http://www.gnu.org/licenses/. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE index 3f04712788b..aaeb1c1cea8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- This script is part of GNU Ghostscript and is distributed under -the terms of the GNU Affero General Public License. See the file COPYING -for more information. \ No newline at end of file +the terms of the {{GNU Affero General Public License.}} See the file COPYING +for more information. diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_73.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_73.RULE index a38f88ad0d1..07688995568 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_73.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_73.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://github.com/garycourt/uri-js --- -License: http://github.com/garycourt/uri-js \ No newline at end of file +License: {{ http://github.com/garycourt/uri-js }} diff --git a/src/licensedcode/data/rules/bsd-new_541.RULE b/src/licensedcode/data/rules/bsd-new_541.RULE index ab523d63c10..98d6b5d2618 100644 --- a/src/licensedcode/data/rules/bsd-new_541.RULE +++ b/src/licensedcode/data/rules/bsd-new_541.RULE @@ -2,7 +2,8 @@ license_expression: bsd-new is_license_tag: yes relevance: 100 +is_contiguous: yes --- -License - BSD 3-clause license \ No newline at end of file +{{License + BSD 3-clause license}} diff --git a/src/licensedcode/data/rules/bsd-new_878.RULE b/src/licensedcode/data/rules/bsd-new_878.RULE index c969310b7d0..aff143c33dd 100644 --- a/src/licensedcode/data/rules/bsd-new_878.RULE +++ b/src/licensedcode/data/rules/bsd-new_878.RULE @@ -1,7 +1,7 @@ --- license_expression: bsd-new -is_license_reference: yes +is_license_clue: yes relevance: 90 --- -BSD-style \ No newline at end of file +BSD-style diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_636.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_636.RULE index 63ee5bd0431..13b738c7f17 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_636.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_636.RULE @@ -5,5 +5,5 @@ relevance: 100 --- Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU General Public License, Version 2 any -later version published by the Free Software Foundation. \ No newline at end of file +under the terms of the {{GNU General Public License, Version 2 any +later version}} published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_14.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_14.RULE index 48c3eca2a8d..b883d6baf78 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_14.RULE @@ -8,4 +8,4 @@ ignorable_urls: --- ### License ### -This plugin is open sourced under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file +This plugin is open sourced under {{GNU GPL 2}} {{or later}} and {{GNU LGPL 2}} {{or later}}. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_2.RULE index 330ac4029d2..4f00135a751 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_2.RULE @@ -6,14 +6,14 @@ referenced_filenames: - COPYING.GPL --- -The software in this package is distributed under the GNU General -Public License version 2 (with a special exception described below). +The software in this package is distributed under the {{GNU General +Public License version 2 (with a special exception }} described below). A copy of GNU General Public License (GPL) is included in this distribution, in the file COPYING.GPL. -As a special exception, if other files instantiate templates or use macros +{{As a special exception, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it with other works to produce a work based on this file, this file does not by itself cause the resulting work to be covered -by the GNU General Public License. \ No newline at end of file +by the GNU General Public License. }} diff --git a/src/licensedcode/data/rules/gpl-3.0_290.RULE b/src/licensedcode/data/rules/gpl-3.0_290.RULE index 360b833e6b5..bf7f736feab 100644 --- a/src/licensedcode/data/rules/gpl-3.0_290.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_290.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -LICENSE: This program is free software and may be modified and distributed under the terms of the GNU Public License version 3. -# See the LICENSE file at the top of the source tree. \ No newline at end of file +LICENSE: This program is free software and may be modified and distributed under the terms of the {{GNU Public License version 3.}} +# See the LICENSE file at the top of the source tree. diff --git a/src/licensedcode/data/rules/isc_34.RULE b/src/licensedcode/data/rules/isc_34.RULE index c6784db36bd..9c0dde51a05 100644 --- a/src/licensedcode/data/rules/isc_34.RULE +++ b/src/licensedcode/data/rules/isc_34.RULE @@ -4,10 +4,10 @@ is_license_text: yes --- The one -exception is licensed with a slightly different MIT variant: +exception is {{licensed with a slightly different MIT variant}}: The contents of this directory are licensed under the following terms: - +{{ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. @@ -18,4 +18,5 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +}} diff --git a/src/licensedcode/data/rules/lgpl-2.1_150.RULE b/src/licensedcode/data/rules/lgpl-2.1_150.RULE index 129ed170e74..2916dc89cc1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_150.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_150.RULE @@ -6,4 +6,4 @@ relevance: 100 # This program is free software. # You can distribute/modify this program under the terms of -# the GNU Lesser General Public License version 2.1. \ No newline at end of file +# the {{GNU Lesser General Public License version 2.1.}} diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_283.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_283.RULE index 160327723b3..75cc21c807a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_283.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_283.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This file 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. +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 file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -16,4 +16,4 @@ 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 Lesser General Public License -along with this file. If not, see . \ No newline at end of file +along with this file. If not, see . diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_17.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_17.RULE index 3cae3b67f1a..560aa33dc93 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_17.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_17.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -This source code is licensed under both the MIT license (found in the LICENSE file) and the GPLv3 (found in the COPYING file). \ No newline at end of file +This source code is licensed under {{both the MIT license}} (found in the LICENSE file) and the {{GPLv3}} (found in the COPYING file). From 3669c5feda71e1deee9ef5f6597dcc5e514bc98b Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 26 Apr 2024 16:53:45 +0200 Subject: [PATCH 05/21] Add new generated keyword Signed-off-by: Philippe Ombredanne --- src/summarycode/generated.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/summarycode/generated.py b/src/summarycode/generated.py index e4937eb719e..2fc913f3dfd 100644 --- a/src/summarycode/generated.py +++ b/src/summarycode/generated.py @@ -203,6 +203,9 @@ def generated_scanner(location, **kwargs): 'generated by:jjtree: do not edit this line', 'generated code (do not edit this line)', + # in some Go projects like buildkit + 'code generated by smithy-go-codegen do not edit', + )) From 40f939030f30f24835a14689dbb8adc36e0d3176 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 26 Apr 2024 16:54:07 +0200 Subject: [PATCH 06/21] Add new license test Signed-off-by: Philippe Ombredanne --- .../licensedcode/data/datadriven/lic4/ruby-license.missed.txt | 3 +++ .../data/datadriven/lic4/ruby-license.missed.txt.yml | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 tests/licensedcode/data/datadriven/lic4/ruby-license.missed.txt create mode 100644 tests/licensedcode/data/datadriven/lic4/ruby-license.missed.txt.yml diff --git a/tests/licensedcode/data/datadriven/lic4/ruby-license.missed.txt b/tests/licensedcode/data/datadriven/lic4/ruby-license.missed.txt new file mode 100644 index 00000000000..5c51ac62fc5 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/ruby-license.missed.txt @@ -0,0 +1,3 @@ +# This program is free software. +# You can distribute and/or modify this program under the Ruby License. + diff --git a/tests/licensedcode/data/datadriven/lic4/ruby-license.missed.txt.yml b/tests/licensedcode/data/datadriven/lic4/ruby-license.missed.txt.yml new file mode 100644 index 00000000000..85de223bb56 --- /dev/null +++ b/tests/licensedcode/data/datadriven/lic4/ruby-license.missed.txt.yml @@ -0,0 +1,2 @@ +license_expressions: + - ruby From 7fb0c97a4f27a8484666bd36f19d1f89ce95956e Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 26 Apr 2024 16:55:30 +0200 Subject: [PATCH 07/21] Discard empty attributes in rules generator data Signed-off-by: Philippe Ombredanne --- etc/scripts/licenses/buildrules.py | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/scripts/licenses/buildrules.py b/etc/scripts/licenses/buildrules.py index 731702b0e04..9970114fb9f 100644 --- a/etc/scripts/licenses/buildrules.py +++ b/etc/scripts/licenses/buildrules.py @@ -72,6 +72,7 @@ def __attrs_post_init__(self, *args, **kwargs): print(rdat) print("########################################################") raise + self.data = {k: v for k, v in self.data.items() if v is not None or (v is None and k == "license_expression")} def load_data(location="00-new-licenses.txt"): From d3474d275ab765e2ef0501f96971f1b931953d32 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Thu, 9 May 2024 11:54:42 +0200 Subject: [PATCH 08/21] Add new and improved license rules Signed-off-by: Philippe Ombredanne --- .../data/rules/agpl-3.0-plus_298.RULE | 796 ++++++++++++++++++ src/licensedcode/data/rules/agpl-3.0_408.RULE | 7 + .../agpl-3.0_or_commercial-license_8.RULE | 14 + .../data/rules/apache-2.0_1359.RULE | 212 +++++ .../data/rules/apache-2.0_1360.RULE | 206 +++++ .../data/rules/apache-2.0_1361.RULE | 10 + .../data/rules/apache-2.0_1362.RULE | 10 + .../data/rules/apache-2.0_1363.RULE | 13 + .../data/rules/apache-2.0_1364.RULE | 7 + .../apache-2.0_and_other-permissive_5.RULE | 15 + .../apache-2.0_and_other-permissive_6.RULE | 9 + .../apache-2.0_and_other-permissive_7.RULE | 7 + .../apache-2.0_and_proprietary-license_6.RULE | 27 + .../data/rules/apache-2.0_or_mit_52.RULE | 8 + .../data/rules/apache-2.0_or_mit_53.RULE | 20 + .../data/rules/apache-2.0_or_mit_54.RULE | 20 + src/licensedcode/data/rules/boost-1.0_88.RULE | 6 + .../data/rules/bsd-2-clause-views_79.RULE | 9 + src/licensedcode/data/rules/bsd-new_1384.RULE | 31 + src/licensedcode/data/rules/bsd-new_1385.RULE | 29 + src/licensedcode/data/rules/bsd-new_1386.RULE | 13 + src/licensedcode/data/rules/bsd-new_1387.RULE | 9 + src/licensedcode/data/rules/bsd-new_1388.RULE | 9 + src/licensedcode/data/rules/bsd-new_1389.RULE | 7 + src/licensedcode/data/rules/bsd-new_1390.RULE | 7 + src/licensedcode/data/rules/bsd-new_1391.RULE | 9 + src/licensedcode/data/rules/bsd-new_1392.RULE | 10 + src/licensedcode/data/rules/bsd-new_1393.RULE | 8 + src/licensedcode/data/rules/bsd-new_1394.RULE | 7 + src/licensedcode/data/rules/bsd-new_1395.RULE | 7 + src/licensedcode/data/rules/bsd-new_1396.RULE | 7 + src/licensedcode/data/rules/bsd-new_1397.RULE | 8 + src/licensedcode/data/rules/bsd-new_1398.RULE | 7 + src/licensedcode/data/rules/bsd-new_1399.RULE | 7 + src/licensedcode/data/rules/bsd-new_1400.RULE | 9 + src/licensedcode/data/rules/bsd-new_1401.RULE | 9 + src/licensedcode/data/rules/bsd-new_1402.RULE | 9 + src/licensedcode/data/rules/bsd-new_1403.RULE | 29 + src/licensedcode/data/rules/bsd-new_1404.RULE | 22 + src/licensedcode/data/rules/bsd-new_1405.RULE | 31 + src/licensedcode/data/rules/bsd-new_1406.RULE | 31 + src/licensedcode/data/rules/bsd-new_1407.RULE | 29 + src/licensedcode/data/rules/bsd-new_1408.RULE | 26 + src/licensedcode/data/rules/bsd-new_1409.RULE | 29 + src/licensedcode/data/rules/bsd-new_1410.RULE | 8 + src/licensedcode/data/rules/bsd-new_1411.RULE | 34 + src/licensedcode/data/rules/bsd-new_1412.RULE | 11 + src/licensedcode/data/rules/bsd-new_1413.RULE | 29 + src/licensedcode/data/rules/bsd-new_1414.RULE | 7 + src/licensedcode/data/rules/bsd-new_1415.RULE | 7 + src/licensedcode/data/rules/bsd-new_1416.RULE | 7 + src/licensedcode/data/rules/bsd-new_1417.RULE | 7 + src/licensedcode/data/rules/bsd-new_1418.RULE | 7 + src/licensedcode/data/rules/bsd-new_1419.RULE | 28 + src/licensedcode/data/rules/bsd-new_1420.RULE | 26 + src/licensedcode/data/rules/bsd-new_1421.RULE | 7 + src/licensedcode/data/rules/bsd-new_1422.RULE | 10 + ...w_and_google-patent-license-golang_10.RULE | 10 + ...w_and_google-patent-license-golang_11.RULE | 8 + ...ew_and_google-patent-license-golang_7.RULE | 12 + ...ew_and_google-patent-license-golang_8.RULE | 10 + ...ew_and_google-patent-license-golang_9.RULE | 10 + .../data/rules/bsd-new_or_gpl-2.0_43.RULE | 8 + .../data/rules/bsd-new_or_gpl-2.0_44.RULE | 8 + .../data/rules/bsd-new_or_gpl-2.0_45.RULE | 8 + .../data/rules/bsd-new_or_gpl-2.0_46.RULE | 7 + .../data/rules/bsd-new_or_gpl-2.0_47.RULE | 7 + .../data/rules/bsd-new_or_gpl-2.0_48.RULE | 22 + .../data/rules/bsd-new_or_gpl-2.0_49.RULE | 8 + .../data/rules/bsd-new_or_gpl-2.0_50.RULE | 8 + .../data/rules/bsd-new_or_gpl-2.0_51.RULE | 12 + .../data/rules/bsd-new_or_gpl-2.0_52.RULE | 11 + .../data/rules/bsd-new_or_gpl-2.0_53.RULE | 11 + .../data/rules/bsd-new_or_gpl-2.0_54.RULE | 9 + .../data/rules/bsd-new_or_gpl-2.0_55.RULE | 9 + .../data/rules/bsd-original_94.RULE | 29 + .../data/rules/bsd-original_95.RULE | 29 + .../data/rules/bsd-original_96.RULE | 13 + .../data/rules/bsd-original_97.RULE | 13 + .../data/rules/bsd-simplified_341.RULE | 9 + .../data/rules/bsd-source-code_29.RULE | 27 + .../data/rules/bsd-source-code_30.RULE | 24 + .../data/rules/bsd-source-code_31.RULE | 24 + src/licensedcode/data/rules/bsd-x11_13.RULE | 32 + src/licensedcode/data/rules/bsd-x11_14.RULE | 26 + src/licensedcode/data/rules/bsl-1.0_1.RULE | 14 + src/licensedcode/data/rules/c-uda-1.0_8.RULE | 8 + .../data/rules/cc-by-4.0_116.RULE | 12 + .../data/rules/cc-by-4.0_117.RULE | 10 + src/licensedcode/data/rules/cc0-1.0_213.RULE | 9 + src/licensedcode/data/rules/cc0-1.0_214.RULE | 9 + src/licensedcode/data/rules/cc0-1.0_215.RULE | 9 + src/licensedcode/data/rules/cc0-1.0_216.RULE | 10 + src/licensedcode/data/rules/cc0-1.0_217.RULE | 21 + src/licensedcode/data/rules/cc0-1.0_218.RULE | 17 + .../data/rules/commercial-license_99.RULE | 9 + .../commercial-license_and_agpl-3.0_1.RULE | 54 ++ src/licensedcode/data/rules/cpl-1.0_44.RULE | 8 + src/licensedcode/data/rules/ecl-1.0_12.RULE | 58 ++ src/licensedcode/data/rules/ecl-2.0_20.RULE | 12 + src/licensedcode/data/rules/ecl-2.0_24.RULE | 7 + src/licensedcode/data/rules/ecl-2.0_25.RULE | 7 + src/licensedcode/data/rules/ecl-2.0_26.RULE | 14 + src/licensedcode/data/rules/ecl-2.0_27.RULE | 11 + src/licensedcode/data/rules/ecl-2.0_28.RULE | 10 + src/licensedcode/data/rules/ecl-2.0_29.RULE | 10 + src/licensedcode/data/rules/ecl-2.0_30.RULE | 11 + src/licensedcode/data/rules/ecl-2.0_31.RULE | 10 + src/licensedcode/data/rules/ecl-2.0_32.RULE | 14 + src/licensedcode/data/rules/ecl-2.0_33.RULE | 11 + src/licensedcode/data/rules/ecl-2.0_34.RULE | 10 + src/licensedcode/data/rules/ecl-2.0_35.RULE | 11 + src/licensedcode/data/rules/ecl-2.0_36.RULE | 10 + src/licensedcode/data/rules/ecl-2.0_37.RULE | 7 + src/licensedcode/data/rules/ecl-2.0_38.RULE | 7 + .../data/rules/ecl-2.0_or_gpl-3.0_1.RULE | 21 + ...with_openjdk-assembly-exception-1.0_1.RULE | 26 + src/licensedcode/data/rules/eupl-1.2_26.RULE | 17 + src/licensedcode/data/rules/eupl-1.2_30.RULE | 18 + src/licensedcode/data/rules/eupl-1.2_31.RULE | 8 + src/licensedcode/data/rules/eupl-1.2_32.RULE | 7 + src/licensedcode/data/rules/eupl-1.2_33.RULE | 7 + src/licensedcode/data/rules/eupl-1.2_34.RULE | 11 + src/licensedcode/data/rules/eupl-1.2_35.RULE | 10 + src/licensedcode/data/rules/eupl-1.2_36.RULE | 7 + .../data/rules/false-positive_771.RULE | 6 + .../data/rules/false-positive_772.RULE | 6 + .../data/rules/false-positive_773.RULE | 8 + .../data/rules/false-positive_774.RULE | 7 + .../data/rules/false-positive_775.RULE | 6 + .../data/rules/false-positive_776.RULE | 6 + .../data/rules/false-positive_777.RULE | 6 + .../data/rules/false-positive_778.RULE | 6 + .../data/rules/false-positive_779.RULE | 6 + .../data/rules/false-positive_780.RULE | 8 + .../data/rules/false-positive_781.RULE | 7 + .../data/rules/false-positive_782.RULE | 6 + .../data/rules/false-positive_783.RULE | 6 + .../data/rules/false-positive_784.RULE | 13 + .../data/rules/false-positive_785.RULE | 12 + .../data/rules/false-positive_786.RULE | 11 + .../data/rules/false-positive_787.RULE | 10 + .../data/rules/false-positive_788.RULE | 11 + .../data/rules/false-positive_789.RULE | 9 + .../rules/fraunhofer-fdk-aac-codec_13.RULE | 105 +++ .../rules/fraunhofer-fdk-aac-codec_9.RULE | 106 +++ .../data/rules/generic-cla_34.RULE | 58 ++ .../data/rules/gpl-1.0-plus_587.RULE | 8 + .../data/rules/gpl-1.0-plus_588.RULE | 7 + .../data/rules/gpl-1.0-plus_589.RULE | 7 + .../gpl-1.0-plus_or_commercial-license_3.RULE | 10 + .../gpl-1.0-plus_or_commercial-license_4.RULE | 6 + .../gpl-1.0-plus_or_commercial-license_5.RULE | 13 + .../data/rules/gpl-2.0-plus_1131.RULE | 11 + .../data/rules/gpl-2.0-plus_1132.RULE | 11 + .../data/rules/gpl-2.0-plus_1133.RULE | 11 + .../data/rules/gpl-2.0-plus_1134.RULE | 8 + .../data/rules/gpl-2.0-plus_1135.RULE | 11 + .../data/rules/gpl-2.0-plus_1136.RULE | 10 + .../data/rules/gpl-2.0-plus_1137.RULE | 19 + .../data/rules/gpl-2.0-plus_1138.RULE | 7 + .../data/rules/gpl-2.0-plus_1139.RULE | 7 + .../data/rules/gpl-2.0-plus_1140.RULE | 7 + .../data/rules/gpl-2.0-plus_1141.RULE | 14 + .../data/rules/gpl-2.0-plus_1142.RULE | 10 + src/licensedcode/data/rules/gpl-2.0_1436.RULE | 11 + src/licensedcode/data/rules/gpl-2.0_1437.RULE | 11 + src/licensedcode/data/rules/gpl-2.0_1438.RULE | 8 + src/licensedcode/data/rules/gpl-2.0_1439.RULE | 11 + src/licensedcode/data/rules/gpl-2.0_1440.RULE | 19 + src/licensedcode/data/rules/gpl-2.0_1441.RULE | 17 + src/licensedcode/data/rules/gpl-2.0_1442.RULE | 23 + src/licensedcode/data/rules/gpl-2.0_1443.RULE | 22 + src/licensedcode/data/rules/gpl-2.0_1444.RULE | 19 + src/licensedcode/data/rules/gpl-2.0_1445.RULE | 11 + src/licensedcode/data/rules/gpl-2.0_1446.RULE | 9 + src/licensedcode/data/rules/gpl-2.0_1447.RULE | 10 + src/licensedcode/data/rules/gpl-2.0_1448.RULE | 17 + .../data/rules/gpl-2.0_or_cddl-1.1_1.RULE | 42 + .../data/rules/gpl-2.0_or_cddl-1.1_2.RULE | 13 + .../data/rules/gpl-2.0_or_cddl-1.1_3.RULE | 11 + .../data/rules/gpl-2.0_or_cddl-1.1_4.RULE | 10 + .../data/rules/gpl-2.0_or_cddl-1.1_5.RULE | 7 + .../gpl-2.0_or_commercial-license_10.RULE | 9 + .../data/rules/gpl-3.0-plus_592.RULE | 11 + .../data/rules/gpl-3.0-plus_593.RULE | 15 + .../data/rules/gpl-3.0-plus_594.RULE | 11 + .../data/rules/gpl-3.0-plus_595.RULE | 11 + .../data/rules/gpl-3.0-plus_596.RULE | 8 + .../data/rules/gpl-3.0-plus_597.RULE | 11 + .../data/rules/gpl-3.0-plus_598.RULE | 8 + .../data/rules/gpl-3.0-plus_599.RULE | 7 + .../data/rules/gpl-3.0-plus_600.RULE | 9 + .../data/rules/gpl-3.0-plus_601.RULE | 7 + .../data/rules/gpl-3.0-plus_602.RULE | 9 + .../data/rules/gpl-3.0-plus_603.RULE | 9 + .../data/rules/gpl-3.0-plus_604.RULE | 19 + .../data/rules/gpl-3.0-plus_605.RULE | 19 + ...l-3.0-plus_with_font-exception-gpl_39.RULE | 7 + src/licensedcode/data/rules/gpl-3.0_579.RULE | 11 + src/licensedcode/data/rules/gpl-3.0_580.RULE | 11 + src/licensedcode/data/rules/gpl-3.0_581.RULE | 8 + src/licensedcode/data/rules/gpl-3.0_582.RULE | 11 + src/licensedcode/data/rules/gpl-3.0_583.RULE | 19 + src/licensedcode/data/rules/gpl-3.0_584.RULE | 26 + src/licensedcode/data/rules/gpl-3.0_585.RULE | 17 + src/licensedcode/data/rules/gpl-3.0_586.RULE | 200 +++++ src/licensedcode/data/rules/gpl-3.0_587.RULE | 9 + src/licensedcode/data/rules/gpl-3.0_588.RULE | 7 + src/licensedcode/data/rules/gpl-3.0_589.RULE | 7 + .../data/rules/gpl-3.0_and_lgpl-2.0_1.RULE | 6 + src/licensedcode/data/rules/isc_113.RULE | 17 + .../data/rules/lgpl-2.0-plus_581.RULE | 10 + .../data/rules/lgpl-2.0-plus_582.RULE | 7 + .../data/rules/lgpl-2.1-plus_500.RULE | 19 + .../data/rules/lgpl-2.1-plus_501.RULE | 12 + .../data/rules/lgpl-2.1-plus_502.RULE | 19 + .../data/rules/lgpl-2.1-plus_503.RULE | 19 + .../data/rules/lgpl-2.1-plus_504.RULE | 19 + .../data/rules/lgpl-2.1-plus_505.RULE | 19 + .../data/rules/lgpl-2.1-plus_506.RULE | 19 + .../data/rules/lgpl-2.1-plus_507.RULE | 19 + .../data/rules/lgpl-2.1-plus_508.RULE | 10 + src/licensedcode/data/rules/lgpl-2.1_465.RULE | 344 ++++++++ src/licensedcode/data/rules/lgpl-2.1_466.RULE | 7 + src/licensedcode/data/rules/lgpl-2.1_467.RULE | 17 + .../data/rules/lgpl-2.1_or_epl-1.0_4.RULE | 14 + .../data/rules/lgpl-2.1_or_epl-1.0_5.RULE | 6 + .../data/rules/lgpl-2.1_or_epl-1.0_6.RULE | 25 + .../data/rules/lgpl-3.0-plus_294.RULE | 19 + .../data/rules/lgpl-3.0-plus_295.RULE | 19 + .../data/rules/lgpl-3.0-plus_296.RULE | 19 + .../data/rules/lgpl-3.0-plus_297.RULE | 19 + .../data/rules/lgpl-3.0-plus_298.RULE | 21 + .../rules/lgpl-3.0-plus_or_apache-2.0_10.RULE | 15 + .../rules/lgpl-3.0-plus_or_apache-2.0_11.RULE | 14 + .../rules/lgpl-3.0-plus_or_apache-2.0_9.RULE | 15 + .../data/rules/lgpl-3.0_and_gpl-3.0_4.RULE | 23 + ...ense-clue_unknown-license-reference_4.RULE | 7 + .../data/rules/license-intro_82.RULE | 8 + .../data/rules/license-intro_83.RULE | 8 + .../data/rules/license-intro_84.RULE | 7 + .../data/rules/license-intro_85.RULE | 7 + .../data/rules/license-intro_86.RULE | 7 + .../data/rules/license-intro_87.RULE | 10 + .../data/rules/mit-addition_2.RULE | 7 + src/licensedcode/data/rules/mit_1341.RULE | 9 + src/licensedcode/data/rules/mit_1342.RULE | 9 + src/licensedcode/data/rules/mit_1343.RULE | 8 + src/licensedcode/data/rules/mit_1344.RULE | 8 + src/licensedcode/data/rules/mit_1345.RULE | 9 + src/licensedcode/data/rules/mit_1346.RULE | 7 + src/licensedcode/data/rules/mit_1347.RULE | 9 + src/licensedcode/data/rules/mit_1348.RULE | 9 + src/licensedcode/data/rules/mit_1349.RULE | 9 + src/licensedcode/data/rules/mit_1350.RULE | 11 + .../data/rules/mit_or_apache-2.0_30.RULE | 7 + .../data/rules/mit_or_apache-2.0_31.RULE | 7 + .../data/rules/mit_or_apache-2.0_32.RULE | 7 + .../data/rules/mit_or_unlicense_11.RULE | 9 + .../data/rules/openssl-ssleay_70.RULE | 7 + .../data/rules/other-permissive_454.RULE | 8 + .../data/rules/other-permissive_455.RULE | 9 + .../data/rules/other-permissive_456.RULE | 7 + .../data/rules/other-permissive_457.RULE | 7 + .../data/rules/proprietary-license_1019.RULE | 8 + .../data/rules/proprietary-license_1020.RULE | 10 + .../data/rules/proprietary-license_1021.RULE | 7 + .../data/rules/proprietary-license_1022.RULE | 7 + .../data/rules/proprietary-license_1023.RULE | 51 ++ .../data/rules/proprietary-license_1024.RULE | 54 ++ .../data/rules/proprietary-license_1026.RULE | 9 + .../data/rules/proprietary-license_1029.RULE | 9 + .../data/rules/proprietary-license_1030.RULE | 44 + .../data/rules/proprietary-license_1031.RULE | 43 + .../data/rules/proprietary-license_1032.RULE | 15 + .../data/rules/proprietary-license_1033.RULE | 7 + .../data/rules/proprietary-license_1040.RULE | 7 + .../data/rules/proprietary-license_1041.RULE | 7 + .../data/rules/proprietary-license_1043.RULE | 7 + .../data/rules/proprietary-license_1047.RULE | 8 + .../data/rules/proprietary-license_1048.RULE | 7 + .../data/rules/proprietary-license_1049.RULE | 7 + .../data/rules/proprietary-license_1050.RULE | 7 + .../data/rules/proprietary-license_1051.RULE | 7 + .../data/rules/proprietary-license_1052.RULE | 13 + .../data/rules/proprietary-license_1053.RULE | 13 + .../data/rules/proprietary-license_1054.RULE | 25 + .../data/rules/proprietary-license_1055.RULE | 13 + .../data/rules/public-domain_527.RULE | 7 + .../data/rules/public-domain_528.RULE | 7 + .../data/rules/public-domain_529.RULE | 7 + .../data/rules/public-domain_530.RULE | 7 + .../data/rules/public-domain_531.RULE | 7 + .../data/rules/public-domain_532.RULE | 8 + .../data/rules/public-domain_533.RULE | 7 + .../data/rules/public-domain_534.RULE | 8 + .../data/rules/public-domain_535.RULE | 7 + .../data/rules/public-domain_536.RULE | 7 + ..._with_qt-company-exception-lgpl-2.1_1.RULE | 35 + src/licensedcode/data/rules/ruby_36.RULE | 8 + src/licensedcode/data/rules/ruby_37.RULE | 8 + src/licensedcode/data/rules/ruby_38.RULE | 10 + src/licensedcode/data/rules/ruby_39.RULE | 7 + .../rules/unknown-license-reference_414.RULE | 9 + .../rules/unknown-license-reference_415.RULE | 8 + src/licensedcode/data/rules/unlicense_57.RULE | 7 + src/licensedcode/data/rules/unlicense_58.RULE | 10 + src/licensedcode/data/rules/upl-1.0_27.RULE | 8 + .../data/rules/w3c-software-19980720_25.RULE | 15 + .../data/rules/w3c-software-19980720_26.RULE | 11 + .../data/rules/w3c-software-19980720_27.RULE | 8 + .../data/rules/warranty-disclaimer_100.RULE | 7 + .../data/rules/warranty-disclaimer_101.RULE | 6 + .../data/rules/warranty-disclaimer_99.RULE | 6 + 315 files changed, 5901 insertions(+) create mode 100644 src/licensedcode/data/rules/agpl-3.0-plus_298.RULE create mode 100644 src/licensedcode/data/rules/agpl-3.0_408.RULE create mode 100644 src/licensedcode/data/rules/agpl-3.0_or_commercial-license_8.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_1359.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_1360.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_1361.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_1362.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_1363.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_1364.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_and_other-permissive_5.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_and_other-permissive_6.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_and_other-permissive_7.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_and_proprietary-license_6.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_or_mit_52.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_or_mit_53.RULE create mode 100644 src/licensedcode/data/rules/apache-2.0_or_mit_54.RULE create mode 100644 src/licensedcode/data/rules/boost-1.0_88.RULE create mode 100644 src/licensedcode/data/rules/bsd-2-clause-views_79.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1384.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1385.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1386.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1387.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1388.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1389.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1390.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1391.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1392.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1393.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1394.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1395.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1396.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1397.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1398.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1399.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1400.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1401.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1402.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1403.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1404.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1405.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1406.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1407.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1408.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1409.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1410.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1411.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1412.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1413.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1414.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1415.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1416.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1417.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1418.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1419.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1420.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1421.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_1422.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_10.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_11.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_7.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_8.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_9.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_43.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_44.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_45.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_46.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_47.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_48.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_49.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_50.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_51.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_52.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_53.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_54.RULE create mode 100644 src/licensedcode/data/rules/bsd-new_or_gpl-2.0_55.RULE create mode 100644 src/licensedcode/data/rules/bsd-original_94.RULE create mode 100644 src/licensedcode/data/rules/bsd-original_95.RULE create mode 100644 src/licensedcode/data/rules/bsd-original_96.RULE create mode 100644 src/licensedcode/data/rules/bsd-original_97.RULE create mode 100644 src/licensedcode/data/rules/bsd-simplified_341.RULE create mode 100644 src/licensedcode/data/rules/bsd-source-code_29.RULE create mode 100644 src/licensedcode/data/rules/bsd-source-code_30.RULE create mode 100644 src/licensedcode/data/rules/bsd-source-code_31.RULE create mode 100644 src/licensedcode/data/rules/bsd-x11_13.RULE create mode 100644 src/licensedcode/data/rules/bsd-x11_14.RULE create mode 100644 src/licensedcode/data/rules/bsl-1.0_1.RULE create mode 100644 src/licensedcode/data/rules/c-uda-1.0_8.RULE create mode 100644 src/licensedcode/data/rules/cc-by-4.0_116.RULE create mode 100644 src/licensedcode/data/rules/cc-by-4.0_117.RULE create mode 100644 src/licensedcode/data/rules/cc0-1.0_213.RULE create mode 100644 src/licensedcode/data/rules/cc0-1.0_214.RULE create mode 100644 src/licensedcode/data/rules/cc0-1.0_215.RULE create mode 100644 src/licensedcode/data/rules/cc0-1.0_216.RULE create mode 100644 src/licensedcode/data/rules/cc0-1.0_217.RULE create mode 100644 src/licensedcode/data/rules/cc0-1.0_218.RULE create mode 100644 src/licensedcode/data/rules/commercial-license_99.RULE create mode 100644 src/licensedcode/data/rules/commercial-license_and_agpl-3.0_1.RULE create mode 100644 src/licensedcode/data/rules/cpl-1.0_44.RULE create mode 100644 src/licensedcode/data/rules/ecl-1.0_12.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_20.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_24.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_25.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_26.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_27.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_28.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_29.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_30.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_31.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_32.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_33.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_34.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_35.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_36.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_37.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_38.RULE create mode 100644 src/licensedcode/data/rules/ecl-2.0_or_gpl-3.0_1.RULE create mode 100644 src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_or_gpl-2.0_with_openjdk-assembly-exception-1.0_1.RULE create mode 100644 src/licensedcode/data/rules/eupl-1.2_26.RULE create mode 100644 src/licensedcode/data/rules/eupl-1.2_30.RULE create mode 100644 src/licensedcode/data/rules/eupl-1.2_31.RULE create mode 100644 src/licensedcode/data/rules/eupl-1.2_32.RULE create mode 100644 src/licensedcode/data/rules/eupl-1.2_33.RULE create mode 100644 src/licensedcode/data/rules/eupl-1.2_34.RULE create mode 100644 src/licensedcode/data/rules/eupl-1.2_35.RULE create mode 100644 src/licensedcode/data/rules/eupl-1.2_36.RULE create mode 100644 src/licensedcode/data/rules/false-positive_771.RULE create mode 100644 src/licensedcode/data/rules/false-positive_772.RULE create mode 100644 src/licensedcode/data/rules/false-positive_773.RULE create mode 100644 src/licensedcode/data/rules/false-positive_774.RULE create mode 100644 src/licensedcode/data/rules/false-positive_775.RULE create mode 100644 src/licensedcode/data/rules/false-positive_776.RULE create mode 100644 src/licensedcode/data/rules/false-positive_777.RULE create mode 100644 src/licensedcode/data/rules/false-positive_778.RULE create mode 100644 src/licensedcode/data/rules/false-positive_779.RULE create mode 100644 src/licensedcode/data/rules/false-positive_780.RULE create mode 100644 src/licensedcode/data/rules/false-positive_781.RULE create mode 100644 src/licensedcode/data/rules/false-positive_782.RULE create mode 100644 src/licensedcode/data/rules/false-positive_783.RULE create mode 100644 src/licensedcode/data/rules/false-positive_784.RULE create mode 100644 src/licensedcode/data/rules/false-positive_785.RULE create mode 100644 src/licensedcode/data/rules/false-positive_786.RULE create mode 100644 src/licensedcode/data/rules/false-positive_787.RULE create mode 100644 src/licensedcode/data/rules/false-positive_788.RULE create mode 100644 src/licensedcode/data/rules/false-positive_789.RULE create mode 100644 src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_13.RULE create mode 100644 src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.RULE create mode 100644 src/licensedcode/data/rules/generic-cla_34.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_587.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_588.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_589.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_3.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_4.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_5.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1131.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1132.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1133.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1134.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1135.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1136.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1137.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1138.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1139.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1140.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1141.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0-plus_1142.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1436.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1437.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1438.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1439.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1440.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1441.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1442.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1443.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1444.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1445.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1446.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1447.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1448.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_1.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_2.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_3.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_4.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_5.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_or_commercial-license_10.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_592.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_593.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_594.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_595.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_596.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_597.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_598.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_599.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_600.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_601.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_602.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_603.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_604.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_605.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_39.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_579.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_580.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_581.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_582.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_583.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_584.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_585.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_586.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_587.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_588.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_589.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.0_1.RULE create mode 100644 src/licensedcode/data/rules/isc_113.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.0-plus_581.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.0-plus_582.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1-plus_500.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1-plus_501.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1-plus_502.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1-plus_503.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1-plus_504.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1-plus_505.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1-plus_506.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1-plus_507.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1-plus_508.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1_465.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1_466.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1_467.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_4.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_5.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_6.RULE create mode 100644 src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE create mode 100644 src/licensedcode/data/rules/lgpl-3.0-plus_295.RULE create mode 100644 src/licensedcode/data/rules/lgpl-3.0-plus_296.RULE create mode 100644 src/licensedcode/data/rules/lgpl-3.0-plus_297.RULE create mode 100644 src/licensedcode/data/rules/lgpl-3.0-plus_298.RULE create mode 100644 src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_10.RULE create mode 100644 src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_11.RULE create mode 100644 src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_9.RULE create mode 100644 src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_4.RULE create mode 100644 src/licensedcode/data/rules/license-clue_unknown-license-reference_4.RULE create mode 100644 src/licensedcode/data/rules/license-intro_82.RULE create mode 100644 src/licensedcode/data/rules/license-intro_83.RULE create mode 100644 src/licensedcode/data/rules/license-intro_84.RULE create mode 100644 src/licensedcode/data/rules/license-intro_85.RULE create mode 100644 src/licensedcode/data/rules/license-intro_86.RULE create mode 100644 src/licensedcode/data/rules/license-intro_87.RULE create mode 100644 src/licensedcode/data/rules/mit-addition_2.RULE create mode 100644 src/licensedcode/data/rules/mit_1341.RULE create mode 100644 src/licensedcode/data/rules/mit_1342.RULE create mode 100644 src/licensedcode/data/rules/mit_1343.RULE create mode 100644 src/licensedcode/data/rules/mit_1344.RULE create mode 100644 src/licensedcode/data/rules/mit_1345.RULE create mode 100644 src/licensedcode/data/rules/mit_1346.RULE create mode 100644 src/licensedcode/data/rules/mit_1347.RULE create mode 100644 src/licensedcode/data/rules/mit_1348.RULE create mode 100644 src/licensedcode/data/rules/mit_1349.RULE create mode 100644 src/licensedcode/data/rules/mit_1350.RULE create mode 100644 src/licensedcode/data/rules/mit_or_apache-2.0_30.RULE create mode 100644 src/licensedcode/data/rules/mit_or_apache-2.0_31.RULE create mode 100644 src/licensedcode/data/rules/mit_or_apache-2.0_32.RULE create mode 100644 src/licensedcode/data/rules/mit_or_unlicense_11.RULE create mode 100644 src/licensedcode/data/rules/openssl-ssleay_70.RULE create mode 100644 src/licensedcode/data/rules/other-permissive_454.RULE create mode 100644 src/licensedcode/data/rules/other-permissive_455.RULE create mode 100644 src/licensedcode/data/rules/other-permissive_456.RULE create mode 100644 src/licensedcode/data/rules/other-permissive_457.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1019.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1020.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1021.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1022.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1023.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1024.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1026.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1029.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1030.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1031.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1032.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1033.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1040.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1041.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1043.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1047.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1048.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1049.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1050.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1051.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1052.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1053.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1054.RULE create mode 100644 src/licensedcode/data/rules/proprietary-license_1055.RULE create mode 100644 src/licensedcode/data/rules/public-domain_527.RULE create mode 100644 src/licensedcode/data/rules/public-domain_528.RULE create mode 100644 src/licensedcode/data/rules/public-domain_529.RULE create mode 100644 src/licensedcode/data/rules/public-domain_530.RULE create mode 100644 src/licensedcode/data/rules/public-domain_531.RULE create mode 100644 src/licensedcode/data/rules/public-domain_532.RULE create mode 100644 src/licensedcode/data/rules/public-domain_533.RULE create mode 100644 src/licensedcode/data/rules/public-domain_534.RULE create mode 100644 src/licensedcode/data/rules/public-domain_535.RULE create mode 100644 src/licensedcode/data/rules/public-domain_536.RULE create mode 100644 src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_or_lgpl-3.0_with_qt-company-exception-lgpl-2.1_1.RULE create mode 100644 src/licensedcode/data/rules/ruby_36.RULE create mode 100644 src/licensedcode/data/rules/ruby_37.RULE create mode 100644 src/licensedcode/data/rules/ruby_38.RULE create mode 100644 src/licensedcode/data/rules/ruby_39.RULE create mode 100644 src/licensedcode/data/rules/unknown-license-reference_414.RULE create mode 100644 src/licensedcode/data/rules/unknown-license-reference_415.RULE create mode 100644 src/licensedcode/data/rules/unlicense_57.RULE create mode 100644 src/licensedcode/data/rules/unlicense_58.RULE create mode 100644 src/licensedcode/data/rules/upl-1.0_27.RULE create mode 100644 src/licensedcode/data/rules/w3c-software-19980720_25.RULE create mode 100644 src/licensedcode/data/rules/w3c-software-19980720_26.RULE create mode 100644 src/licensedcode/data/rules/w3c-software-19980720_27.RULE create mode 100644 src/licensedcode/data/rules/warranty-disclaimer_100.RULE create mode 100644 src/licensedcode/data/rules/warranty-disclaimer_101.RULE create mode 100644 src/licensedcode/data/rules/warranty-disclaimer_99.RULE diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_298.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_298.RULE new file mode 100644 index 00000000000..364d1d399b1 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0-plus_298.RULE @@ -0,0 +1,796 @@ +--- +license_expression: agpl-3.0-plus +is_license_text: yes +minimum_coverage: 90 +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/ +--- + +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, 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 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 . + + + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 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 Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are 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. + + + 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. + + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + + 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License. + + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + + 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 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 work with which it is combined will remain governed by version +3 of the GNU General Public License. + + + 14. Revised Versions of this License. + + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero 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 Affero 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 Affero 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 Affero 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 Affero 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 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 . + + +Also add information on how to contact you by electronic and paper mail. + + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + + 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 AGPL, see +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_408.RULE b/src/licensedcode/data/rules/agpl-3.0_408.RULE new file mode 100644 index 00000000000..d8c22771113 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_408.RULE @@ -0,0 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +available under the "AGPLv3" license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_8.RULE b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_8.RULE new file mode 100644 index 00000000000..4be93b37a70 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_8.RULE @@ -0,0 +1,14 @@ +--- +license_expression: agpl-3.0 OR commercial-license +is_license_notice: yes +referenced_filenames: + - LICENSE.AGPL3 +ignorable_urls: + - http://www.gnu.org/licenses +--- + +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. + +Commercial License Usage Licensees holding valid commercial project licenses may use this file in accordance with the commercial license agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Inc. For licensing terms and conditions and further information contact us at . + +GNU Affero General Public License Usage Alternatively, this file may be used under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation and appearing in the file LICENSE.AGPL3 included in the packaging of this file, or alternatively found in http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1359.RULE b/src/licensedcode/data/rules/apache-2.0_1359.RULE new file mode 100644 index 00000000000..35b93f6ad8e --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1359.RULE @@ -0,0 +1,212 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 99 +notes: Damaged Apache license https://github.com/bopopescu/kubepack/blob/00a7dd88be22004e28a4b9df1b1320a6d73cd462/LICENSE#L9 + with some possible mistake replacements leading to rebundleion non-sense +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, rebundleion, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, rebundleion, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + rebundleion, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or bundle names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) 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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + 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_1360.RULE b/src/licensedcode/data/rules/apache-2.0_1360.RULE new file mode 100644 index 00000000000..454a7068889 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1360.RULE @@ -0,0 +1,206 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 99 +notes: Damaged Apache license text https://github.com/arsham/retry/blob/39b40b5e420c3eda11b3d355ca269c9bfa5ee710/LICENSE#L56 +ignorable_copyrights: + - Copyright 2020 Arsham Shirvani +ignorable_holders: + - Arsham Shirvani +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +ignorable_emails: + - arshamshirvani@gmail.com +--- + +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written token sent + to the Licensor or its representatives, including but not limited to + token on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding token that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) 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. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright 2020 Arsham Shirvani + + 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_1361.RULE b/src/licensedcode/data/rules/apache-2.0_1361.RULE new file mode 100644 index 00000000000..226af0b237a --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1361.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.openssl.org/ +--- + +* Parts of this code are based on the OpenSSL implementation of AES: + * http://www.openssl.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1362.RULE b/src/licensedcode/data/rules/apache-2.0_1362.RULE new file mode 100644 index 00000000000..8eaeb4a09f3 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1362.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + +{{License: Apache-2 + +License: Apache-2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1363.RULE b/src/licensedcode/data/rules/apache-2.0_1363.RULE new file mode 100644 index 00000000000..57b2414d1ae --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1363.RULE @@ -0,0 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +--- + +# 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: [package root]/LICENSE.txt +# 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_1364.RULE b/src/licensedcode/data/rules/apache-2.0_1364.RULE new file mode 100644 index 00000000000..19593e77f31 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1364.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +released under the Apache License, version 2.0 (Apache-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_5.RULE b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_5.RULE new file mode 100644 index 00000000000..86c0d4a3b27 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_5.RULE @@ -0,0 +1,15 @@ +--- +license_expression: apache-2.0 AND other-permissive +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://github.com/cython/cython/blob/master/LICENSE.txt +--- + +License + +The original Pyrex program was licensed "free of restrictions" (see below). +Cython itself is licensed under the permissive **Apache License**. + +See `LICENSE.txt `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_6.RULE b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_6.RULE new file mode 100644 index 00000000000..60ef9306ee0 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_6.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 AND other-permissive +is_license_notice: yes +--- + +License: + +The original Pyrex program was licensed "free of restrictions" (see below). +Cython itself is licensed under the permissive **Apache License**. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_7.RULE b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_7.RULE new file mode 100644 index 00000000000..3b513ad3582 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_7.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-2.0 AND other-permissive +is_license_notice: yes +--- + +The original Pyrex program was licensed "free of restrictions" (see below). +Cython itself is licensed under the permissive **Apache License**. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_6.RULE b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_6.RULE new file mode 100644 index 00000000000..6c39ca95c5d --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_6.RULE @@ -0,0 +1,27 @@ +--- +license_expression: apache-2.0 AND proprietary-license +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://github.com/rcbops/opencenter +--- + +OpenCenter is licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. This +version of OpenCenter includes Rackspace trademarks and logos, and in +accordance with Section 6 of the License, the provision of commercial +support services in conjunction with a version of OpenCenter which includes +Rackspace trademarks and logos is prohibited. OpenCenter source code and +details are available at: # https://github.com/rcbops/opencenter or upon +written request. + +You may obtain a copy of the License at +http://www.apache.org/licenses/LICENSE-2.0 and a copy, including this +notice, is available in the LICENSE file accompanying this software. + +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_or_mit_52.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_52.RULE new file mode 100644 index 00000000000..5d3913266d9 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_52.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +--- + +This component is distributed under the under the {{Apache 2.0 +and MIT}} licenses. The user can choose the license under which they +will be using the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_53.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_53.RULE new file mode 100644 index 00000000000..b471ac4894d --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_53.RULE @@ -0,0 +1,20 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +@license +.js is dual licensed under both + + 1. The Apache 2.0 License + http://www.apache.org/licenses/LICENSE-2.0 + + and + + 2. The MIT License + http://opensource.org/licenses/MIT + +.js may be distributed under either license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_54.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_54.RULE new file mode 100644 index 00000000000..d7c099a086c --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_54.RULE @@ -0,0 +1,20 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +@license + is dual licensed under both + + 1. The Apache 2.0 License + http://www.apache.org/licenses/LICENSE-2.0 + + and + + 2. The MIT License + http://opensource.org/licenses/MIT + + may be distributed under either license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_88.RULE b/src/licensedcode/data/rules/boost-1.0_88.RULE new file mode 100644 index 00000000000..529c34c51b0 --- /dev/null +++ b/src/licensedcode/data/rules/boost-1.0_88.RULE @@ -0,0 +1,6 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +--- + +Boost is licensed under the {{"Boost license"}}, which is a short non-copyleft license {{functionally equivalent to the MIT license.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_79.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_79.RULE new file mode 100644 index 00000000000..61a3759ac4a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-2-clause-views_79.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/garycourt/uri-js +--- + +License: {{ https://github.com/garycourt/uri-js }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1384.RULE b/src/licensedcode/data/rules/bsd-new_1384.RULE new file mode 100644 index 00000000000..f6467e6d40c --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1384.RULE @@ -0,0 +1,31 @@ +--- +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 name of nor the names of other + 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 AND CONTRIBUTORS +"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 +OWNER 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_1385.RULE b/src/licensedcode/data/rules/bsd-new_1385.RULE new file mode 100644 index 00000000000..caf7d153161 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1385.RULE @@ -0,0 +1,29 @@ +--- +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 name of ucd nor the names of 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 AND CONTRIBUTORS "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 HOLDER 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_1386.RULE b/src/licensedcode/data/rules/bsd-new_1386.RULE new file mode 100644 index 00000000000..04220f5e627 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1386.RULE @@ -0,0 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - https://golang.org/LICENSE +--- + +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// See the {{go license}} at https://golang.org/LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1387.RULE b/src/licensedcode/data/rules/bsd-new_1387.RULE new file mode 100644 index 00000000000..4708fddd18d --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1387.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - https://golang.org/LICENSE +--- + +This project bundles the following dependencies under the {{Go License}} (https://golang.org/LICENSE). +See bundled license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1388.RULE b/src/licensedcode/data/rules/bsd-new_1388.RULE new file mode 100644 index 00000000000..c49dee4562c --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1388.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + +// Use of this source code is governed by a BSD-style +// license that can be found in {{Go LICENSE}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1389.RULE b/src/licensedcode/data/rules/bsd-new_1389.RULE new file mode 100644 index 00000000000..61f93203223 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1389.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + +The {{Go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1390.RULE b/src/licensedcode/data/rules/bsd-new_1390.RULE new file mode 100644 index 00000000000..0893c2fb4a8 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1390.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +test suite are under the {{Go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1391.RULE b/src/licensedcode/data/rules/bsd-new_1391.RULE new file mode 100644 index 00000000000..e81db6a782b --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1391.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://golang.org/LICENSE +--- + +golang (Google {{Go License}}): https://golang.org/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1392.RULE b/src/licensedcode/data/rules/bsd-new_1392.RULE new file mode 100644 index 00000000000..dfe1ed3a5c9 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1392.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://golang.org/LICENSE +--- + +The {{Go license}} can be found here: +// https://golang.org/LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1393.RULE b/src/licensedcode/data/rules/bsd-new_1393.RULE new file mode 100644 index 00000000000..6be86719604 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1393.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +// This file contains code taken from the "go" source tree, governed +// by the {{go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1394.RULE b/src/licensedcode/data/rules/bsd-new_1394.RULE new file mode 100644 index 00000000000..4dbfa71e8ea --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1394.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +Everything in this file is subject to the {{Go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1395.RULE b/src/licensedcode/data/rules/bsd-new_1395.RULE new file mode 100644 index 00000000000..c4de8efbce2 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1395.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +this file is subject to the {{Go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1396.RULE b/src/licensedcode/data/rules/bsd-new_1396.RULE new file mode 100644 index 00000000000..07e258848b9 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1396.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +subject to the {{Go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1397.RULE b/src/licensedcode/data/rules/bsd-new_1397.RULE new file mode 100644 index 00000000000..b15d4322fb1 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1397.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +License +This driver is released under the {{go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1398.RULE b/src/licensedcode/data/rules/bsd-new_1398.RULE new file mode 100644 index 00000000000..0141b64e9d6 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1398.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +released under the {{go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1399.RULE b/src/licensedcode/data/rules/bsd-new_1399.RULE new file mode 100644 index 00000000000..35665fc6233 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1399.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +under the {{go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1400.RULE b/src/licensedcode/data/rules/bsd-new_1400.RULE new file mode 100644 index 00000000000..b0a4017b24c --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1400.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://golang.org/LICENSE +--- + +Google {{Go License}}: https://golang.org/LICENSE") \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1401.RULE b/src/licensedcode/data/rules/bsd-new_1401.RULE new file mode 100644 index 00000000000..48c92dcef2a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1401.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +relevance: 99 +notes: https://github.com/reneoelke/Php53to54/blob/568c351c7e6f66d46267ca90ddd4cc153a1b93c3/LICENCE#L4 +--- + +{{BSD Licence Agreement}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1402.RULE b/src/licensedcode/data/rules/bsd-new_1402.RULE new file mode 100644 index 00000000000..91bbe36667f --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1402.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +relevance: 99 +notes: https://github.com/reneoelke/Php53to54/blob/568c351c7e6f66d46267ca90ddd4cc153a1b93c3/LICENCE#L4 +--- + +{{BSD License Agreement}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1403.RULE b/src/licensedcode/data/rules/bsd-new_1403.RULE new file mode 100644 index 00000000000..752172b6f09 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1403.RULE @@ -0,0 +1,29 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: https://github.com/reneoelke/Php53to54/blob/568c351c7e6f66d46267ca90ddd4cc153a1b93c3/LICENCE#L4 +ignorable_urls: + - http://matrix.squiz.net/developer/tools/php_cs/licence +--- + +{{BSD Licence Agreement}} + +This software is available to you under the BSD license, +available in the LICENSE file accompanying this software. +You may obtain a copy of the License at + +http://matrix.squiz.net/developer/tools/php_cs/licence + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER 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_1404.RULE b/src/licensedcode/data/rules/bsd-new_1404.RULE new file mode 100644 index 00000000000..5052b7e3e4d --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1404.RULE @@ -0,0 +1,22 @@ +--- +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 name of OWASP nor the names of 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 AND CONTRIBUTORS + "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 OWNER 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_1405.RULE b/src/licensedcode/data/rules/bsd-new_1405.RULE new file mode 100644 index 00000000000..ed6a3f1f519 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1405.RULE @@ -0,0 +1,31 @@ +--- +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 name of the software nor the names of 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 AND CONTRIBUTORS "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 OWNER +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_1406.RULE b/src/licensedcode/data/rules/bsd-new_1406.RULE new file mode 100644 index 00000000000..c93beb827ac --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1406.RULE @@ -0,0 +1,31 @@ +--- +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. + +3- Neither the name of the software nor the names of 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 AND CONTRIBUTORS "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 OWNER +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_1407.RULE b/src/licensedcode/data/rules/bsd-new_1407.RULE new file mode 100644 index 00000000000..7ca57130262 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1407.RULE @@ -0,0 +1,29 @@ +--- +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 name of the software nor the names of 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 AND CONTRIBUTORS "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 HOLDER 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_1408.RULE b/src/licensedcode/data/rules/bsd-new_1408.RULE new file mode 100644 index 00000000000..a0b2dbbc99f --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1408.RULE @@ -0,0 +1,26 @@ +--- +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 my name nor the names of any 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 AND CONTRIBUTORS "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 I, THE AUTHOR OF THIS SOFTWARE, 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_1409.RULE b/src/licensedcode/data/rules/bsd-new_1409.RULE new file mode 100644 index 00000000000..1b62bb153e0 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1409.RULE @@ -0,0 +1,29 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + +Redistribution and use of this software 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 my name nor the names of 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 AND CONTRIBUTORS "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 OWNER 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_1410.RULE b/src/licensedcode/data/rules/bsd-new_1410.RULE new file mode 100644 index 00000000000..544a61c3775 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1410.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + +{{name: BSD 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1411.RULE b/src/licensedcode/data/rules/bsd-new_1411.RULE new file mode 100644 index 00000000000..47c454a488a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1411.RULE @@ -0,0 +1,34 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + +* $QT_BEGIN_LICENSE:BSD$ * + * You may use this file under the terms of the BSD license as follows: * + * * + * "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 name of Nokia Corporation and its Subsidiary(-ies) nor * + * the names of 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 AND CONTRIBUTORS * + * "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 * + * OWNER 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." * + * $QT_END_LICENSE$ * \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1412.RULE b/src/licensedcode/data/rules/bsd-new_1412.RULE new file mode 100644 index 00000000000..e31e094927e --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1412.RULE @@ -0,0 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.WEBKIT +notes: See https://github.com/pulseaudio/pulseaudio/blob/84f5b742e39ba3e375bac9144e0243b7331f4019/src/pulsecore/filter/LICENSE.WEBKIT#L2 +--- + +Use of this source code is {{governed by a BSD-style license that can be +found in the LICENSE.WEBKIT}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1413.RULE b/src/licensedcode/data/rules/bsd-new_1413.RULE new file mode 100644 index 00000000000..2230967c032 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1413.RULE @@ -0,0 +1,29 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: See https://github.com/pulseaudio/pulseaudio/blob/84f5b742e39ba3e375bac9144e0243b7331f4019/src/pulsecore/filter/LICENSE.WEBKIT#L2 +--- + +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 name of Apple Computer, Inc. ("Apple") nor the names of + its contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "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 APPLE OR ITS 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_1414.RULE b/src/licensedcode/data/rules/bsd-new_1414.RULE new file mode 100644 index 00000000000..52815ca000f --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1414.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + +It is based on the BSD-licensed implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1415.RULE b/src/licensedcode/data/rules/bsd-new_1415.RULE new file mode 100644 index 00000000000..46f93098c92 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1415.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + +based on the BSD-licensed implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1416.RULE b/src/licensedcode/data/rules/bsd-new_1416.RULE new file mode 100644 index 00000000000..cdabe2278d9 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1416.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + +It is based on the BSD-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1417.RULE b/src/licensedcode/data/rules/bsd-new_1417.RULE new file mode 100644 index 00000000000..d713e8fdbba --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1417.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + +based on the BSD-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1418.RULE b/src/licensedcode/data/rules/bsd-new_1418.RULE new file mode 100644 index 00000000000..bf45fd29d05 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1418.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + +New BSD License (3-clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1419.RULE b/src/licensedcode/data/rules/bsd-new_1419.RULE new file mode 100644 index 00000000000..89a6c0da789 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1419.RULE @@ -0,0 +1,28 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + +New BSD License (3-clause) + +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 name of , Inc. nor the + names of 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 AND CONTRIBUTORS "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 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_1420.RULE b/src/licensedcode/data/rules/bsd-new_1420.RULE new file mode 100644 index 00000000000..24a041918bd --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1420.RULE @@ -0,0 +1,26 @@ +--- +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 name of , Inc. nor the + names of 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 AND CONTRIBUTORS "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 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_1421.RULE b/src/licensedcode/data/rules/bsd-new_1421.RULE new file mode 100644 index 00000000000..a3b2d4a7711 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1421.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +This is a BSD-3-Clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1422.RULE b/src/licensedcode/data/rules/bsd-new_1422.RULE new file mode 100644 index 00000000000..5f6b7eed5a6 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1422.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - NOTICE.md +--- + +Use of this source code is governed by a BSD-style +license that can be found in the NOTICE.md file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_10.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_10.RULE new file mode 100644 index 00000000000..a644fffc7b2 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_10.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: Go license also has the patent disclaimer often ignored by downstream re-users +--- + +This code is licensed under the {{same conditions as the original Go code}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_11.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_11.RULE new file mode 100644 index 00000000000..f634495f20c --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_notice: yes +relevance: 99 +notes: Go license also has the patent disclaimer often ignored by downstream re-users +--- + +licensed under the {{same conditions as the original Go code}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_7.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_7.RULE new file mode 100644 index 00000000000..beb8207cb81 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_7.RULE @@ -0,0 +1,12 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: Go license also has the patent disclaimer often ignored by downstream re-users +--- + +# license + +This code is licensed under the {{same conditions as the original Go code}}. See LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_8.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_8.RULE new file mode 100644 index 00000000000..77c8a19972c --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_8.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: Go license also has the patent disclaimer often ignored by downstream re-users +--- + +This code is licensed under the {{same conditions as the original Go code}}. See LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_9.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_9.RULE new file mode 100644 index 00000000000..c36bf13c1f4 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_9.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: Go license also has the patent disclaimer often ignored by downstream re-users +--- + +licensed under the {{same conditions as the original Go code}}. See LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_43.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_43.RULE new file mode 100644 index 00000000000..c03e96260ee --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_43.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + +You may use the project under the terms of either the BSD License or the +GNU General Public License (GPL) Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_44.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_44.RULE new file mode 100644 index 00000000000..fa74d1b4342 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_44.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + +* This is part of the Forge project which may be used under the terms of + * either the BSD License or the GNU General Public License (GPL) Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_45.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_45.RULE new file mode 100644 index 00000000000..2f9a5700c10 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_45.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + +* This is part of the project which may be used under the terms of + * either the BSD License or the GNU General Public License (GPL) Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_46.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_46.RULE new file mode 100644 index 00000000000..28ffd86be29 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_46.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + +may be used under the terms of either the BSD License or the GNU General Public License (GPL) Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_47.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_47.RULE new file mode 100644 index 00000000000..4aa645b0d01 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_47.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + +either the BSD License or the GNU General Public License (GPL) Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_48.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_48.RULE new file mode 100644 index 00000000000..0713b2c543c --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_48.RULE @@ -0,0 +1,22 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + +You may use the project under the terms of either the BSD License or the +GNU General Public License (GPL) Version 2. + +The BSD License is recommended for most projects. It is simple and easy to +understand and it places almost no restrictions on what you can do with the +Forge project. + + +If the GPL suits your project better you are also free to use under +that license. + + +You don't have to do anything special to choose one license or the other and +you don't have to notify anyone which license you are using. You are free to +use this project in commercial projects as long as the copyright header is +left intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_49.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_49.RULE new file mode 100644 index 00000000000..330f0dec487 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_49.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + +{{license: (BSD-3-Clause OR GPL-2.0)}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_50.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_50.RULE new file mode 100644 index 00000000000..5b97c3ed841 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_50.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + +{{ (BSD-3-Clause OR GPL-2.0)}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_51.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_51.RULE new file mode 100644 index 00000000000..91af5f0823f --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_51.RULE @@ -0,0 +1,12 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License +notes: Seen in libcap in Go +--- + +package is distributed with a "you choose" +License. Specifically: BSD three clause, or GPL2. See the License +file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_52.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_52.RULE new file mode 100644 index 00000000000..594f6b8fd2a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_52.RULE @@ -0,0 +1,11 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License +notes: Seen in libcap in Go +--- + +package is distributed with a +"you choose" License. Specifically: BSD three clause, or GPL2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_53.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_53.RULE new file mode 100644 index 00000000000..056d27aa967 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_53.RULE @@ -0,0 +1,11 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: Seen in libcap in Go +--- + +packages are licensed with a (you choose) BSD +3-clause or GPL2. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_54.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_54.RULE new file mode 100644 index 00000000000..dfd4fcde0b2 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_54.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: Seen in libcap in Go +--- + +licensed with a (you choose) {{BSD +3-clause or GPL2.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_55.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_55.RULE new file mode 100644 index 00000000000..e445a030d29 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_55.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +is_continuous: yes +relevance: 100 +notes: Seen in libcap in Go +--- + +{{BSD three clause, or GPL2.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_94.RULE b/src/licensedcode/data/rules/bsd-original_94.RULE new file mode 100644 index 00000000000..331e2229278 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-original_94.RULE @@ -0,0 +1,29 @@ +--- +license_expression: bsd-original +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. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software. +4. Neither the name of the nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + +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 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-original_95.RULE b/src/licensedcode/data/rules/bsd-original_95.RULE new file mode 100644 index 00000000000..9c01c92771d --- /dev/null +++ b/src/licensedcode/data/rules/bsd-original_95.RULE @@ -0,0 +1,29 @@ +--- +license_expression: bsd-original +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. + All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software. + Neither the name of the nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + +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 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-original_96.RULE b/src/licensedcode/data/rules/bsd-original_96.RULE new file mode 100644 index 00000000000..f20cdfbdf7a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-original_96.RULE @@ -0,0 +1,13 @@ +--- +license_expression: bsd-original +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. +3. All advertising materials mentioning features or use of this software must display the following acknowledgement: +This product includes software developed by . +4. Neither the name of the Software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY AND CONTRIBUTORS "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 AND 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-original_97.RULE b/src/licensedcode/data/rules/bsd-original_97.RULE new file mode 100644 index 00000000000..4878a665082 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-original_97.RULE @@ -0,0 +1,13 @@ +--- +license_expression: bsd-original +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. + All advertising materials mentioning features or use of this software must display the following acknowledgement: +This product includes software developed by . + Neither the name of the Software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY AND CONTRIBUTORS "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 AND 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-simplified_341.RULE b/src/licensedcode/data/rules/bsd-simplified_341.RULE new file mode 100644 index 00000000000..906cb8e831f --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_341.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +distributed under an [open source license](./LICENSE). A simplified 2-BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_29.RULE b/src/licensedcode/data/rules/bsd-source-code_29.RULE new file mode 100644 index 00000000000..7d25dd2924a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-source-code_29.RULE @@ -0,0 +1,27 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 99 +minimum_coverage: 95 +notes: minor variants seen in unworkable/bf.c +--- + +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. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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-source-code_30.RULE b/src/licensedcode/data/rules/bsd-source-code_30.RULE new file mode 100644 index 00000000000..dc691d01114 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-source-code_30.RULE @@ -0,0 +1,24 @@ +--- +license_expression: bsd-source-code +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. +* Neither my name nor the names of my 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 AND CONTRIBUTORS "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 HOLDER 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-source-code_31.RULE b/src/licensedcode/data/rules/bsd-source-code_31.RULE new file mode 100644 index 00000000000..d39f322bf1d --- /dev/null +++ b/src/licensedcode/data/rules/bsd-source-code_31.RULE @@ -0,0 +1,24 @@ +--- +license_expression: bsd-source-code +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 Neither my name nor the names of my 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 AND CONTRIBUTORS "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 HOLDER 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-x11_13.RULE b/src/licensedcode/data/rules/bsd-x11_13.RULE new file mode 100644 index 00000000000..3b2a70fa20a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-x11_13.RULE @@ -0,0 +1,32 @@ +--- +license_expression: bsd-x11 +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 my name nor the names of my 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 AND CONTRIBUTORS +"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 +OWNER 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-x11_14.RULE b/src/licensedcode/data/rules/bsd-x11_14.RULE new file mode 100644 index 00000000000..385b36eb014 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-x11_14.RULE @@ -0,0 +1,26 @@ +--- +license_expression: bsd-x11 +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 my name nor the names of any contributors to the + project may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "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 I 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/bsl-1.0_1.RULE b/src/licensedcode/data/rules/bsl-1.0_1.RULE new file mode 100644 index 00000000000..cceb3638254 --- /dev/null +++ b/src/licensedcode/data/rules/bsl-1.0_1.RULE @@ -0,0 +1,14 @@ +--- +license_expression: bsl-1.0 +is_license_notice: yes +referenced_filenames: + - licenses/BSL.txt +--- + +// Use of this software is governed by the Business Source License +// included in the file licenses/BSL.txt. +// +// As of the Change Date specified in that file, in accordance with +// the Business Source License, use of this software will be governed +// by the Apache License, Version 2.0, included in the file +// licenses/APL.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_8.RULE b/src/licensedcode/data/rules/c-uda-1.0_8.RULE new file mode 100644 index 00000000000..aab5f0ddeba --- /dev/null +++ b/src/licensedcode/data/rules/c-uda-1.0_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: c-uda-1.0 +is_license_notice: yes +relevance: 100 +notes: https://github.com/microsoft/CodeXGLUE?tab=readme-ov-file#license +--- + +Our datasets follow Computational Use of Data Agreement (C-UDA) License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_116.RULE b/src/licensedcode/data/rules/cc-by-4.0_116.RULE new file mode 100644 index 00000000000..f4c2e95f40e --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_116.RULE @@ -0,0 +1,12 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode +--- + +TERMS AND CONDITIONS + +This schema is provided by OASIS, the Copyright Holder, under licence +cc-by 4.0, that can also be found at the URL +https://creativecommons.org/licenses/by/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_117.RULE b/src/licensedcode/data/rules/cc-by-4.0_117.RULE new file mode 100644 index 00000000000..c21dcb7d3ba --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_117.RULE @@ -0,0 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode +--- + +under licence +cc-by 4.0, that can also be found at the URL +https://creativecommons.org/licenses/by/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_213.RULE b/src/licensedcode/data/rules/cc0-1.0_213.RULE new file mode 100644 index 00000000000..e999c8fb8c7 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_213.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/choose/zero/ +--- + +made available under a [Creative Commons Zero] {{ https://creativecommons.org/choose/zero/ }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_214.RULE b/src/licensedcode/data/rules/cc0-1.0_214.RULE new file mode 100644 index 00000000000..0b95156ed70 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_214.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/choose/zero/ +--- + +available under a [Creative Commons Zero] {{ https://creativecommons.org/choose/zero/ }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_215.RULE b/src/licensedcode/data/rules/cc0-1.0_215.RULE new file mode 100644 index 00000000000..839775cfd23 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_215.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/choose/zero/ +--- + +[Creative Commons Zero] {{ https://creativecommons.org/choose/zero/ }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_216.RULE b/src/licensedcode/data/rules/cc0-1.0_216.RULE new file mode 100644 index 00000000000..13d9d5c73bb --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_216.RULE @@ -0,0 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/choose/zero/ +--- + +{{ https://creativecommons.org/choose/zero/ }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_217.RULE b/src/licensedcode/data/rules/cc0-1.0_217.RULE new file mode 100644 index 00000000000..0be316f947c --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_217.RULE @@ -0,0 +1,21 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + +License ## + +This project is in the worldwide [public domain](LICENSE). + +This project is in the public domain within the United States, and +copyright and related rights in the work worldwide are waived through +the [CC0 1.0 Universal public domain +dedication](https://creativecommons.org/publicdomain/zero/1.0/). + +All contributions to this project will be released under the CC0 +dedication. By submitting a pull request, you are agreeing to comply +with this waiver of copyright interest. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_218.RULE b/src/licensedcode/data/rules/cc0-1.0_218.RULE new file mode 100644 index 00000000000..a1e83ac04e7 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_218.RULE @@ -0,0 +1,17 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + +License ## + +This project is in the worldwide [public domain](LICENSE). + +This project is in the public domain within the United States, and +copyright and related rights in the work worldwide are waived through +the [CC0 1.0 Universal public domain +dedication](https://creativecommons.org/publicdomain/zero/1.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_99.RULE b/src/licensedcode/data/rules/commercial-license_99.RULE new file mode 100644 index 00000000000..a8de96043ce --- /dev/null +++ b/src/licensedcode/data/rules/commercial-license_99.RULE @@ -0,0 +1,9 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ee/LICENSE +--- + +this repository (Commercial License) is licensed under the license defined in "ee/LICENSE". \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_and_agpl-3.0_1.RULE b/src/licensedcode/data/rules/commercial-license_and_agpl-3.0_1.RULE new file mode 100644 index 00000000000..3cb1f125d4e --- /dev/null +++ b/src/licensedcode/data/rules/commercial-license_and_agpl-3.0_1.RULE @@ -0,0 +1,54 @@ +--- +license_expression: commercial-license AND agpl-3.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2020-present Cal.com, Inc +ignorable_holders: + - Cal.com, Inc +ignorable_urls: + - https://cal.com/terms +--- + +The Cal.com Commercial License (the “Commercial License”) +Copyright (c) 2020-present Cal.com, Inc + +With regard to the Cal.com Software: + +This software and associated documentation files (the "Software") may only be +used in production, if you (and any entity that you represent) have agreed to, +and are in compliance with, the Cal.com Subscription Terms available +at https://cal.com/terms, or other agreements governing +the use of the Software, as mutually agreed by you and Cal.com, Inc ("Cal.com"), +and otherwise have a valid Cal.com Enterprise Edition subscription ("Commercial Subscription") +for the correct number of hosts as defined in the "Commercial Terms ("Hosts"). Subject to the foregoing sentence, +you are free to modify this Software and publish patches to the Software. You agree +that Cal.com and/or its licensors (as applicable) retain all right, title and interest in +and to all such modifications and/or patches, and all such modifications and/or +patches may only be used, copied, modified, displayed, distributed, or otherwise +exploited with a valid Commercial Subscription for the correct number of hosts. +Notwithstanding the foregoing, you may copy and modify the Software for development +and testing purposes, without requiring a subscription. You agree that Cal.com and/or +its licensors (as applicable) retain all right, title and interest in and to all such +modifications. You are not granted any other rights beyond what is expressly stated herein. +Subject to the foregoing, it is forbidden to copy, merge, publish, distribute, sublicense, +and/or sell the Software. + +This Commercial License applies only to the part of this Software that is not distributed under +the AGPLv3 license. Any part of this Software distributed under the MIT license or which +is served client-side as an image, font, cascading stylesheet (CSS), file which produces +or is compiled, arranged, augmented, or combined into client-side JavaScript, in whole or +in part, is copyrighted under the AGPLv3 license. The full text of this Commercial License 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. + +For all third party components incorporated into the Cal.com Software, those +components are licensed under the original license provided by the owner of the +applicable component. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_44.RULE b/src/licensedcode/data/rules/cpl-1.0_44.RULE new file mode 100644 index 00000000000..7d75870006a --- /dev/null +++ b/src/licensedcode/data/rules/cpl-1.0_44.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +--- + +(CPL) WSDL4J \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_12.RULE b/src/licensedcode/data/rules/ecl-1.0_12.RULE new file mode 100644 index 00000000000..66b45e166c8 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-1.0_12.RULE @@ -0,0 +1,58 @@ +--- +license_expression: ecl-1.0 +is_license_notice: yes +relevance: 99 +notes: https://github.com/gitter-badger/javaanpr/blob/dfcac89af94bfc7c81cefe2bb2109d77ab3674d6/LICENCE#L6 +--- + +This Original Work, including software, source code, documents, or +other related items, is being provided by the copyright holder(s) +subject to the terms of the Educational Community License. By +obtaining, using and/or copying this Original Work, you agree that you +have read, understand, and will comply with the following terms and +conditions of the Educational Community License: + +Permission to use, copy, modify, merge, publish, distribute, and +sublicense this Original Work and its documentation, with or without +modification, for any purpose, and without fee or royalty to the +copyright holder(s) is hereby granted, provided that you include the +following on ALL copies of the Original Work or portions thereof, +including modifications or derivatives, that you make: + +The full text of the Educational Community License in a location +viewable to users of the redistributed or derivative work. + +Any pre-existing intellectual property disclaimers, notices, or terms +and conditions. + +Notice of any changes or modifications to the Original Work, +including the date the changes were made. + +Any modifications of the Original Work must be distributed in such a +manner as to avoid any confusion with the Original Work of the +copyright holders. + +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 name and trademarks of copyright holder(s) may NOT be used in +advertising or publicity pertaining to the Original or Derivative Works +without specific, written prior permission. Title to copyright in the +Original Work and any associated documentation will at all times remain +with the copyright holders. + +If you want to alter upon this work, you MUST attribute it in +a) all source files +b) on every place, where is the copyright of derivated work +exactly by the following label : + +---- label begin ---- +This work is a derivate of the is a intellectual +property of . Please visit +for more info about +---- label end ---- \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_20.RULE b/src/licensedcode/data/rules/ecl-2.0_20.RULE new file mode 100644 index 00000000000..5a55a450c08 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_20.RULE @@ -0,0 +1,12 @@ +--- +license_expression: ecl-2.0 +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/ECL-2.0 +--- + +Licensed under the Educational Community 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://opensource.org/licenses/ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_24.RULE b/src/licensedcode/data/rules/ecl-2.0_24.RULE new file mode 100644 index 00000000000..f4c24b75897 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_24.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ecl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the Educational Community License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_25.RULE b/src/licensedcode/data/rules/ecl-2.0_25.RULE new file mode 100644 index 00000000000..ba60e79644a --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_25.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ecl-2.0 +is_license_notice: yes +relevance: 100 +--- + +licensed under the terms of the Educational Community License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_26.RULE b/src/licensedcode/data/rules/ecl-2.0_26.RULE new file mode 100644 index 00000000000..30cddde4e26 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_26.RULE @@ -0,0 +1,14 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +ignorable_urls: + - http://opensource.org/licenses/ECL-2.0 +--- + + + + Educational Community License, Version 2.0 + http://opensource.org/licenses/ECL-2.0 + repo + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_27.RULE b/src/licensedcode/data/rules/ecl-2.0_27.RULE new file mode 100644 index 00000000000..154ec887efd --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_27.RULE @@ -0,0 +1,11 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +ignorable_urls: + - http://opensource.org/licenses/ECL-2.0 +--- + + + Educational Community License, Version 2.0 + http://opensource.org/licenses/ECL-2.0 + \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_28.RULE b/src/licensedcode/data/rules/ecl-2.0_28.RULE new file mode 100644 index 00000000000..10b9652d33f --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_28.RULE @@ -0,0 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +ignorable_urls: + - http://opensource.org/licenses/ECL-2.0 +--- + + + Educational Community License, Version 2.0 + http://opensource.org/licenses/ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_29.RULE b/src/licensedcode/data/rules/ecl-2.0_29.RULE new file mode 100644 index 00000000000..0419a79086b --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_29.RULE @@ -0,0 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ECL-2.0 +--- + +Educational Community License, Version 2.0 + http://opensource.org/licenses/ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_30.RULE b/src/licensedcode/data/rules/ecl-2.0_30.RULE new file mode 100644 index 00000000000..c501fc08af6 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_30.RULE @@ -0,0 +1,11 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ECL-2.0 +--- + +license +Educational Community License, Version 2.0 +http://opensource.org/licenses/ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_31.RULE b/src/licensedcode/data/rules/ecl-2.0_31.RULE new file mode 100644 index 00000000000..77883244fb5 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_31.RULE @@ -0,0 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ECL-2.0 +--- + +Educational Community License, Version 2.0 +http://opensource.org/licenses/ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_32.RULE b/src/licensedcode/data/rules/ecl-2.0_32.RULE new file mode 100644 index 00000000000..72fabeb2140 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_32.RULE @@ -0,0 +1,14 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.opensource.org/licenses/ecl2.txt +--- + + + + Educational Community License, Version 2.0 + http://www.opensource.org/licenses/ecl2.txt + svn + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_33.RULE b/src/licensedcode/data/rules/ecl-2.0_33.RULE new file mode 100644 index 00000000000..80a0233272b --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_33.RULE @@ -0,0 +1,11 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.opensource.org/licenses/ecl2.txt +--- + + + Educational Community License, Version 2.0 + http://www.opensource.org/licenses/ecl2.txt + svn \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_34.RULE b/src/licensedcode/data/rules/ecl-2.0_34.RULE new file mode 100644 index 00000000000..a370d1505f2 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_34.RULE @@ -0,0 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ecl2.txt +--- + +Educational Community License, Version 2.0 + http://www.opensource.org/licenses/ecl2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_35.RULE b/src/licensedcode/data/rules/ecl-2.0_35.RULE new file mode 100644 index 00000000000..727b1093ffd --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_35.RULE @@ -0,0 +1,11 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ecl2.txt +--- + +license + Educational Community License, Version 2.0 + http://www.opensource.org/licenses/ecl2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_36.RULE b/src/licensedcode/data/rules/ecl-2.0_36.RULE new file mode 100644 index 00000000000..945c421cec2 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_36.RULE @@ -0,0 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ecl2.txt +--- + +Educational Community License, Version 2.0 + http://www.opensource.org/licenses/ecl2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_37.RULE b/src/licensedcode/data/rules/ecl-2.0_37.RULE new file mode 100644 index 00000000000..b048430e10c --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_37.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +relevance: 100 +--- + +LICENSE_NAME= Educational Community License (ECL) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_38.RULE b/src/licensedcode/data/rules/ecl-2.0_38.RULE new file mode 100644 index 00000000000..f02cda47e50 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_38.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +--- + +Educational Community License (ECL) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/ecl-2.0_or_gpl-3.0_1.RULE new file mode 100644 index 00000000000..f690c51d100 --- /dev/null +++ b/src/licensedcode/data/rules/ecl-2.0_or_gpl-3.0_1.RULE @@ -0,0 +1,21 @@ +--- +license_expression: ecl-2.0 OR gpl-3.0 +is_license_notice: yes +ignorable_urls: + - https://opensource.org/license/ecl-2-0/ + - https://www.gnu.org/licenses/gpl-3.0.html +--- + +Dual-licensed under the Educational Community License, Version 2.0 and + the GNU General Public License, Version 3 (the "Licenses"); you may + not use this file except in compliance with the Licenses. You may + obtain a copy of the Licenses at + + https://opensource.org/license/ecl-2-0/ + https://www.gnu.org/licenses/gpl-3.0.html + + Unless required by applicable law or agreed to in writing, + software distributed under the Licenses are distributed on an "AS IS" + BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + or implied. See the Licenses for the specific language governing + permissions and limitations under the Licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_or_gpl-2.0_with_openjdk-assembly-exception-1.0_1.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_or_gpl-2.0_with_openjdk-assembly-exception-1.0_1.RULE new file mode 100644 index 00000000000..76a167e4384 --- /dev/null +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_or_gpl-2.0_with_openjdk-assembly-exception-1.0_1.RULE @@ -0,0 +1,26 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-assembly-exception-1.0 +is_license_notice: yes +ignorable_urls: + - https://openjdk.org/legal/assembly-exception.html + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/legal/epl-2.0/ + - https://www.gnu.org/software/classpath/license.html +--- + +This program and the accompanying materials are made available under + * the terms of the Eclipse Public License 2.0 which accompanies this + * distribution and is available at https://www.eclipse.org/legal/epl-2.0/ + * or the Apache License, Version 2.0 which accompanies this distribution and + * is available at https://www.apache.org/licenses/LICENSE-2.0. + * + * This Source Code may also be made available under the following + * Secondary Licenses when the conditions for such availability set + * forth in the Eclipse Public License, v. 2.0 are satisfied: GNU + * General Public License, version 2 with the GNU Classpath + * Exception [1] and GNU General Public License, version 2 with the + * OpenJDK Assembly Exception [2]. + * + * [1] https://www.gnu.org/software/classpath/license.html + * [2] https://openjdk.org/legal/assembly-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_26.RULE b/src/licensedcode/data/rules/eupl-1.2_26.RULE new file mode 100644 index 00000000000..37b7aeb2731 --- /dev/null +++ b/src/licensedcode/data/rules/eupl-1.2_26.RULE @@ -0,0 +1,17 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +notes: '"or later" is the standard for EUPL' +ignorable_urls: + - https://joinup.ec.europa.eu/software/page/eupl +--- + +Licensed under the {{EUPL, Version 1.2}} or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence"); +You may not use this work except in compliance with the Licence. +You may obtain a copy of the Licence at: + + https://joinup.ec.europa.eu/software/page/eupl + +Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the Licence for the specific language governing permissions and limitations under the Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_30.RULE b/src/licensedcode/data/rules/eupl-1.2_30.RULE new file mode 100644 index 00000000000..2bb0e69bcfe --- /dev/null +++ b/src/licensedcode/data/rules/eupl-1.2_30.RULE @@ -0,0 +1,18 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +notes: '"or later" is the standard for EUPL' +ignorable_urls: + - https://joinup.ec.europa.eu/software/page/eupl +--- + +Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence") + +You may not use this work except in compliance with the Licence.
+You may obtain a copy of the Licence at:
+ +[https://joinup.ec.europa.eu/software/page/eupl](https://joinup.ec.europa.eu/software/page/eupl) + +Unless required by applicable law or agreed to in writing, software distributed under the Licence is +distributed on an "AS IS" basis,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the Licence for the specific language governing permissions and limitations under the Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_31.RULE b/src/licensedcode/data/rules/eupl-1.2_31.RULE new file mode 100644 index 00000000000..b79f56544d3 --- /dev/null +++ b/src/licensedcode/data/rules/eupl-1.2_31.RULE @@ -0,0 +1,8 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +notes: '"or later" is the standard for EUPL' +--- + +Licensed under the EUPL-1.2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_32.RULE b/src/licensedcode/data/rules/eupl-1.2_32.RULE new file mode 100644 index 00000000000..3fea737624c --- /dev/null +++ b/src/licensedcode/data/rules/eupl-1.2_32.RULE @@ -0,0 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the EUPL 1.2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_33.RULE b/src/licensedcode/data/rules/eupl-1.2_33.RULE new file mode 100644 index 00000000000..e5b54226fe3 --- /dev/null +++ b/src/licensedcode/data/rules/eupl-1.2_33.RULE @@ -0,0 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 99 +--- + +European Union Public Licence (EUPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_34.RULE b/src/licensedcode/data/rules/eupl-1.2_34.RULE new file mode 100644 index 00000000000..266456cf0ab --- /dev/null +++ b/src/licensedcode/data/rules/eupl-1.2_34.RULE @@ -0,0 +1,11 @@ +--- +license_expression: eupl-1.2 +is_license_tag: yes +relevance: 99 +ignorable_urls: + - https://joinup.ec.europa.eu/software/page/eupl +--- + +name: European Union Public Licence (EUPL) + url: https://joinup.ec.europa.eu/software/page/eupl + comments: European Free/Open Source Software (F/OSS) licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_35.RULE b/src/licensedcode/data/rules/eupl-1.2_35.RULE new file mode 100644 index 00000000000..f83c5c0ce8f --- /dev/null +++ b/src/licensedcode/data/rules/eupl-1.2_35.RULE @@ -0,0 +1,10 @@ +--- +license_expression: eupl-1.2 +is_license_tag: yes +relevance: 99 +ignorable_urls: + - https://joinup.ec.europa.eu/software/page/eupl +--- + +name: European Union Public Licence (EUPL) + url: https://joinup.ec.europa.eu/software/page/eupl \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_36.RULE b/src/licensedcode/data/rules/eupl-1.2_36.RULE new file mode 100644 index 00000000000..b4c1d73ef5f --- /dev/null +++ b/src/licensedcode/data/rules/eupl-1.2_36.RULE @@ -0,0 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 99 +--- + +licensed under the European Union Public License (EUPL) 1.2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_771.RULE b/src/licensedcode/data/rules/false-positive_771.RULE new file mode 100644 index 00000000000..5be8bdf0e83 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_771.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +BSD-style checksum \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_772.RULE b/src/licensedcode/data/rules/false-positive_772.RULE new file mode 100644 index 00000000000..5cdbda7a0b4 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_772.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: comments about licenses, not a license proper +--- + +Add written offer (required for copyleft licenses, such as the GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_773.RULE b/src/licensedcode/data/rules/false-positive_773.RULE new file mode 100644 index 00000000000..4a3b4b87fd0 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_773.RULE @@ -0,0 +1,8 @@ +--- +is_false_positive: yes +notes: comments about licenses, not a license proper +--- + +Please provide all necessary license information for which the license require that this information is provided to the user. This especially +includes the original license text (this is particularly relevant for license +texts that include special information on copyright holders etc., like the BSD 3-clause license text) all relevant copyright notices that correlate with the respective license (including the names of the authors as well as the all additional information that needs to be provided according to the license (e.g. the text of the NOTICE file for Software under the Apache 2.0 License should such a file exist in the software) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_774.RULE b/src/licensedcode/data/rules/false-positive_774.RULE new file mode 100644 index 00000000000..b2e1ef6f275 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_774.RULE @@ -0,0 +1,7 @@ +--- +is_false_positive: yes +notes: comments about licenses, not a license proper +--- + +Please provide all necessary license information for which the license require that this information is provided to the user. This especially includes the original license text (this is particularly relevant for license texts that include special information on copyright holders etc., like the BSD 3-clause license text) +all relevant copyright notices that correlate with the respective license (including the names of the authors as well as the dates)","all additional information that needs to be provided according to the license (e.g. the text of the NOTICE file for Software under the Apache 2.0 License should such a file exist in the software) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_775.RULE b/src/licensedcode/data/rules/false-positive_775.RULE new file mode 100644 index 00000000000..89d31390ccf --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_775.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +if the permission is not granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_776.RULE b/src/licensedcode/data/rules/false-positive_776.RULE new file mode 100644 index 00000000000..7b22eb39ca5 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_776.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +non-commercial administrative body \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_777.RULE b/src/licensedcode/data/rules/false-positive_777.RULE new file mode 100644 index 00000000000..806b5648f51 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_777.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +non-commercial undertaking \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_778.RULE b/src/licensedcode/data/rules/false-positive_778.RULE new file mode 100644 index 00000000000..c38ef74d5a6 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_778.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +direct and indirect commercial use referred to \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_779.RULE b/src/licensedcode/data/rules/false-positive_779.RULE new file mode 100644 index 00000000000..82acbaedaf2 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_779.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +any direct or indirect commercial use of the geographical indication \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_780.RULE b/src/licensedcode/data/rules/false-positive_780.RULE new file mode 100644 index 00000000000..af19f80c8ac --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_780.RULE @@ -0,0 +1,8 @@ +--- +is_false_positive: yes +notes: Seen in Azure SDK. Not much of a license at all. +--- + +Notwithstanding any other terms, you may reverse engineer this software to the +extent required to debug changes to any libraries licensed under the GNU Lesser +General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_781.RULE b/src/licensedcode/data/rules/false-positive_781.RULE new file mode 100644 index 00000000000..2077fc996cf --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_781.RULE @@ -0,0 +1,7 @@ +--- +is_false_positive: yes +notes: Seen in Azure SDK. Not much of a license at all. +--- + +Azure SDK for Go uses third-party libraries or other resources that may be +distributed under licenses different than the Azure SDK for Go software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_782.RULE b/src/licensedcode/data/rules/false-positive_782.RULE new file mode 100644 index 00000000000..aacf079b494 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_782.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: Not a license, just a comment +--- + +The FSF address for GPL license was updated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_783.RULE b/src/licensedcode/data/rules/false-positive_783.RULE new file mode 100644 index 00000000000..38f5bc1653d --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_783.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: A comment about access permissions, not a license +--- + +permission is granted to the anonymous user \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_784.RULE b/src/licensedcode/data/rules/false-positive_784.RULE new file mode 100644 index 00000000000..722689b3cc6 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_784.RULE @@ -0,0 +1,13 @@ +--- +is_false_positive: yes +notes: A list of license patterns in a bouncer YAML file, not a license +--- + +permit: + - BSD.* + - CC0.* + - MIT.* + - Apache.* + - MPL.* + - ISC + - WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_785.RULE b/src/licensedcode/data/rules/false-positive_785.RULE new file mode 100644 index 00000000000..a528c6cef88 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_785.RULE @@ -0,0 +1,12 @@ +--- +is_false_positive: yes +notes: A list of license patterns in a bouncer YAML file, not a license +--- + +permit: + - BSD.* + - CC0.* + - MIT.* + - Apache.* + - MPL.* + - ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_786.RULE b/src/licensedcode/data/rules/false-positive_786.RULE new file mode 100644 index 00000000000..e9addb9a211 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_786.RULE @@ -0,0 +1,11 @@ +--- +is_false_positive: yes +notes: A list of license patterns in a bouncer YAML file, not a license +--- + +permit: + - BSD.* + - MIT.* + - Apache.* + - MPL.* + - ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_787.RULE b/src/licensedcode/data/rules/false-positive_787.RULE new file mode 100644 index 00000000000..2deff68f586 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_787.RULE @@ -0,0 +1,10 @@ +--- +is_false_positive: yes +notes: A list of license patterns in a bouncer YAML file, not a license +--- + +permit: + - BSD.* + - MIT.* + - Apache.* + - MPL.* \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_788.RULE b/src/licensedcode/data/rules/false-positive_788.RULE new file mode 100644 index 00000000000..6772a97bd18 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_788.RULE @@ -0,0 +1,11 @@ +--- +is_false_positive: yes +notes: A list of license patterns in a bouncer YAML file, not a license +--- + +permit: + - BSD.* + - MIT.* + - Apache.* + - MPL.* + - CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_789.RULE b/src/licensedcode/data/rules/false-positive_789.RULE new file mode 100644 index 00000000000..1a4ed78bbbc --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_789.RULE @@ -0,0 +1,9 @@ +--- +is_false_positive: yes +notes: A list of license patterns in a bouncer YAML file, not a license +--- + +permit: + - BSD.* + - MIT.* + - Apache.* \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_13.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_13.RULE new file mode 100644 index 00000000000..9db9acb95c8 --- /dev/null +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_13.RULE @@ -0,0 +1,105 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_text: yes +ignorable_copyrights: + - (c) Copyright 1995 - Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung e.V. +ignorable_holders: + - Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung e.V. +ignorable_urls: + - http://www.iis.fraunhofer.de/amm + - http://www.vialicensing.com/ +ignorable_emails: + - amm-info@iis.fraunhofer.de +--- + +Software License for The Fraunhofer FDK AAC Codec Library for Android + +© Copyright 1995 - Fraunhofer-Gesellschaft zur Förderung der angewandten +Forschung e.V. All rights reserved. + + 1. INTRODUCTION +The Fraunhofer FDK AAC Codec Library for Android ("FDK AAC Codec") is software +that implements the MPEG Advanced Audio Coding ("AAC") encoding and decoding +scheme for digital audio. This FDK AAC Codec software is intended to be used on +a wide variety of Android devices. + +AAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient +general perceptual audio codecs. AAC-ELD is considered the best-performing +full-bandwidth communications codec by independent studies and is widely +deployed. AAC has been standardized by ISO and IEC as part of the MPEG +specifications. + +Patent licenses for necessary patent claims for the FDK AAC Codec (including +those of Fraunhofer) may be obtained through Via Licensing +(www.vialicensing.com) or through the respective patent owners individually for +the purpose of encoding or decoding bit streams in products that are compliant +with the ISO/IEC MPEG audio standards. Please note that most manufacturers of +Android devices already license these patent claims through Via Licensing or +directly from the patent owners, and therefore FDK AAC Codec software may +already be covered under those patent licenses when it is used for those +licensed purposes only. + +Commercially-licensed AAC software libraries, including floating-point versions +with enhanced sound quality, are also available from Fraunhofer. Users are +encouraged to check the Fraunhofer website for additional applications +information and documentation. + +2. COPYRIGHT LICENSE + +Redistribution and use in source and binary forms, with or without modification, +are permitted without payment of copyright license fees provided that you +satisfy the following conditions: + +You must retain the complete text of this software license in redistributions of +the FDK AAC Codec or your modifications thereto in source code form. + +You must retain the complete text of this software license in the documentation +and/or other materials provided with redistributions of the FDK AAC Codec or +your modifications thereto in binary form. You must make available free of +charge copies of the complete source code of the FDK AAC Codec and your +modifications thereto to recipients of copies in binary form. + +The name of Fraunhofer may not be used to endorse or promote products derived +from this library without prior written permission. + +You may not charge copyright license fees for anyone to use, copy or distribute +the FDK AAC Codec software or your modifications thereto. + +Your modified versions of the FDK AAC Codec must carry prominent notices stating +that you changed the software and the date of any change. For modified versions +of the FDK AAC Codec, the term "Fraunhofer FDK AAC Codec Library for Android" +must be replaced by the term "Third-Party Modified Version of the Fraunhofer FDK +AAC Codec Library for Android." + +3. NO PATENT LICENSE + +NO EXPRESS OR IMPLIED LICENSES TO ANY PATENT CLAIMS, including without +limitation the patents of Fraunhofer, ARE GRANTED BY THIS SOFTWARE LICENSE. +Fraunhofer provides no warranty of patent non-infringement with respect to this +software. + +You may use this FDK AAC Codec software or modifications thereto only for +purposes that are authorized by appropriate patent licenses. + +4. DISCLAIMER + +This FDK AAC Codec software is provided by Fraunhofer on behalf of the copyright +holders and contributors "AS IS" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, +including but not limited to the implied warranties of merchantability and +fitness for a particular purpose. IN NO EVENT SHALL THE COPYRIGHT HOLDER 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), arising in any way out of the use of +this software, even if advised of the possibility of such damage. + +5. CONTACT INFORMATION + +Fraunhofer Institute for Integrated Circuits IIS +Attention: Audio and Multimedia Departments - FDK AAC LL +Am Wolfsmantel 33 +91058 Erlangen, Germany + +www.iis.fraunhofer.de/amm +amm-info@iis.fraunhofer.de \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.RULE new file mode 100644 index 00000000000..f083670c1d1 --- /dev/null +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.RULE @@ -0,0 +1,106 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_text: yes +ignorable_copyrights: + - (c) Copyright 1995 - 2018 Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung + e.V. +ignorable_holders: + - Fraunhofer-Gesellschaft zur Forderung der angewandten Forschung e.V. +ignorable_urls: + - http://www.iis.fraunhofer.de/amm + - http://www.vialicensing.com/ +ignorable_emails: + - amm-info@iis.fraunhofer.de +--- + +Software License for The Fraunhofer FDK AAC Codec Library for Android + +© Copyright 1995 - 2018 Fraunhofer-Gesellschaft zur Förderung der angewandten +Forschung e.V. All rights reserved. + + 1. INTRODUCTION +The Fraunhofer FDK AAC Codec Library for Android ("FDK AAC Codec") is software +that implements the MPEG Advanced Audio Coding ("AAC") encoding and decoding +scheme for digital audio. This FDK AAC Codec software is intended to be used on +a wide variety of Android devices. + +AAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient +general perceptual audio codecs. AAC-ELD is considered the best-performing +full-bandwidth communications codec by independent studies and is widely +deployed. AAC has been standardized by ISO and IEC as part of the MPEG +specifications. + +Patent licenses for necessary patent claims for the FDK AAC Codec (including +those of Fraunhofer) may be obtained through Via Licensing +(www.vialicensing.com) or through the respective patent owners individually for +the purpose of encoding or decoding bit streams in products that are compliant +with the ISO/IEC MPEG audio standards. Please note that most manufacturers of +Android devices already license these patent claims through Via Licensing or +directly from the patent owners, and therefore FDK AAC Codec software may +already be covered under those patent licenses when it is used for those +licensed purposes only. + +Commercially-licensed AAC software libraries, including floating-point versions +with enhanced sound quality, are also available from Fraunhofer. Users are +encouraged to check the Fraunhofer website for additional applications +information and documentation. + +2. COPYRIGHT LICENSE + +Redistribution and use in source and binary forms, with or without modification, +are permitted without payment of copyright license fees provided that you +satisfy the following conditions: + +You must retain the complete text of this software license in redistributions of +the FDK AAC Codec or your modifications thereto in source code form. + +You must retain the complete text of this software license in the documentation +and/or other materials provided with redistributions of the FDK AAC Codec or +your modifications thereto in binary form. You must make available free of +charge copies of the complete source code of the FDK AAC Codec and your +modifications thereto to recipients of copies in binary form. + +The name of Fraunhofer may not be used to endorse or promote products derived +from this library without prior written permission. + +You may not charge copyright license fees for anyone to use, copy or distribute +the FDK AAC Codec software or your modifications thereto. + +Your modified versions of the FDK AAC Codec must carry prominent notices stating +that you changed the software and the date of any change. For modified versions +of the FDK AAC Codec, the term "Fraunhofer FDK AAC Codec Library for Android" +must be replaced by the term "Third-Party Modified Version of the Fraunhofer FDK +AAC Codec Library for Android." + +3. NO PATENT LICENSE + +NO EXPRESS OR IMPLIED LICENSES TO ANY PATENT CLAIMS, including without +limitation the patents of Fraunhofer, ARE GRANTED BY THIS SOFTWARE LICENSE. +Fraunhofer provides no warranty of patent non-infringement with respect to this +software. + +You may use this FDK AAC Codec software or modifications thereto only for +purposes that are authorized by appropriate patent licenses. + +4. DISCLAIMER + +This FDK AAC Codec software is provided by Fraunhofer on behalf of the copyright +holders and contributors "AS IS" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, +including but not limited to the implied warranties of merchantability and +fitness for a particular purpose. IN NO EVENT SHALL THE COPYRIGHT HOLDER 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), arising in any way out of the use of +this software, even if advised of the possibility of such damage. + +5. CONTACT INFORMATION + +Fraunhofer Institute for Integrated Circuits IIS +Attention: Audio and Multimedia Departments - FDK AAC LL +Am Wolfsmantel 33 +91058 Erlangen, Germany + +www.iis.fraunhofer.de/amm +amm-info@iis.fraunhofer.de \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_34.RULE b/src/licensedcode/data/rules/generic-cla_34.RULE new file mode 100644 index 00000000000..5e785ddbfb9 --- /dev/null +++ b/src/licensedcode/data/rules/generic-cla_34.RULE @@ -0,0 +1,58 @@ +--- +license_expression: generic-cla +is_license_text: yes +notes: https://raw.githubusercontent.com/caprover/caprover/f9d880e8c3b56adfd0778aed105587c63b599db8/contrib.md +--- + +By making a contribution to this project, I certify that: + +(a) The contribution was created in whole or in part by me and I +have the right to submit it under the open source license +indicated in the file; or + +(b) The contribution is based upon previous work that, to the best +of my knowledge, is covered under an appropriate open source +license and I have the right under that license to submit that +work with modifications, whether created in whole or in part +by me, under the same open source license (unless I am +permitted to submit under a different license), as indicated +in the file; or + +(c) The contribution was provided directly to me by some other +person who certified (a), (b) or (c) and I have not modified +it. + +(d) I understand and agree that this project and the contribution +are public and that a record of the contribution (including all +personal information I submit with it, including my sign-off) is +maintained indefinitely and may be redistributed consistent with +this project or the open source license(s) involved. + +(e) Grant of Copyright License. Subject to the terms and conditions +of this Agreement, You hereby grant to and to +recipients of software distributed by a perpetual, +worldwide, non-exclusive, no-charge, royalty-free, irrevocable +copyright license to reproduce, prepare derivative works of, +publicly display, publicly perform, sublicense, and distribute +Your Contributions and such derivative works. + +(f) Grant of Patent License. Subject to the terms and conditions of +this Agreement, You hereby grant to and to recipients +of software distributed by a perpetual, worldwide, +non-exclusive, no-charge, royalty-free, irrevocable (except as +stated in this section) patent license to make, have made, use, +offer to sell, sell, import, and otherwise transfer the Work, +where such license applies only to those patent claims licensable +by You that are necessarily infringed by Your Contribution(s) +alone or by combination of Your Contribution(s) with the Work to +which such Contribution(s) were submitted. If any entity institutes +patent litigation against You or any other entity (including a +cross-claim or counterclaim in a lawsuit) alleging that your +Contribution, or the Work to which you have contributed, constitutes +direct or contributory patent infringement, then any patent licenses +granted to that entity under this Agreement for that Contribution or +Work shall terminate as of the date such litigation is filed. + + +(g) You represent that You are legally entitled to grant the above +license on your behalf and on behalf of your employer (if applicable). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_587.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_587.RULE new file mode 100644 index 00000000000..e3422b39ad3 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_587.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +License +Licensed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_588.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_588.RULE new file mode 100644 index 00000000000..a45d130ac09 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_588.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +We currently use a GPLed library \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_589.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_589.RULE new file mode 100644 index 00000000000..320548afec7 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_589.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +use a GPLed library \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_3.RULE new file mode 100644 index 00000000000..f47a46ab1b6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_3.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR commercial-license +is_license_notice: yes +--- + +The is dual licensed: # +GPL licence for Open Source developments, # +and Commerical licence for other users. # +to purchase a commerical licence # +contact: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_4.RULE new file mode 100644 index 00000000000..a02d5de4f2c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_4.RULE @@ -0,0 +1,6 @@ +--- +license_expression: gpl-1.0-plus OR commercial-license +is_license_notice: yes +--- + +available under dual licence GPL for Open Source development and Commercial licence for other users. If you want to purchase a commercial licence, please contact \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_5.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_5.RULE new file mode 100644 index 00000000000..71f6e08b022 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_5.RULE @@ -0,0 +1,13 @@ +--- +license_expression: gpl-1.0-plus OR commercial-license +is_license_notice: yes +--- + +Some internal components of it are dual licensed. This means is dual licenced, too. +GPL: + for Open Source development. + +Commercial licence: + for other users. + +If you want to purchase a commercial licence, please contact me by sending an email to: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1131.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1131.RULE new file mode 100644 index 00000000000..402ff312606 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1131.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +License {{GPLv2+}}: GNU {{GPL version 2 or later}} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +https://gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1132.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1132.RULE new file mode 100644 index 00000000000..e57c32c273c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1132.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +https://gnu.org/licenses/gpl.html +License {{GPLv2+}}: {{GNU GPL version 2 or later}} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1133.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1133.RULE new file mode 100644 index 00000000000..042eb163380 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1133.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +https://gnu.org/licenses/gpl.html +License {{GPLv2+}}: {{GNU GPL version 2 or later}} +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1134.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1134.RULE new file mode 100644 index 00000000000..09226cc665a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1134.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + +License {{GPLv2+}}: {{GNU GPL version 2 or later}} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1135.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1135.RULE new file mode 100644 index 00000000000..5a29be3ad5c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1135.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +License {{GPLv2+}}: {{GNU GPL version 2 or later}} +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +https://gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1136.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1136.RULE new file mode 100644 index 00000000000..50cfb6fbe6b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1136.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_continuous: yes +relevance: 100 +notes: See https://info.isl.ntt.co.jp/crypt/eng/camellia/specifications.html +--- + +{{ cipher has been been taken from the +original NTT provided GPL source.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1137.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1137.RULE new file mode 100644 index 00000000000..b7023601e2a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1137.RULE @@ -0,0 +1,19 @@ +--- +license_expression: gpl-2.0-plus +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 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. + +The LICENSE.txt file accompanying this software contains +a copy of the GNU General Public License. If it is not found, +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_1138.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1138.RULE new file mode 100644 index 00000000000..063fecb91e4 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1138.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +licenced under {{GPLv2+}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1139.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1139.RULE new file mode 100644 index 00000000000..50b13e08a8c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1139.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +This code is available under the GPL v2 or higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1140.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1140.RULE new file mode 100644 index 00000000000..37e67a293ba --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1140.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +available under the GPL v2 or higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1141.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1141.RULE new file mode 100644 index 00000000000..0ed6ce843ee --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1141.RULE @@ -0,0 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + +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, Suite 500, Boston, MA 02110-1335, USA. + +See the COPYING file for more information regarding the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1142.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1142.RULE new file mode 100644 index 00000000000..5f798f8545a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1142.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +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 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, Suite 500, Boston, MA 02110-1335, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1436.RULE b/src/licensedcode/data/rules/gpl-2.0_1436.RULE new file mode 100644 index 00000000000..6eb6f2e156a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1436.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +https://gnu.org/licenses/gpl.html +License {{GPLv2}}: {{GNU GPL version 2 }} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1437.RULE b/src/licensedcode/data/rules/gpl-2.0_1437.RULE new file mode 100644 index 00000000000..06dbc9a721b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1437.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +https://gnu.org/licenses/gpl.html +License {{GPLv2}}: {{GNU GPL version 2 }} +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1438.RULE b/src/licensedcode/data/rules/gpl-2.0_1438.RULE new file mode 100644 index 00000000000..80708d30f85 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1438.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + +License {{GPLv2}}: {{GNU GPL version 2 }} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1439.RULE b/src/licensedcode/data/rules/gpl-2.0_1439.RULE new file mode 100644 index 00000000000..43fcab2c426 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1439.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +License {{GPLv2}}: {{GNU GPL version 2 }} +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +https://gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1440.RULE b/src/licensedcode/data/rules/gpl-2.0_1440.RULE new file mode 100644 index 00000000000..c8e48625fde --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1440.RULE @@ -0,0 +1,19 @@ +--- +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 License version 2}} as published + by the Free Software Foundation. Note that {{permission is not granted + to redistribute this program under the terms of any other version of the + General Public 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, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1441.RULE b/src/licensedcode/data/rules/gpl-2.0_1441.RULE new file mode 100644 index 00000000000..795b2f7439b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1441.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 License version 2}} as +published by the Free Software Foundation. + +Note that permission is NOT granted to redistribute and/or modify +this program {{under the terms of any other version, earlier or +later}}, of the GNU General Public 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 version 2 for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1442.RULE b/src/licensedcode/data/rules/gpl-2.0_1442.RULE new file mode 100644 index 00000000000..513569ccf49 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1442.RULE @@ -0,0 +1,23 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +notes: https://github.com/brouhaha/nonpareil/blob/86a664e7732ff7e5b487da733edc0022b29ae7fe/src/card_reader.c +--- + +is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License version 2 as +published by the Free Software Foundation. Note that I am not +granting permission to redistribute or modify under the +terms of any later version of the General Public 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 this program (in the file "COPYING"); if not, write to the +Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, +MA 02111, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1443.RULE b/src/licensedcode/data/rules/gpl-2.0_1443.RULE new file mode 100644 index 00000000000..d439bb449db --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1443.RULE @@ -0,0 +1,22 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +notes: https://github.com/watmough/Calc41C/blob/6b0e9e36d51cc4d45318aca0b832d6c754e0f603/Classes/rom.h#L9 +--- + +is free software; you can redistribute it and/or modify it under the +terms of the GNU General Public License version 2 as published by the Free +Software Foundation. Note that I am not granting permission to redistribute +or modify under the terms of any later version of the General Public +License. + +This program is distributed in the hope that it will be useful (or at least +amusing), 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 (in the file "COPYING"); if not, write to the Free Software +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1444.RULE b/src/licensedcode/data/rules/gpl-2.0_1444.RULE new file mode 100644 index 00000000000..fb48b72675c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1444.RULE @@ -0,0 +1,19 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + +This file may be distributed and/or modified under the terms of the +GNU General Public License version 2 as published by the Free Software +Foundation and appearing in the file LICENSE.GPL included in the +packaging of this file. + +This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + +See the file LICENSE.GPL that came with this software distribution or +visit http://www.gnu.org/copyleft/gpl.html for GPL licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1445.RULE b/src/licensedcode/data/rules/gpl-2.0_1445.RULE new file mode 100644 index 00000000000..e957a866c23 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1445.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + +See the file LICENSE.GPL that came with this software distribution or +visit http://www.gnu.org/copyleft/gpl.html for GPL licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1446.RULE b/src/licensedcode/data/rules/gpl-2.0_1446.RULE new file mode 100644 index 00000000000..ccd0b7e1765 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1446.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + +visit http://www.gnu.org/copyleft/gpl.html for GPL licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1447.RULE b/src/licensedcode/data/rules/gpl-2.0_1447.RULE new file mode 100644 index 00000000000..2e68f9474ce --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1447.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + +This file is part of the {{S-Lang}} Library and may be distributed under the +terms of the {{GNU General Public License}}. See the file COPYING for +more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1448.RULE b/src/licensedcode/data/rules/gpl-2.0_1448.RULE new file mode 100644 index 00000000000..0be54b65052 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1448.RULE @@ -0,0 +1,17 @@ +--- +license_expression: gpl-2.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 {{General Public License version 2.0}}, as + published by the Free Software Foundation. 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-2.0_or_cddl-1.1_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_1.RULE new file mode 100644 index 00000000000..c3a6dec127f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_1.RULE @@ -0,0 +1,42 @@ +--- +license_expression: gpl-2.0 OR cddl-1.1 +is_license_notice: yes +referenced_filenames: + - packager/legal/LICENSE.txt +ignorable_urls: + - http://glassfish.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 + http://glassfish.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/gpl-2.0_or_cddl-1.1_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_2.RULE new file mode 100644 index 00000000000..9b8bc450977 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_2.RULE @@ -0,0 +1,13 @@ +--- +license_expression: gpl-2.0 OR cddl-1.1 +is_license_tag: yes +ignorable_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + + + + + Dual license consisting of the CDDL v1.1 and GPL v2 + + http://glassfish.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_3.RULE new file mode 100644 index 00000000000..2c564d6a79c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_3.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0 OR cddl-1.1 +is_license_tag: yes +ignorable_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + + + + Dual license consisting of the CDDL v1.1 and GPL v2 + http://glassfish.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_4.RULE new file mode 100644 index 00000000000..c3a2832753c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_4.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0 OR cddl-1.1 +is_license_tag: yes +ignorable_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + + + Dual license consisting of the CDDL v1.1 and GPL v2 + http://glassfish.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_5.RULE new file mode 100644 index 00000000000..82a416621b4 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_or_cddl-1.1_5.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 OR cddl-1.1 +is_license_notice: yes +relevance: 100 +--- + +Dual license consisting of the CDDL v1.1 and GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_10.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_10.RULE new file mode 100644 index 00000000000..09976088a42 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_10.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +notes: Seen in YAFFS2 +--- + +available under the GPL and via alternative licensing +arrangements with . If you're using as a {{Linux kernel +file system then it will be under the GPL.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_592.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_592.RULE new file mode 100644 index 00000000000..a1230294911 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_592.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +License {{GPLv3+}}: GNU {{GPL version 3 or later}} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +https://gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_593.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_593.RULE new file mode 100644 index 00000000000..c4adeceb9f8 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_593.RULE @@ -0,0 +1,15 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 85 +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 +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 {\field{\*\{HYPERLINK "http://www.gnu.org/licenses/ http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_594.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_594.RULE new file mode 100644 index 00000000000..714f6404234 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_594.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +https://gnu.org/licenses/gpl.html +License {{GPLv3+}}: {{GNU GPL version 3 or later}} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_595.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_595.RULE new file mode 100644 index 00000000000..23d8efe8c24 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_595.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +https://gnu.org/licenses/gpl.html +License {{GPLv3+}}: {{GNU GPL version 3 or later}} +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_596.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_596.RULE new file mode 100644 index 00000000000..60bfebb4cb2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_596.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + +License {{GPLv3+}}: {{GNU GPL version 3 or later}} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_597.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_597.RULE new file mode 100644 index 00000000000..6d3d2afa6f8 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_597.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +License {{GPLv3+}}: {{GNU GPL version 3 or later}} +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +https://gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_598.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_598.RULE new file mode 100644 index 00000000000..413c8569470 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_598.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + +It is released under the terms of the GNU General Public License, version 3; See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_599.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_599.RULE new file mode 100644 index 00000000000..ab81ed8514e --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_599.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + +It is released under the terms of the GNU General Public License, version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_600.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_600.RULE new file mode 100644 index 00000000000..0b01ce4c1b7 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_600.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +released under the terms of the GNU General Public License, version 3; See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_601.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_601.RULE new file mode 100644 index 00000000000..c329b54035c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_601.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + +released under the terms of the GNU General Public License, version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_602.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_602.RULE new file mode 100644 index 00000000000..8dc1859c7ae --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_602.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +License GPLv3+: GNU GPL version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_603.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_603.RULE new file mode 100644 index 00000000000..306aebdf457 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_603.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +The project is licensed under GPLv3+, see COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_604.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_604.RULE new file mode 100644 index 00000000000..c978e7004a8 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_604.RULE @@ -0,0 +1,19 @@ +--- +license_expression: gpl-3.0-plus +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 General Public License as published by * + the Free Software Foundation; either version 3 of the License, * + (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 http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_605.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_605.RULE new file mode 100644 index 00000000000..2d52b218e7c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_605.RULE @@ -0,0 +1,19 @@ +--- +license_expression: gpl-3.0-plus +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 General Public License as published by * + the Free Software Foundation; either version 3 of the License, * + (at your option) any later version * + + This program is distributed in the hope that it will be LICENSE.LGPLv21useful, * + 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 http://www.gnu.org/licenses/ * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_39.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_39.RULE new file mode 100644 index 00000000000..98b49e79113 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_39.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +--- + +Licensed under {{GNU GPL version 3 or more with font exception.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_579.RULE b/src/licensedcode/data/rules/gpl-3.0_579.RULE new file mode 100644 index 00000000000..9200f46ceb6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_579.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +https://gnu.org/licenses/gpl.html +License {{GPLv3}}: {{GNU GPL version 3 }} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_580.RULE b/src/licensedcode/data/rules/gpl-3.0_580.RULE new file mode 100644 index 00000000000..369ea5bfb75 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_580.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +https://gnu.org/licenses/gpl.html +License {{GPLv3}}: {{GNU GPL version 3 }} +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_581.RULE b/src/licensedcode/data/rules/gpl-3.0_581.RULE new file mode 100644 index 00000000000..bc4daefd53d --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_581.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + +License {{GPLv3}}: {{GNU GPL version 3 }} <%s>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_582.RULE b/src/licensedcode/data/rules/gpl-3.0_582.RULE new file mode 100644 index 00000000000..66b5e269244 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_582.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + +License {{GPLv3}}: {{GNU GPL version 3 }} +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +https://gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_583.RULE b/src/licensedcode/data/rules/gpl-3.0_583.RULE new file mode 100644 index 00000000000..6d396b76922 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_583.RULE @@ -0,0 +1,19 @@ +--- +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 version 3}} as published + by the Free Software Foundation. Note that {{permission is not granted + to redistribute this program under the terms of any other version of the + General Public 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, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_584.RULE b/src/licensedcode/data/rules/gpl-3.0_584.RULE new file mode 100644 index 00000000000..5e8570ad89b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_584.RULE @@ -0,0 +1,26 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - gpl-3.0.txt +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 version 3}} as +published by the Free Software Foundation. + +Note that permission is NOT granted to redistribute and/or modify +this porogram {{under the terms of any other version, earlier or +later}}, of the GNU General Public 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 version 3 for more details. + +You should have received a copy of the GNU General Public License +version 3 along with this program (in the file "gpl-3.0.txt"); if not, +see . +*/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_585.RULE b/src/licensedcode/data/rules/gpl-3.0_585.RULE new file mode 100644 index 00000000000..6717ac3075c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_585.RULE @@ -0,0 +1,17 @@ +--- +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 version 3}} as +published by the Free Software Foundation. + +Note that permission is NOT granted to redistribute and/or modify +this program {{under the terms of any other version, earlier or +later}}, of the GNU General Public 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 version 3 for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_586.RULE b/src/licensedcode/data/rules/gpl-3.0_586.RULE new file mode 100644 index 00000000000..22bf8c69052 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_586.RULE @@ -0,0 +1,200 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ +--- + +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 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. + +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 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_587.RULE b/src/licensedcode/data/rules/gpl-3.0_587.RULE new file mode 100644 index 00000000000..3847233fba0 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_587.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +is_continuous: yes +relevance: 100 +--- + +{{License +GNU General Public License, version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_588.RULE b/src/licensedcode/data/rules/gpl-3.0_588.RULE new file mode 100644 index 00000000000..b4126e54d2c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_588.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +The terms of the GPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_589.RULE b/src/licensedcode/data/rules/gpl-3.0_589.RULE new file mode 100644 index 00000000000..ee27f0b4ed9 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_589.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + +// Licensed under the {{GNU General Public License Version 3.0}}. Refer to the +// license file accompanying this program for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.0_1.RULE new file mode 100644 index 00000000000..67d8a12cd0c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.0_1.RULE @@ -0,0 +1,6 @@ +--- +license_expression: gpl-3.0 AND lgpl-2.0 +is_license_reference: yes +--- + +Copies of the GPL 3.0 and LGPL 2.0 licences are provided at the end of this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_113.RULE b/src/licensedcode/data/rules/isc_113.RULE new file mode 100644 index 00000000000..f0e0e3aa8d4 --- /dev/null +++ b/src/licensedcode/data/rules/isc_113.RULE @@ -0,0 +1,17 @@ +--- +license_expression: isc +is_license_text: yes +notes: uses a small variation with and/or +--- + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_581.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_581.RULE new file mode 100644 index 00000000000..7f94feb3f24 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_581.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Library 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 Library General Public License for more details. + +You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_582.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_582.RULE new file mode 100644 index 00000000000..4289db65bde --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_582.RULE @@ -0,0 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + +This software is available on the {{LGPL (GNU LIBRARY GENERAL PUBLIC LICENSE)}}, ie. +it is allowed to link the library to commercial programs. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_500.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_500.RULE new file mode 100644 index 00000000000..45e2dc8b261 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_500.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + +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 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. + + You should have received a copy of the GNU Lesser General Public + License along with this program; if not, write to the Free Software + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor + Boston, MA 02110-1335, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_501.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_501.RULE new file mode 100644 index 00000000000..f4431d5706f --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_501.RULE @@ -0,0 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 99 +referenced_filenames: + - License.txt +notes: no version with lesser implies 2.1 or later +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + +Permission to use, copy, modify, and distribute this software and its documentation under the terms of the {{GNU Lesser General Public License}} (LGPL) is hereby granted. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. See the http://www.gnu.org/copyleft/lesser.html" GNU Lesser General Public License or the License.txt file accompanying this library for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_502.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_502.RULE new file mode 100644 index 00000000000..8a3ca42ebae --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_502.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-2.1-plus +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 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.}} + + 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 Lesser General Public License + along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_503.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_503.RULE new file mode 100644 index 00000000000..a32623d22e2 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_503.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This 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 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 Lesser General Public License + along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_504.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_504.RULE new file mode 100644 index 00000000000..31d876f6abb --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_504.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This file 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 file 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 Lesser General Public License +along with this file. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_505.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_505.RULE new file mode 100644 index 00000000000..42ef79e4150 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_505.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-2.1-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 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.}} + + 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 Lesser General Public License + along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_506.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_506.RULE new file mode 100644 index 00000000000..42440be9769 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_506.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + +This 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 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 Lesser General Public License + along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_507.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_507.RULE new file mode 100644 index 00000000000..bb051b95161 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_507.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + +This file 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 file 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 Lesser General Public License +along with this file. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_508.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_508.RULE new file mode 100644 index 00000000000..b13bf923915 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_508.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Lesser Public License as published by the Free Software Foundation; either version 2.1 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. + +You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_465.RULE b/src/licensedcode/data/rules/lgpl-2.1_465.RULE new file mode 100644 index 00000000000..014017c4d61 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_465.RULE @@ -0,0 +1,344 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: damaged LGPL https://raw.githubusercontent.com/intel/ad-rss-lib/d8c736b68e7be7e826944a954f4571a0f2023608/LICENSE +ignorable_copyrights: + - copyrighted by the Free Software Foundation +ignorable_holders: + - the Free Software Foundation +--- + +GNU LIBRARY GENERAL PUBLIC LICENSE [Version 2.1] + +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +**0.** This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called “this License”). +Each licensee is addressed as “you”. + +A “library” means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + +The “Library”, below, refers to any such software library or work +which has been distributed under these terms. A “work based on the +Library” means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term “modification”.) + +“Source code” for a work means the preferred form of the work for +making modifications to it. For a library, 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 library. + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + +**1.** You may copy and distribute verbatim copies of the Library's +complete 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 distribute a copy of this License along with the +Library. + +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 Library or any portion +of it, thus forming a work based on the Library, 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)** The modified work must itself be a software library. +*b)** You must cause the files modified to carry prominent notices +stating that you changed the files and the date of any change. +*c)** You must cause the whole of the work to be licensed at no +charge to all third parties under the terms of this License. +*d)** If a facility in the modified Library refers to a function or a +table of data to be supplied by an application program that uses +the facility, other than as an argument passed when the facility +is invoked, then you must make a good faith effort to ensure that, +in the event an application does not supply such function or +table, the facility still operates, and performs whatever part of +its purpose remains meaningful. +(For example, a function in a library to compute square roots has +a purpose that is entirely well-defined independent of the +application. Therefore, Subsection 2d requires that any +application-supplied function or table used by this function must +be optional: if the application does not supply it, the square +root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +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 Library, 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 Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + +**3.** You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + +Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + +This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + +**4.** You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you 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. + +If distribution of 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 satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + +**5.** A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a “work that uses the Library”. Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + +However, linking a “work that uses the Library” with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a “work that uses the +library”. The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + +When a “work that uses the Library” uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + +If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + +Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + +**6.** As an exception to the Sections above, you may also combine or +link a “work that uses the Library” with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + +You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + +*a)** Accompany the work with the complete corresponding +machine-readable source code for the Library including whatever +changes were used in the work (which must be distributed under +Sections 1 and 2 above); and, if the work is an executable linked +with the Library, with the complete machine-readable “work that +uses the Library”, as object code and/or source code, so that the +user can modify the Library and then relink to produce a modified +executable containing the modified Library. (It is understood +that the user who changes the contents of definitions files in the +Library will not necessarily be able to recompile the application +to use the modified definitions.) +*b)** Use a suitable shared library mechanism for linking with the +Library. A suitable mechanism is one that (1) uses at run time a +copy of the library already present on the user's computer system, +rather than copying library functions into the executable, and (2) +will operate properly with a modified version of the library, if +the user installs one, as long as the modified version is +interface-compatible with the version that the work was made with. +*c)** Accompany the work with a written offer, valid for at +least three years, to give the same user the materials +specified in Subsection 6a, above, for a charge no more +than the cost of performing this distribution. +*d)** If distribution of the work is made by offering access to copy +from a designated place, offer equivalent access to copy the above +specified materials from the same place. +*e)** Verify that the user has already received a copy of these +materials or that you have already sent this user a copy. + +For an executable, the required form of the “work that uses the +Library” must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be 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. + +It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + +**7.** You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + +*a)** Accompany the combined library with a copy of the same work +based on the Library, uncombined with any other library +facilities. This must be distributed under the terms of the +Sections above. +*b)** Give prominent notice with the combined library of the fact +that part of it is a work based on the Library, and explaining +where to find the accompanying uncombined form of the same work. + +**8.** You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library 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. + +**9.** 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 Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + +**10.** Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +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 with +this License. + +**11.** 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 Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library 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 Library. + +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. + +**12.** If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library 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. + +**13.** The Free Software Foundation may publish revised and/or new +versions of the Lesser 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 Library +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 Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + +**14.** If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +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 + +**15.** BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY “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 +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +**16.** 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 LIBRARY 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 +LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_466.RULE b/src/licensedcode/data/rules/lgpl-2.1_466.RULE new file mode 100644 index 00000000000..53db47548a1 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_466.RULE @@ -0,0 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + +The terms of the {{LGPL 2.1 }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_467.RULE b/src/licensedcode/data/rules/lgpl-2.1_467.RULE new file mode 100644 index 00000000000..8fb50c295d6 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_467.RULE @@ -0,0 +1,17 @@ +--- +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 version 2.1}}, as + published by the Free Software Foundation. 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 Lesser 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_or_epl-1.0_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_4.RULE new file mode 100644 index 00000000000..9b735c30c01 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_4.RULE @@ -0,0 +1,14 @@ +--- +license_expression: lgpl-2.1 OR epl-1.0 +is_license_notice: yes +--- + +source code and binaries are dual-licensed under the EPL v1.0 and the LGPL 2.1, or more formally: + +This program and the accompanying materials are dual-licensed under either the terms of the Eclipse +Public License v1.0 as published by the Eclipse Foundation + + or (per the licensee's choosing) + +under the terms of the GNU Lesser General Public License version 2.1 as published by the Free +Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_5.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_5.RULE new file mode 100644 index 00000000000..d166771e25f --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_5.RULE @@ -0,0 +1,6 @@ +--- +license_expression: lgpl-2.1 OR epl-1.0 +is_license_notice: yes +--- + +source code and binaries are dual-licensed under the EPL v1.0 and the LGPL 2.1, or more formally: \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_6.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_6.RULE new file mode 100644 index 00000000000..2ef0666b43b --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_or_epl-1.0_6.RULE @@ -0,0 +1,25 @@ +--- +license_expression: lgpl-2.1 OR epl-1.0 +is_license_notice: yes +minimum_coverage: 90 +--- + +The EPL/LGPL dual-license serves several purposes. The LGPL license ensures continuity in terms of +licensing of the logback project. Prior to version 0.9.18, logback was licensed (exclusively) under +the LGPL v2.1. Moreover, since the EPL is deemed incompatible by the Free Software Foundation, the +LGPL will allow various licensees, in particular software distributors who may be already bound by +the terms of the GPL or the LGPL, to distribute our software. + +On the other hand, the EPL license will placate organizations which refuse certain restrictions +imposed by the LGPL. + +Please note that logback-classic is intended to be used behind the SLF4J API, which is licensed +under the MIT license. + +If you wish to make a significant contribution to the logback project, you are invited to file a +Contributor License Agreement. The purpose of this agreement is to formalize the terms of your +contribution and to protect the project in case of litigation. + +Upon request, we may exempt open-source projects from LGPL and EPL's reciprocity clauses so that the +said projects can develop logback extensions under the license of their choice. Exemptions are +granted on a case by case basis. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE new file mode 100644 index 00000000000..47f1b167138 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-3.0-plus +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 Lesser General Public License}} as published + by the Free Software Foundation; {{either version 3.0 of the License, + or (at your option) any later version.}} + + 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 Lesser General Public License + along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_295.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_295.RULE new file mode 100644 index 00000000000..9fcb3a69fbb --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_295.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +This 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.0 of the License, + or (at your option) any later version.}} + + This 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 Lesser General Public License + along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_296.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_296.RULE new file mode 100644 index 00000000000..795ec00df74 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_296.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-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 Lesser General Public License}} as published + by the Free Software Foundation; {{either version 3.0 of the License, + or (at your option) any later version.}} + + 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 Lesser General Public License + along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_297.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_297.RULE new file mode 100644 index 00000000000..1a812f5852a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_297.RULE @@ -0,0 +1,19 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + +This 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.0 of the License, + or (at your option) any later version.}} + + This 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 Lesser General Public License + along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_298.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_298.RULE new file mode 100644 index 00000000000..23a854cbb45 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_298.RULE @@ -0,0 +1,21 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the (LGPL) 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 Library Lesser General Public License for more details at +# ( http://www.gnu.org/licenses/lgpl.html ). +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program; if not, write to the 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/lgpl-3.0-plus_or_apache-2.0_10.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_10.RULE new file mode 100644 index 00000000000..1e36751d1a8 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_10.RULE @@ -0,0 +1,15 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - http://www.gnu.org/licenses/lgpl-3.0.html +--- + + + + GNU Lesser General Public License + http://www.gnu.org/licenses/lgpl-3.0.html + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_11.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_11.RULE new file mode 100644 index 00000000000..04051fc6626 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_11.RULE @@ -0,0 +1,14 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - http://www.gnu.org/licenses/lgpl-3.0.html +--- + + + GNU Lesser General Public License + http://www.gnu.org/licenses/lgpl-3.0.html + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_9.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_9.RULE new file mode 100644 index 00000000000..1bfe487b957 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_9.RULE @@ -0,0 +1,15 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.LGPL + - LICENSE.GPL + - LICENSE.APACHE +--- + +is available either under the terms of the LGPL License or the Apache License. You as the user are entitled to choose the terms under which to adopt . + +For details about the LGPL License please refer to LICENSE.LGPL. Please note +that LGPL is just an extension to GPL, located in LICENSE.GPL. + +For details about the Apache License please refer to LICENSE.APACHE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_4.RULE b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_4.RULE new file mode 100644 index 00000000000..b3049a55454 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_4.RULE @@ -0,0 +1,23 @@ +--- +license_expression: lgpl-3.0 AND gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +notes: this is a confusing mix of LGPL and GPL See https://github.com/srazi/Saaghar/blob/a19421ce13769931cf2a53bd690861338905eca8/src/QIrBreadCrumbBar/QIronCommon/qirglobal.h#L23 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + +you can redistribute +sources and libraries of this library and/or modify them under the terms of +the GNU Library General Public License version 3.0 as published by the +Free Software Foundation and appearing in the file LICENSE.txt included in +the packaging of this file. +Please review the following information to ensure the GNU General +Public License version 3.0 requirements will be met: +http://www.gnu.org/copyleft/gpl.html. + +This SDK 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 +Library General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-clue_unknown-license-reference_4.RULE b/src/licensedcode/data/rules/license-clue_unknown-license-reference_4.RULE new file mode 100644 index 00000000000..bd796ca23dd --- /dev/null +++ b/src/licensedcode/data/rules/license-clue_unknown-license-reference_4.RULE @@ -0,0 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_clue: yes +relevance: 100 +--- + +(Unknown license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_82.RULE b/src/licensedcode/data/rules/license-intro_82.RULE new file mode 100644 index 00000000000..acd4b9c11bc --- /dev/null +++ b/src/licensedcode/data/rules/license-intro_82.RULE @@ -0,0 +1,8 @@ +--- +license_expression: isc +is_license_intro: yes +relevance: 99 +--- + +Except as otherwise noted, this project is licensed under the following +(ISC-style) terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_83.RULE b/src/licensedcode/data/rules/license-intro_83.RULE new file mode 100644 index 00000000000..1e1ff52262e --- /dev/null +++ b/src/licensedcode/data/rules/license-intro_83.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_intro: yes +is_continuous: yes +notes: this is v2.1 as used in https://raw.githubusercontent.com/intel/ad-rss-lib/d8c736b68e7be7e826944a954f4571a0f2023608/LICENSE +--- + +{{This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation – terms below.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_84.RULE b/src/licensedcode/data/rules/license-intro_84.RULE new file mode 100644 index 00000000000..fe42a92c378 --- /dev/null +++ b/src/licensedcode/data/rules/license-intro_84.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_intro: yes +relevance: 100 +--- + +The terms of the {{GPL 3.0 licence}} are herewith provided: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_85.RULE b/src/licensedcode/data/rules/license-intro_85.RULE new file mode 100644 index 00000000000..bdb2f8544b3 --- /dev/null +++ b/src/licensedcode/data/rules/license-intro_85.RULE @@ -0,0 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_intro: yes +relevance: 100 +--- + +The terms of the {{LGPL 2.1 licence}} are herewith provided: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_86.RULE b/src/licensedcode/data/rules/license-intro_86.RULE new file mode 100644 index 00000000000..a4125101ebf --- /dev/null +++ b/src/licensedcode/data/rules/license-intro_86.RULE @@ -0,0 +1,7 @@ +--- +license_expression: bsd-new +is_license_intro: yes +relevance: 100 +--- + +The {{Go LICENSE}} file is included below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_87.RULE b/src/licensedcode/data/rules/license-intro_87.RULE new file mode 100644 index 00000000000..d24a3b22b78 --- /dev/null +++ b/src/licensedcode/data/rules/license-intro_87.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_intro: yes +relevance: 100 +referenced_filenames: + - go.LICENSE +--- + +as such the {{Go license}} can be found in the go.LICENSE file and + is reproduced below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-addition_2.RULE b/src/licensedcode/data/rules/mit-addition_2.RULE new file mode 100644 index 00000000000..56cb8738da4 --- /dev/null +++ b/src/licensedcode/data/rules/mit-addition_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit-addition +is_license_reference: yes +relevance: 100 +--- + +//See {{"LICENSE" for details (See jsbn.js for LICENSE).}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1341.RULE b/src/licensedcode/data/rules/mit_1341.RULE new file mode 100644 index 00000000000..e437c5d61a4 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1341.RULE @@ -0,0 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + +Released under the MIT license http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1342.RULE b/src/licensedcode/data/rules/mit_1342.RULE new file mode 100644 index 00000000000..a35f959ee8e --- /dev/null +++ b/src/licensedcode/data/rules/mit_1342.RULE @@ -0,0 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + +Released under the MIT license https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1343.RULE b/src/licensedcode/data/rules/mit_1343.RULE new file mode 100644 index 00000000000..212d240c981 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1343.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +notes: https://github.com/microsoft/CodeXGLUE?tab=readme-ov-file#license +--- + +Our codes follow MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1344.RULE b/src/licensedcode/data/rules/mit_1344.RULE new file mode 100644 index 00000000000..23a6a7d126a --- /dev/null +++ b/src/licensedcode/data/rules/mit_1344.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +* * Which is MIT licensed: + * The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1345.RULE b/src/licensedcode/data/rules/mit_1345.RULE new file mode 100644 index 00000000000..d8a13da782a --- /dev/null +++ b/src/licensedcode/data/rules/mit_1345.RULE @@ -0,0 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://underscorejs.org/LICENSE +--- + +{{Based on Underscore.js}} {{ }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1346.RULE b/src/licensedcode/data/rules/mit_1346.RULE new file mode 100644 index 00000000000..6093b693cbe --- /dev/null +++ b/src/licensedcode/data/rules/mit_1346.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Project is licensed under MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1347.RULE b/src/licensedcode/data/rules/mit_1347.RULE new file mode 100644 index 00000000000..2583a8d8f9e --- /dev/null +++ b/src/licensedcode/data/rules/mit_1347.RULE @@ -0,0 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + +The MIT license (given in full in LICENSE.txt) applies to all code in this repository \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1348.RULE b/src/licensedcode/data/rules/mit_1348.RULE new file mode 100644 index 00000000000..24678edaa01 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1348.RULE @@ -0,0 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - mit.LICENSE +--- + +released under the MIT license located in the root of the repo at /mit.LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1349.RULE b/src/licensedcode/data/rules/mit_1349.RULE new file mode 100644 index 00000000000..30498fba5a8 --- /dev/null +++ b/src/licensedcode/data/rules/mit_1349.RULE @@ -0,0 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +is licensed under the [MIT License](./LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1350.RULE b/src/licensedcode/data/rules/mit_1350.RULE new file mode 100644 index 00000000000..270d704cbcd --- /dev/null +++ b/src/licensedcode/data/rules/mit_1350.RULE @@ -0,0 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_copyrights: + - Copyrighted (c) +--- + +Copyrighted (c) {{distributed under the MIT}} license (see LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_30.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_30.RULE new file mode 100644 index 00000000000..657656b2039 --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_30.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_31.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_31.RULE new file mode 100644 index 00000000000..a4bf75f492a --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_31.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +distributed under the terms of both the MIT license and the Apache License (Version 2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_32.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_32.RULE new file mode 100644 index 00000000000..74be1223fd7 --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_32.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +under the terms of both the MIT license and the Apache License (Version 2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_unlicense_11.RULE b/src/licensedcode/data/rules/mit_or_unlicense_11.RULE new file mode 100644 index 00000000000..50729a9a662 --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_unlicense_11.RULE @@ -0,0 +1,9 @@ +--- +license_expression: mit OR unlicense +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://unlicense.org/ +--- + +Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_70.RULE b/src/licensedcode/data/rules/openssl-ssleay_70.RULE new file mode 100644 index 00000000000..52aedf1464b --- /dev/null +++ b/src/licensedcode/data/rules/openssl-ssleay_70.RULE @@ -0,0 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + +released under the openSSL license as a part of the Golang Standard Libary \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_454.RULE b/src/licensedcode/data/rules/other-permissive_454.RULE new file mode 100644 index 00000000000..1e50b9f6c9b --- /dev/null +++ b/src/licensedcode/data/rules/other-permissive_454.RULE @@ -0,0 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + +The original Pyrex code as of 2006-04 is licensed under the following +license: "Copyright stuff: Pyrex is free of restrictions. You may use, +redistribute, modify and distribute modified versions." \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_455.RULE b/src/licensedcode/data/rules/other-permissive_455.RULE new file mode 100644 index 00000000000..74d492fe48d --- /dev/null +++ b/src/licensedcode/data/rules/other-permissive_455.RULE @@ -0,0 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + +Copyright stuff: Pyrex is free of restrictions. You +may use, redistribute, modify and distribute modified +versions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_456.RULE b/src/licensedcode/data/rules/other-permissive_456.RULE new file mode 100644 index 00000000000..8d93cfe58a6 --- /dev/null +++ b/src/licensedcode/data/rules/other-permissive_456.RULE @@ -0,0 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://vicfieger.com/~font/faq.html +--- + +For free fonts: No license is required, no payment is required. These fonts may be used by anyone for any design or artistic purpose, whether it be personal, commercial, or charitable. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_457.RULE b/src/licensedcode/data/rules/other-permissive_457.RULE new file mode 100644 index 00000000000..e5c42572fd0 --- /dev/null +++ b/src/licensedcode/data/rules/other-permissive_457.RULE @@ -0,0 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://vicfieger.com/~font/faq.html +--- + +No license is required, no payment is required. These fonts may be used by anyone for any design or artistic purpose, whether it be personal, commercial, or charitable. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1019.RULE b/src/licensedcode/data/rules/proprietary-license_1019.RULE new file mode 100644 index 00000000000..458c47612a7 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1019.RULE @@ -0,0 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +--- + +For exclusive use by and its affiliates only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1020.RULE b/src/licensedcode/data/rules/proprietary-license_1020.RULE new file mode 100644 index 00000000000..1bc46db61b0 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1020.RULE @@ -0,0 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/palmerc/lab/blob/d9c36b84dac060ce8c74251f6c42b121653dd837/classes/masters/csce5650/nakajima/newsim/int_src/go/g29.c#L2 +--- + +Permission granted to Spec to use and direferenced_filenames: +stribute as a computer benchamrk +permission is not granted to use or modify this code for any +purpose other than benchmarking or computer system performance tuning \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1021.RULE b/src/licensedcode/data/rules/proprietary-license_1021.RULE new file mode 100644 index 00000000000..453732a38b0 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1021.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://vicfieger.com/~font/faq.html +--- + +This font may be used for personal uses only. It cannot be used commercially as it contains images of copyrighted characters. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1022.RULE b/src/licensedcode/data/rules/proprietary-license_1022.RULE new file mode 100644 index 00000000000..a166f2e0f94 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1022.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + +valid {{Sensu Go license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1023.RULE b/src/licensedcode/data/rules/proprietary-license_1023.RULE new file mode 100644 index 00000000000..4dd37ace7c4 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1023.RULE @@ -0,0 +1,51 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://chillicream.com/licensing/chillicream-license See also https://github.com/ChilliCream/graphql-platform/issues/6704 +--- + +ChilliCream License 1.0 + +This is the license we use for our proprietary software like Banana Cake Pop. +Acceptance + +By using the software, you agree to all of the terms and conditions below. +Copyright License + +The licensor grants you a non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, distribute, make available, and prepare derivative works of the software, in each case subject to the limitations and conditions below. +Limitations + +You may not move, change, disable, or circumvent the license key functionality in the software, and you may not remove or obscure any functionality in the software that is protected by the license key. + +You may not alter, remove, or obscure any licensing, copyright, or other notices of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law. +Patents + +The licensor grants you a license, under any patent claims the licensor can license, or becomes able to license, to make, have made, use, sell, offer for sale, import and have imported the software, in each case subject to the limitations and conditions in this license. This license does not cover any patent claims that you cause to be infringed by modifications or additions to the software. If you or your company make any written claim that the software infringes or contributes to infringement of any patent, your patent license for the software granted under these terms ends immediately. If your company makes such a claim, your patent license ends immediately for work on behalf of your company. +Notices + +You must ensure that anyone who gets a copy of any part of the software from you also gets a copy of these terms. + +If you modify the software, you must include in any modified copies of the software prominent notices stating that you have modified the software. +No Other Rights + +These terms do not imply any licenses other than those expressly granted in these terms. +Termination + +If you use the software in violation of these terms, such use is not licensed, and your licenses will automatically terminate. If the licensor provides you with a notice of your violation, and you cease all violation of this license no later than 30 days after you receive that notice, your licenses will be reinstated retroactively. However, if you violate these terms after such reinstatement, any additional violation of these terms will cause your licenses to terminate automatically and permanently. +No Liability + +As far as the law allows, the software comes as is, without any warranty or condition, and the licensor will not be liable to you for any damages arising out of these terms or the use or nature of the software, under any kind of legal claim. +Definitions + +The licensor is the entity offering these terms, and the software is the software the licensor makes available under these terms, including any portion of it. + +you refers to the individual or entity agreeing to these terms. + +your company is any legal entity, sole proprietorship, or other kind of organization that you work for, plus all organizations that have control over, are under the control of, or are under common control with that organization. control means ownership of substantially all the assets of an entity, or the power to direct its management and policies by vote, contract, or otherwise. Control can be direct or indirect. + +your licenses are all the licenses granted to you for the software under these terms. + +use means anything you do with the software requiring one of your licenses. + +trademark means trademarks, service marks, and similar rights. +Last updated on 2024-03-05 by PascalSenn \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1024.RULE b/src/licensedcode/data/rules/proprietary-license_1024.RULE new file mode 100644 index 00000000000..ab1a1fd127e --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1024.RULE @@ -0,0 +1,54 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_urls: + - http://www.azulsystems.com/license/zulu_third_party_licenses.html +--- + +The copyrights in this software and any visual or audio work distributed with +the software belong to Azul Systems, Inc. and those included in all other notice +files either listed in the readme file or contained in any other included notice +files with this distribution. All rights are reserved. Installation of this +software and any Azul software bundled with or derived from this software is +licensed only in accordance with these terms. + +Provided you have not received the software directly from Azul and have already +agreed to the terms of a separate license agreement, by installing, using or +distributing this software you, on your own behalf and on behalf of your +employer or principal, agree to be bound by these terms. If you do not agree to +any of these terms, you may not use, copy, transmit, distribute nor install this +software. + +The software is developed and owned by Azul and/or any of its affiliates, +subsidiaries or respective suppliers and licensors. The software also includes +certain software components and materials ("Open Source Materials") of third +parties ("Third Party Licensors") licensed under certain licenses ("Open Source +Licenses"). + +Nothing in this Agreement limits your rights under, or grants you rights that +supersede the terms and conditions of any applicable Open Source Licenses. +You must review the Open Source Licenses located at +http://www.azulsystems.com/license/zulu_third_party_licenses.html +to understand your rights under them. In the event that no such third party +license agreements exist, the restrictions contained in this Agreement shall +apply. + +With respect to the Open Source Licenses the following shall apply: + + 1) You hereby acknowledge and agree that you will be licensing any Open Source + Materials directly from the applicable Third Party Licensors including the + right to use such Third Party Materials in connection with the software + + 2) In the event of any inconsistencies or conflicting provisions of the Open + Source Licenses and the provisions of this Agreement, the provisions of the + Open Source Licenses shall prevail. + +THIS SOFTWARE IS PROVIDED BY AZUL "AS-IS" AND WITHOUT EXPRESS OR IMPLIED +WARRANTIES, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL AZUL +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR +CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE +GOODS OR SERVICE, 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/proprietary-license_1026.RULE b/src/licensedcode/data/rules/proprietary-license_1026.RULE new file mode 100644 index 00000000000..e03a101f1dc --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1026.RULE @@ -0,0 +1,9 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + +{{license NVIDIA Proprietary}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1029.RULE b/src/licensedcode/data/rules/proprietary-license_1029.RULE new file mode 100644 index 00000000000..53edde1cca8 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1029.RULE @@ -0,0 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + +{{NVIDIA Proprietary}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1030.RULE b/src/licensedcode/data/rules/proprietary-license_1030.RULE new file mode 100644 index 00000000000..8a7970e2488 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1030.RULE @@ -0,0 +1,44 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/CERTCC/SSVC/blob/main/LICENSE +ignorable_emails: + - permission@sei.cmu.edu +--- + +The following statement applies to PDF, markdown, and text documents contained in this repository. +This material is based upon work funded and supported by the Department of Defense +under Contract No. FA8702-15-D-0002 with Carnegie Mellon University for the operation +of the Software Engineering Institute, a federally funded research and development center. + +The view, opinions, and/or findings contained in this material are those of the author(s) +and should not be construed as an official Government position, policy, or decision, unless +designated by other documentation. + +References herein to any specific commercial product, process, or service by trade name, +trade mark, manufacturer, or otherwise, does not necessarily constitute or imply its +endorsement, recommendation, or favoring by Carnegie Mellon University or its +Software Engineering Institute. + +NO WARRANTY. THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE ENGINEERING INSTITUTE MATERIAL +IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, +EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF +FITNESS FOR PURPOSE OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE +MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF ANY KIND WITH RESPECT +TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT. + +[DISTRIBUTION STATEMENT A] This material has been approved for public release and unlimited distribution. +Please see Copyright notice for non-US Government use and distribution. + +Internal use: +* Permission to reproduce this material and to prepare derivative works from this material for internal +use is granted, provided the copyright and “No Warranty” statements are included with all reproductions +and derivative works. + +External use: +* This material may be reproduced in its entirety, without modification, and freely distributed in +written or electronic form without requesting formal permission. Permission is required for any +other external and/or commercial use. Requests for permission should be directed to the +Software Engineering Institute at permission@sei.cmu.edu. + +* These restrictions do not apply to U.S. government entities. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1031.RULE b/src/licensedcode/data/rules/proprietary-license_1031.RULE new file mode 100644 index 00000000000..71446e4cc2f --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1031.RULE @@ -0,0 +1,43 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/CERTCC/SSVC/blob/main/LICENSE +ignorable_emails: + - permission@sei.cmu.edu +--- + +This material is based upon work funded and supported by the Department of Defense +under Contract No. FA8702-15-D-0002 with Carnegie Mellon University for the operation +of the Software Engineering Institute, a federally funded research and development center. + +The view, opinions, and/or findings contained in this material are those of the author(s) +and should not be construed as an official Government position, policy, or decision, unless +designated by other documentation. + +References herein to any specific commercial product, process, or service by trade name, +trade mark, manufacturer, or otherwise, does not necessarily constitute or imply its +endorsement, recommendation, or favoring by Carnegie Mellon University or its +Software Engineering Institute. + +NO WARRANTY. THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE ENGINEERING INSTITUTE MATERIAL +IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, +EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF +FITNESS FOR PURPOSE OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE +MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF ANY KIND WITH RESPECT +TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT. + +[DISTRIBUTION STATEMENT A] This material has been approved for public release and unlimited distribution. +Please see Copyright notice for non-US Government use and distribution. + +Internal use: +* Permission to reproduce this material and to prepare derivative works from this material for internal +use is granted, provided the copyright and “No Warranty” statements are included with all reproductions +and derivative works. + +External use: +* This material may be reproduced in its entirety, without modification, and freely distributed in +written or electronic form without requesting formal permission. Permission is required for any +other external and/or commercial use. Requests for permission should be directed to the +Software Engineering Institute at permission@sei.cmu.edu. + +* These restrictions do not apply to U.S. government entities. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1032.RULE b/src/licensedcode/data/rules/proprietary-license_1032.RULE new file mode 100644 index 00000000000..b952711d43c --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1032.RULE @@ -0,0 +1,15 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + +Appendix: +In case of a conflict, the terms of this appendix supersede the general apache license. + +- Unless provided with a written agreement, the paid features of (as a service) cannot be modified. +- Unless provided with a written agreement, no persons are permitted to redistribute another paid version of . +- Furthermore, any modifications of free features of should be distributed as free & opensource software. + +If you have any questions, please feel free to reach out to us. + +For terms and conditions of the software and the service, please see TERMS_AND_CONDITIONS.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1033.RULE b/src/licensedcode/data/rules/proprietary-license_1033.RULE new file mode 100644 index 00000000000..14e89ef4a6a --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1033.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + +confidential and proprietary software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1040.RULE b/src/licensedcode/data/rules/proprietary-license_1040.RULE new file mode 100644 index 00000000000..0488b3b102f --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1040.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + +Use, reproduction, or distribution without prior authorization is prohibited. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1041.RULE b/src/licensedcode/data/rules/proprietary-license_1041.RULE new file mode 100644 index 00000000000..c3df1a55c64 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1041.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + +NVIDIA {{end user license agreement}} (EULA) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1043.RULE b/src/licensedcode/data/rules/proprietary-license_1043.RULE new file mode 100644 index 00000000000..824d4fb0a69 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1043.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + +NVIDIA {{end user license agreement}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1047.RULE b/src/licensedcode/data/rules/proprietary-license_1047.RULE new file mode 100644 index 00000000000..5fb3778ce3a --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1047.RULE @@ -0,0 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + +{{NVIDIA EULA}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1048.RULE b/src/licensedcode/data/rules/proprietary-license_1048.RULE new file mode 100644 index 00000000000..f7abc7e14ff --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1048.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + +Use of the sound recording {{requires permission}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1049.RULE b/src/licensedcode/data/rules/proprietary-license_1049.RULE new file mode 100644 index 00000000000..227ca9a1dc3 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1049.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + +Use of {{requires permission}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1050.RULE b/src/licensedcode/data/rules/proprietary-license_1050.RULE new file mode 100644 index 00000000000..ce9c7504bd1 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1050.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + +Use {{requires permission}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1051.RULE b/src/licensedcode/data/rules/proprietary-license_1051.RULE new file mode 100644 index 00000000000..0413484ffbe --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1051.RULE @@ -0,0 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + +Commercial use or distribution is not permitted without prior permission of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1052.RULE b/src/licensedcode/data/rules/proprietary-license_1052.RULE new file mode 100644 index 00000000000..f7b79a08ce4 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1052.RULE @@ -0,0 +1,13 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + +Please note. +By continuing to read this document, and by storing a copy of the associated software and/or documentation in any form, you acknowledge and agree to the following terms. +1. "associated software", "software", "this software", or "the software" in this agreement, means the files that accompany this license agreement, in whole or in part, in source-code or binary form, whether they be documentation, application code, or any other digital representation of content. This includes files that are created after the initial download of the software, even if such files are not created explicitly by the user of the software. +2. You agree to hold , and any associated names, persons, partys, and/or corperat entities harmless, arising out of or in connection with any claim arising from or relating to use of the software, documents, external librarys, and/or other components used in the creation, distribution, or use of the software. +3. You acknowledge that this software is to be considered extremely pre-release, and therefore, it may contain bugs, defects, and other unforseen problems. This software is not to be run on any production equipment. These problems may damage your systems, networks, and surrounding equipment. Though the creators of the software have done their best to insure that this will not happen, we make no (zero) garuntee that this software will not damage your equipment. +4. This license covers this exact pre-release version of this software, and is not applicable to any other version of this software; a separate license file will accompany each release of the software, and will take affect as soon as the user accesses the license agreement, or any portion of the associated software or documentation. +5. This license does not attempt to make any garuntees or restrictions on the librarys or resources used by this software. All such licenses included with such included librarys or software should remain in affect. This license attempts to insure the well-being of the software's users and developers. +6. You can cancel this agreement at any time by destroying this agreement, all associated files, librarys, and software, and deleting any copys you have access to, that are under your legal control. Using any backup copy, or any other copy of the software, rebinds you to the agreement provided with that version of the software, and affirms your responsibility to following all terms and conditions set forth therein. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1053.RULE b/src/licensedcode/data/rules/proprietary-license_1053.RULE new file mode 100644 index 00000000000..11cc2fb81c1 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1053.RULE @@ -0,0 +1,13 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + +Linguistic +Data Consortium (LDC) grants permission to copy and use this +software for the purpose of reading "shorten"-compressed speech +data provided by the LDC or others using the NIST SPHERE file +format. + +No portion of this code may be copied or adapted for other uses +without permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1054.RULE b/src/licensedcode/data/rules/proprietary-license_1054.RULE new file mode 100644 index 00000000000..9e1b0255d32 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1054.RULE @@ -0,0 +1,25 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +minimum_coverage: 80 +--- + +EVALUATION LICENSE + +This license grants you the right to evaluate technology for free. +This license does not grant you any warranty while using . + +You need a commercial license for commercial usage of or usage of +internally within an organization. Commercial license +grants the rights to use, copy, modify, merge, distribute, sublicense, and +sell copies of the . + +For more details, please contact us via: + +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_1055.RULE b/src/licensedcode/data/rules/proprietary-license_1055.RULE new file mode 100644 index 00000000000..1d56d96a393 --- /dev/null +++ b/src/licensedcode/data/rules/proprietary-license_1055.RULE @@ -0,0 +1,13 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: it is not clear if this is commercially licensed or open source or proprietary +ignorable_authors: + - Red Hat +--- + +The Universal Base Image is designed and engineered to be the base +layer for all of your containerized applications, middleware and utilities. This base +image is freely redistributable, but Red Hat only supports Red Hat technologies through +subscriptions for Red Hat products. This image is maintained by Red Hat and updated +regularly. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_527.RULE b/src/licensedcode/data/rules/public-domain_527.RULE new file mode 100644 index 00000000000..d89d4482484 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_527.RULE @@ -0,0 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + +This implementation is based on the public domain library \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_528.RULE b/src/licensedcode/data/rules/public-domain_528.RULE new file mode 100644 index 00000000000..2a9295e3f3d --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_528.RULE @@ -0,0 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + +based on the public domain library \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_529.RULE b/src/licensedcode/data/rules/public-domain_529.RULE new file mode 100644 index 00000000000..837d30cc884 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_529.RULE @@ -0,0 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + +This implementation is based on the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_530.RULE b/src/licensedcode/data/rules/public-domain_530.RULE new file mode 100644 index 00000000000..acd76a49491 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_530.RULE @@ -0,0 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +--- + +All these files have been put into the public domain. + # You can do whatever you want with these files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_531.RULE b/src/licensedcode/data/rules/public-domain_531.RULE new file mode 100644 index 00000000000..8638e261c4e --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_531.RULE @@ -0,0 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +--- + +code examples included in the manual go into the {{public +domain}} up to the extent of the applicable law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_532.RULE b/src/licensedcode/data/rules/public-domain_532.RULE new file mode 100644 index 00000000000..acc626e0f44 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_532.RULE @@ -0,0 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + +examples included in the manual go into the {{public +domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_533.RULE b/src/licensedcode/data/rules/public-domain_533.RULE new file mode 100644 index 00000000000..9c8f2657719 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_533.RULE @@ -0,0 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +--- + +The code examples contained in this manual are released into the +{{public domain}}, up to the extent of the applicable law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_534.RULE b/src/licensedcode/data/rules/public-domain_534.RULE new file mode 100644 index 00000000000..0a3f1b20c23 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_534.RULE @@ -0,0 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + +code examples contained in this manual are released into the +{{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_535.RULE b/src/licensedcode/data/rules/public-domain_535.RULE new file mode 100644 index 00000000000..6ef5ee17953 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_535.RULE @@ -0,0 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +--- + +All the code examples contained in this manual are released into the +public domain, up to the extent of the applicable law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_536.RULE b/src/licensedcode/data/rules/public-domain_536.RULE new file mode 100644 index 00000000000..08dba0645a5 --- /dev/null +++ b/src/licensedcode/data/rules/public-domain_536.RULE @@ -0,0 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +--- + +@c The code examples contained in this manual are released into the +@c public domain, up to the extent of the applicable law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_or_lgpl-3.0_with_qt-company-exception-lgpl-2.1_1.RULE b/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_or_lgpl-3.0_with_qt-company-exception-lgpl-2.1_1.RULE new file mode 100644 index 00000000000..8b23568a11b --- /dev/null +++ b/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_or_lgpl-3.0_with_qt-company-exception-lgpl-2.1_1.RULE @@ -0,0 +1,35 @@ +--- +license_expression: qt-commercial-1.1 OR lgpl-2.1 WITH qt-company-exception-lgpl-2.1 OR lgpl-3.0 + WITH qt-company-exception-lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - LICENSE.LGPLv21 + - LICENSE.LGPLv3 + - LGPL_EXCEPTION.txt +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + - http://www.qt.io/contact-us + - http://www.qt.io/terms-conditions + - https://www.gnu.org/licenses/lgpl.html +--- + +Commercial License Usage +Licensees holding valid commercial Qt licenses may use this file in +accordance with the commercial license agreement provided with the +Software or, alternatively, in accordance with the terms contained in +a written agreement between you and The Qt Company. For licensing terms and +conditions see http://www.qt.io/terms-conditions. For further information +use the contact form at http://www.qt.io/contact-us. + +GNU Lesser General Public License Usage +Alternatively, this file may be used under the terms of the GNU Lesser +General Public License version 2.1 or version 3 as published by the Free +Software Foundation and appearing in the file LICENSE.LGPLv21 and +LICENSE.LGPLv3 included in the packaging of this file. Please review the +following information to ensure the GNU Lesser General Public License +requirements will be met: https://www.gnu.org/licenses/lgpl.html and +http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. + +In addition, as a special exception, The Qt Company gives you certain additional +rights. These rights are described in The Qt Company LGPL Exception +version 1.1, included in the file LGPL_EXCEPTION.txt in this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_36.RULE b/src/licensedcode/data/rules/ruby_36.RULE new file mode 100644 index 00000000000..5052da2d86c --- /dev/null +++ b/src/licensedcode/data/rules/ruby_36.RULE @@ -0,0 +1,8 @@ +--- +license_expression: ruby +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + +{{spec.license = "Ruby" }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_37.RULE b/src/licensedcode/data/rules/ruby_37.RULE new file mode 100644 index 00000000000..5552e416913 --- /dev/null +++ b/src/licensedcode/data/rules/ruby_37.RULE @@ -0,0 +1,8 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + +# This program is free software. +# You can distribute and/or modify this program under the {{Ruby}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_38.RULE b/src/licensedcode/data/rules/ruby_38.RULE new file mode 100644 index 00000000000..a45ede5c19e --- /dev/null +++ b/src/licensedcode/data/rules/ruby_38.RULE @@ -0,0 +1,10 @@ +--- +license_expression: ruby +is_license_notice: yes +referenced_filenames: + - ruby/COPYING +--- + +# This program is free software. +# You can distribute and/or modify this program under the {{Ruby}} License. +# For details of Ruby License, see ruby/COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_39.RULE b/src/licensedcode/data/rules/ruby_39.RULE new file mode 100644 index 00000000000..13370aaa583 --- /dev/null +++ b/src/licensedcode/data/rules/ruby_39.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + +You can distribute and/or modify this program under the Ruby License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_414.RULE b/src/licensedcode/data/rules/unknown-license-reference_414.RULE new file mode 100644 index 00000000000..3fffaa15b49 --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_414.RULE @@ -0,0 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +Licensing (LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_415.RULE b/src/licensedcode/data/rules/unknown-license-reference_415.RULE new file mode 100644 index 00000000000..52d906bd5d1 --- /dev/null +++ b/src/licensedcode/data/rules/unknown-license-reference_415.RULE @@ -0,0 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + +{{Based on code that is Copyright}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_57.RULE b/src/licensedcode/data/rules/unlicense_57.RULE new file mode 100644 index 00000000000..a7ec8673755 --- /dev/null +++ b/src/licensedcode/data/rules/unlicense_57.RULE @@ -0,0 +1,7 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +--- + +This is released into the public domain using the "Unlicense license" \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_58.RULE b/src/licensedcode/data/rules/unlicense_58.RULE new file mode 100644 index 00000000000..03590290e6d --- /dev/null +++ b/src/licensedcode/data/rules/unlicense_58.RULE @@ -0,0 +1,10 @@ +--- +license_expression: unlicense +is_license_notice: yes +is_continuous: yes +relevance: 100 +ignorable_urls: + - https://unlicense.org/ +--- + +{{Public domain - https://unlicense.org}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_27.RULE b/src/licensedcode/data/rules/upl-1.0_27.RULE new file mode 100644 index 00000000000..62e0323169a --- /dev/null +++ b/src/licensedcode/data/rules/upl-1.0_27.RULE @@ -0,0 +1,8 @@ +--- +license_expression: upl-1.0 +is_license_notice: yes +ignorable_urls: + - https://oss.oracle.com/licenses/upl +--- + +Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_25.RULE b/src/licensedcode/data/rules/w3c-software-19980720_25.RULE new file mode 100644 index 00000000000..c0bfaddf7fb --- /dev/null +++ b/src/licensedcode/data/rules/w3c-software-19980720_25.RULE @@ -0,0 +1,15 @@ +--- +license_expression: w3c-software-19980720 +is_license_tag: yes +notes: https://repo1.maven.org/maven2/com/vaadin/external/flute/flute/1.3.0.gg2/flute-1.3.0.gg2.pom +ignorable_urls: + - http://www.w3.org/Consortium/Legal/copyright-software-19980720 +--- + + +W3C Software Copyright Notice and License +repo + +http://www.w3.org/Consortium/Legal/copyright-software-19980720 + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_26.RULE b/src/licensedcode/data/rules/w3c-software-19980720_26.RULE new file mode 100644 index 00000000000..f211399fb6e --- /dev/null +++ b/src/licensedcode/data/rules/w3c-software-19980720_26.RULE @@ -0,0 +1,11 @@ +--- +license_expression: w3c-software-19980720 +is_license_tag: yes +notes: https://repo1.maven.org/maven2/com/vaadin/external/flute/flute/1.3.0.gg2/flute-1.3.0.gg2.pom +ignorable_urls: + - http://www.w3.org/Consortium/Legal/copyright-software-19980720 +--- + + +W3C Software Copyright Notice and License + http://www.w3.org/Consortium/Legal/copyright-software-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_27.RULE b/src/licensedcode/data/rules/w3c-software-19980720_27.RULE new file mode 100644 index 00000000000..7fe7072e0a4 --- /dev/null +++ b/src/licensedcode/data/rules/w3c-software-19980720_27.RULE @@ -0,0 +1,8 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +relevance: 95 +notes: https://repo1.maven.org/maven2/com/vaadin/external/flute/flute/1.3.0.gg2/flute-1.3.0.gg2.pom +--- + +W3C Software Copyright Notice and License \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_100.RULE b/src/licensedcode/data/rules/warranty-disclaimer_100.RULE new file mode 100644 index 00000000000..150a013437e --- /dev/null +++ b/src/licensedcode/data/rules/warranty-disclaimer_100.RULE @@ -0,0 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +--- + +This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_101.RULE b/src/licensedcode/data/rules/warranty-disclaimer_101.RULE new file mode 100644 index 00000000000..651770f858a --- /dev/null +++ b/src/licensedcode/data/rules/warranty-disclaimer_101.RULE @@ -0,0 +1,6 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + +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/warranty-disclaimer_99.RULE b/src/licensedcode/data/rules/warranty-disclaimer_99.RULE new file mode 100644 index 00000000000..25bfc769e6a --- /dev/null +++ b/src/licensedcode/data/rules/warranty-disclaimer_99.RULE @@ -0,0 +1,6 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +--- + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file From 67f000ddf25d87d32365fe0ef7be85b18bcd99ac Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Thu, 9 May 2024 11:55:06 +0200 Subject: [PATCH 09/21] Use correct tag for license rule Signed-off-by: Philippe Ombredanne --- src/licensedcode/data/rules/bsd-new_541.RULE | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/licensedcode/data/rules/bsd-new_541.RULE b/src/licensedcode/data/rules/bsd-new_541.RULE index 98d6b5d2618..b10caedde73 100644 --- a/src/licensedcode/data/rules/bsd-new_541.RULE +++ b/src/licensedcode/data/rules/bsd-new_541.RULE @@ -2,8 +2,6 @@ license_expression: bsd-new is_license_tag: yes relevance: 100 -is_contiguous: yes +is_continuous: yes --- - -{{License - BSD 3-clause license}} +{{License BSD 3-clause license}} From 6890e4f3fd07dc30e92000f95dd6c8b557f0a577 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Thu, 9 May 2024 11:55:50 +0200 Subject: [PATCH 10/21] Add new GFDL license rules Reported-by: Paul Wise @pabs3 Signed-off-by: Philippe Ombredanne --- .../rules/gfdl-1.1-invariants-only_9.RULE | 11 ++++++++++ .../rules/gfdl-1.1-no-invariants-only_9.RULE | 10 +++++++++ .../gfdl-1.1-no-invariants-or-later_9.RULE | 11 ++++++++++ .../rules/gfdl-1.2-invariants-only_9.RULE | 11 ++++++++++ .../rules/gfdl-1.2-invariants-or-later_9.RULE | 12 +++++++++++ .../rules/gfdl-1.2-no-invariants-only_9.RULE | 10 +++++++++ .../rules/gfdl-1.3-invariants-only_13.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_14.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_15.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_16.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_17.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_18.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_19.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_20.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_21.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_22.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_23.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_24.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_25.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_26.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_27.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_28.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_29.RULE | 8 +++++++ .../rules/gfdl-1.3-invariants-only_30.RULE | 11 ++++++++++ .../rules/gfdl-1.3-invariants-only_9.RULE | 8 +++++++ .../gfdl-1.3-invariants-or-later_13.RULE | 21 +++++++++++++++++++ .../gfdl-1.3-invariants-or-later_14.RULE | 12 +++++++++++ .../rules/gfdl-1.3-invariants-or-later_9.RULE | 13 ++++++++++++ .../rules/gfdl-1.3-no-invariants-only_13.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_14.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_15.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_16.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_17.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_18.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_19.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_20.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_21.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_22.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_23.RULE | 8 +++++++ .../rules/gfdl-1.3-no-invariants-only_9.RULE | 8 +++++++ 40 files changed, 362 insertions(+) create mode 100644 src/licensedcode/data/rules/gfdl-1.1-invariants-only_9.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_9.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_9.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.2-invariants-only_9.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_9.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_9.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_13.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_14.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_15.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_16.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_17.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_18.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_19.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_20.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_21.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_22.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_23.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_24.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_25.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_26.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_27.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_28.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_29.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_30.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_9.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_13.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_14.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_9.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_13.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_14.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_15.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_16.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_17.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_18.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_19.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_20.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_21.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_22.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_23.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_9.RULE diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_9.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_9.RULE new file mode 100644 index 00000000000..ee195ef7efa --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_9.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_notice: yes +--- + +Permission is granted to copy, distribute +and/or modify this document under the terms of the {{GNU Free Documentation +License, Version 1.1;}} {{with the Invariant Sections being}} LIST THEIR TITLES , +{{with the Front-Cover Texts being}} LIST , and {{with the Back-Cover Texts being}} +LIST . A copy of the license is included in the section entitled "GNU Free +Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_9.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_9.RULE new file mode 100644 index 00000000000..d5c90151d92 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_9.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_notice: yes +--- + +Permission is granted to copy, distribute +and/or modify this document under the terms of the {{GNU Free Documentation +License, Version 1.1}}; {{with no Invariant Sections, no Front-Cover Texts, and +no Back-Cover Texts.}} A copy of the license is included in the section +entitled "GNU Free Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_9.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_9.RULE new file mode 100644 index 00000000000..77b42d0a642 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_9.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_notice: yes +--- + +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.}} A copy of the license is included in the section +entitled "GNU Free Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_9.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_9.RULE new file mode 100644 index 00000000000..3576f9b185f --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_9.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_notice: yes +--- + +Permission is granted to copy, distribute +and/or modify this document under the terms of the {{GNU Free Documentation +License, Version 1.2;}} {{with the Invariant Sections being}} LIST THEIR TITLES , +{{with the Front-Cover Texts being}} LIST , and {{with the Back-Cover Texts being}} +LIST . A copy of the license is included in the section entitled "GNU Free +Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_9.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_9.RULE new file mode 100644 index 00000000000..06d088569e0 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_9.RULE @@ -0,0 +1,12 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_notice: yes +--- + +Permission is granted to copy, distribute +and/or modify this document under the terms of the {{GNU Free Documentation +License, Version 1.2 or any later version }}published by the Free Software +Foundation; {{with the Invariant Sections being}} LIST THEIR TITLES , +{{with the Front-Cover Texts being}} LIST , and {{with the Back-Cover Texts being}} +LIST . A copy of the license is included in the section entitled "GNU Free +Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_9.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_9.RULE new file mode 100644 index 00000000000..0617f237188 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_9.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_notice: yes +--- + +Permission is granted to copy, distribute +and/or modify this document under the terms of the {{GNU Free Documentation +License, Version 1.2}}; {{with no Invariant Sections, no Front-Cover Texts, and +no Back-Cover Texts.}} A copy of the license is included in the section +entitled "GNU Free Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_13.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_13.RULE new file mode 100644 index 00000000000..c246c2f05ef --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_13.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with the Invariant Sections being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_14.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_14.RULE new file mode 100644 index 00000000000..4ce662d8c88 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_14.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Invariant Sections being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_15.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_15.RULE new file mode 100644 index 00000000000..9d81e65044f --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_15.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Invariant Section being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_16.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_16.RULE new file mode 100644 index 00000000000..9743738eaf0 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_16.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Invariant Sections are }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_17.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_17.RULE new file mode 100644 index 00000000000..4b191264462 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Invariant Section is }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_18.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_18.RULE new file mode 100644 index 00000000000..6c4ff11ad1d --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_18.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with the Front-Cover text being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_19.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_19.RULE new file mode 100644 index 00000000000..15d21857312 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_19.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Front-Cover text being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_20.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_20.RULE new file mode 100644 index 00000000000..1b228c069c0 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_20.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with the Front-Cover texts being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_21.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_21.RULE new file mode 100644 index 00000000000..9556d98bc0f --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_21.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Front-Cover texts being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_22.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_22.RULE new file mode 100644 index 00000000000..2669e28d088 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_22.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Front-Cover texts are }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_23.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_23.RULE new file mode 100644 index 00000000000..9ea4ef7d130 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_23.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Front-Cover text is }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_24.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_24.RULE new file mode 100644 index 00000000000..ffd3d781f77 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_24.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with the Back-Cover Text being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_25.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_25.RULE new file mode 100644 index 00000000000..b6625d706c4 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_25.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Back-Cover Text being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_26.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_26.RULE new file mode 100644 index 00000000000..27738d50d6d --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_26.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{The Back-Cover Text is }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_27.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_27.RULE new file mode 100644 index 00000000000..228e73a4688 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_27.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with the Back-Cover Texts being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_28.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_28.RULE new file mode 100644 index 00000000000..626c0350722 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_28.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{the Back-Cover Texts being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_29.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_29.RULE new file mode 100644 index 00000000000..c624e099913 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_29.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{The Back-Cover Texts is }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_30.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_30.RULE new file mode 100644 index 00000000000..9aed9dd4fd3 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_30.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_notice: yes +--- + +Permission is granted to copy, distribute +and/or modify this document under the terms of the {{GNU Free Documentation +License, Version 1.3;}} {{with the Invariant Sections being}} LIST THEIR TITLES , +{{with the Front-Cover Texts being}} LIST , and {{with the Back-Cover Texts being}} +LIST . A copy of the license is included in the section entitled "GNU Free +Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_9.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_9.RULE new file mode 100644 index 00000000000..6e61e06a9dd --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with the Invariant Section being }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_13.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_13.RULE new file mode 100644 index 00000000000..2b322363662 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_13.RULE @@ -0,0 +1,21 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/fdl.html +--- + +Permission is granted to copy, distribute and/or modify this document +under the terms of the {{GNU Free Documentation License, Version 1.3 or +any later version}} published by the Free Software Foundation; +@c {{with the Invariant Sections being}} ``GNU General Public License'' and +@c ``GNU Free Documentation License'', +with no Front-Cover texts and {{with the Back-Cover text being}} +``@emph{You have freedom to copy and modify this manual, like GNU +software.}''. + +@c A copy of the license is included in the section entitled ``GNU Free +@c Documentation License''. +A copy of the GNU Free Documentation License is available along with the +software source code as @file{doc/COPYING.DOC}, and also on the web at +@url{https://www.gnu.org/licenses/fdl.html}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_14.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_14.RULE new file mode 100644 index 00000000000..b87f4fe62db --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_14.RULE @@ -0,0 +1,12 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_notice: yes +--- + +Permission is granted to copy, distribute +and/or modify this document under the terms of the {{GNU Free Documentation +License, Version 1.3 or any later version }}published by the Free Software +Foundation; {{with the Invariant Sections being}} LIST THEIR TITLES , +{{with the Front-Cover Texts being}} LIST , and {{with the Back-Cover Texts being}} +LIST . A copy of the license is included in the section entitled "GNU Free +Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_9.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_9.RULE new file mode 100644 index 00000000000..b138bd602d3 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_9.RULE @@ -0,0 +1,13 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_notice: yes +--- + +@c Permission is granted to copy, distribute and/or modify this +@c document under the terms of the {{GNU Free Documentation License, +@c Version 1.3 or any later version}} published by the Free Software +@c Foundation; {{with no Invariant Sections, no Front-Cover Texts}}, and +@c {{with the Back-Cover Text being}} ``You have freedom to copy and +@c modify this manual, like GNU software.''. A copy of the license +@c is included in the section entitled ``GNU Free Documentation +@c License''. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_13.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_13.RULE new file mode 100644 index 00000000000..7460d709f04 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_13.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with no Invariant Section }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_14.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_14.RULE new file mode 100644 index 00000000000..c50d409ac34 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_14.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{no Invariant Sections }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_15.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_15.RULE new file mode 100644 index 00000000000..492450fa8d5 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_15.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{no Invariant Section }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_16.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_16.RULE new file mode 100644 index 00000000000..20e251b3163 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_16.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with no Front-Cover text }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_17.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_17.RULE new file mode 100644 index 00000000000..ac395ee1b67 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{no Front-Cover text }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_18.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_18.RULE new file mode 100644 index 00000000000..015be175013 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_18.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with no Front-Cover texts }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_19.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_19.RULE new file mode 100644 index 00000000000..9bdb2a3a93a --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_19.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{no Front-Cover texts }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_20.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_20.RULE new file mode 100644 index 00000000000..889ad1167f8 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_20.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with no Back-Cover Text }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_21.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_21.RULE new file mode 100644 index 00000000000..cc401b69366 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_21.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{no Back-Cover Text }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_22.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_22.RULE new file mode 100644 index 00000000000..c08023e175a --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_22.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with no Back-Cover Texts }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_23.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_23.RULE new file mode 100644 index 00000000000..019cc1a5071 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_23.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{no Back-Cover Texts }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_9.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_9.RULE new file mode 100644 index 00000000000..e0e27395632 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 95 +--- + +{{with no Invariant Sections }} \ No newline at end of file From 6b1a7f0cf4029b5b157b83f3901b3495278eaa87 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Thu, 9 May 2024 12:46:09 +0200 Subject: [PATCH 11/21] Add new improved license detection rules Signed-off-by: Philippe Ombredanne --- .../data/rules/cc0-1.0_or_gpl-1.0-plus_1.RULE | 9 +++++++++ src/licensedcode/data/rules/gpl-1.0-plus_590.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-1.0-plus_591.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-1.0-plus_592.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-1.0-plus_593.RULE | 9 +++++++++ src/licensedcode/data/rules/gpl-1.0-plus_594.RULE | 10 ++++++++++ src/licensedcode/data/rules/gpl-1.0-plus_595.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-1.0-plus_596.RULE | 9 +++++++++ src/licensedcode/data/rules/gpl-1.0-plus_597.RULE | 9 +++++++++ src/licensedcode/data/rules/gpl-1.0-plus_598.RULE | 10 ++++++++++ src/licensedcode/data/rules/gpl-2.0_1449.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1450.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1451.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1452.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1453.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1454.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1455.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1456.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1457.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1458.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1459.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1460.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1461.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1462.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1463.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1464.RULE | 8 ++++++++ src/licensedcode/data/rules/gpl-2.0_1465.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1466.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-2.0_1467.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_590.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_591.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_592.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_593.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_594.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_595.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_596.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_597.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_598.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_599.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_600.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_601.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_602.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_603.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_604.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_605.RULE | 9 +++++++++ src/licensedcode/data/rules/gpl-3.0_606.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_607.RULE | 7 +++++++ src/licensedcode/data/rules/gpl-3.0_608.RULE | 7 +++++++ src/licensedcode/data/rules/lgpl-2.0-plus_583.RULE | 7 +++++++ src/licensedcode/data/rules/lgpl-2.0-plus_584.RULE | 10 ++++++++++ src/licensedcode/data/rules/lgpl-2.0-plus_585.RULE | 9 +++++++++ src/licensedcode/data/rules/lgpl-2.0-plus_586.RULE | 9 +++++++++ src/licensedcode/data/rules/lgpl-2.0-plus_587.RULE | 7 +++++++ 53 files changed, 395 insertions(+) create mode 100644 src/licensedcode/data/rules/cc0-1.0_or_gpl-1.0-plus_1.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_590.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_591.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_592.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_593.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_594.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_595.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_596.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_597.RULE create mode 100644 src/licensedcode/data/rules/gpl-1.0-plus_598.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1449.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1450.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1451.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1452.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1453.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1454.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1455.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1456.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1457.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1458.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1459.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1460.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1461.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1462.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1463.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1464.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1465.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1466.RULE create mode 100644 src/licensedcode/data/rules/gpl-2.0_1467.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_590.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_591.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_592.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_593.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_594.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_595.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_596.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_597.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_598.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_599.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_600.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_601.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_602.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_603.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_604.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_605.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_606.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_607.RULE create mode 100644 src/licensedcode/data/rules/gpl-3.0_608.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.0-plus_583.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.0-plus_584.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.0-plus_585.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.0-plus_586.RULE create mode 100644 src/licensedcode/data/rules/lgpl-2.0-plus_587.RULE diff --git a/src/licensedcode/data/rules/cc0-1.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/cc0-1.0_or_gpl-1.0-plus_1.RULE new file mode 100644 index 00000000000..e428678bb52 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_or_gpl-1.0-plus_1.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 OR gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - license.txt + - Licenses/CC0-1.0.txt +--- + +The following files are released into the public domain and can be distributed under the terms and conditions of the Creative Commons 0 license (See Licenses/CC0-1.0.txt). For any areas that do not legally accept the public domain or CC0 these files can be distributed under the terms and conditions of the GPL (See license.txt): \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_590.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_590.RULE new file mode 100644 index 00000000000..1e868d595c9 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_590.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +under terms and conditions of the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_591.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_591.RULE new file mode 100644 index 00000000000..70d74bf1693 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_591.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +Distributed under the terms and conditions of {{the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_592.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_592.RULE new file mode 100644 index 00000000000..0c160f97e70 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_592.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +This program is distributed under the terms and conditions of the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_593.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_593.RULE new file mode 100644 index 00000000000..e20c793b421 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_593.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + +This program is distributed under the terms and conditions of the GPL +See http://www.gnu.org/copyleft/gpl.html for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_594.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_594.RULE new file mode 100644 index 00000000000..e356119673b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_594.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - README + - LICENSE +--- + +This program is distributed under the terms and conditions of the GPL +See the README and LICENSE files for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_595.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_595.RULE new file mode 100644 index 00000000000..ceadcb84dad --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_595.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +this script is distributed under the terms and conditions of the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_596.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_596.RULE new file mode 100644 index 00000000000..e5e307ee9d9 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_596.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - lang/license.html +--- + +Distributed under the terms and conditions of the GPL as stated in lang/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_597.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_597.RULE new file mode 100644 index 00000000000..21a01f4b94e --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_597.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - docs/license.txt +--- + +Distributed under the terms and conditions of the GPL as stated in docs/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_598.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_598.RULE new file mode 100644 index 00000000000..891dce06c6c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_598.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +This program is distributed under the terms and conditions of the GPL +See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1449.RULE b/src/licensedcode/data/rules/gpl-2.0_1449.RULE new file mode 100644 index 00000000000..3f0e154f5ed --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1449.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPLv2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1450.RULE b/src/licensedcode/data/rules/gpl-2.0_1450.RULE new file mode 100644 index 00000000000..d1a7b7d433c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1450.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPLv2 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1451.RULE b/src/licensedcode/data/rules/gpl-2.0_1451.RULE new file mode 100644 index 00000000000..857d765caa6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1451.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1452.RULE b/src/licensedcode/data/rules/gpl-2.0_1452.RULE new file mode 100644 index 00000000000..566f664b74c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1452.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1453.RULE b/src/licensedcode/data/rules/gpl-2.0_1453.RULE new file mode 100644 index 00000000000..119caef4975 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1453.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v2 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1454.RULE b/src/licensedcode/data/rules/gpl-2.0_1454.RULE new file mode 100644 index 00000000000..841bd4020d2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1454.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1455.RULE b/src/licensedcode/data/rules/gpl-2.0_1455.RULE new file mode 100644 index 00000000000..6b5c6d329c8 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1455.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1456.RULE b/src/licensedcode/data/rules/gpl-2.0_1456.RULE new file mode 100644 index 00000000000..1dcbdb8a7ce --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1456.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v2.0 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1457.RULE b/src/licensedcode/data/rules/gpl-2.0_1457.RULE new file mode 100644 index 00000000000..597d382a123 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1457.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1458.RULE b/src/licensedcode/data/rules/gpl-2.0_1458.RULE new file mode 100644 index 00000000000..40b07cf181c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1458.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL 2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1459.RULE b/src/licensedcode/data/rules/gpl-2.0_1459.RULE new file mode 100644 index 00000000000..7e4b73618fa --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1459.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL 2 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1460.RULE b/src/licensedcode/data/rules/gpl-2.0_1460.RULE new file mode 100644 index 00000000000..45ff41ad91f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1460.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1461.RULE b/src/licensedcode/data/rules/gpl-2.0_1461.RULE new file mode 100644 index 00000000000..5db8a988595 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1461.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1462.RULE b/src/licensedcode/data/rules/gpl-2.0_1462.RULE new file mode 100644 index 00000000000..0118a63032c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1462.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL2 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1463.RULE b/src/licensedcode/data/rules/gpl-2.0_1463.RULE new file mode 100644 index 00000000000..858c00a4099 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1463.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1464.RULE b/src/licensedcode/data/rules/gpl-2.0_1464.RULE new file mode 100644 index 00000000000..986b8f20503 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1464.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +License +This code is distributed under the terms and conditions of the GPL v2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1465.RULE b/src/licensedcode/data/rules/gpl-2.0_1465.RULE new file mode 100644 index 00000000000..4507ea7379e --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1465.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This code is distributed under the terms and conditions of the GPL v2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1466.RULE b/src/licensedcode/data/rules/gpl-2.0_1466.RULE new file mode 100644 index 00000000000..8cacc0dda30 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1466.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +distributed under the terms and conditions of the GPL v2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1467.RULE b/src/licensedcode/data/rules/gpl-2.0_1467.RULE new file mode 100644 index 00000000000..2bed5f3c925 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1467.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +distributed under the terms and conditions of the GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_590.RULE b/src/licensedcode/data/rules/gpl-3.0_590.RULE new file mode 100644 index 00000000000..a43f88a6511 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_590.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPLv3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_591.RULE b/src/licensedcode/data/rules/gpl-3.0_591.RULE new file mode 100644 index 00000000000..824dace839a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_591.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPLv3 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_592.RULE b/src/licensedcode/data/rules/gpl-3.0_592.RULE new file mode 100644 index 00000000000..190e402fbcd --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_592.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_593.RULE b/src/licensedcode/data/rules/gpl-3.0_593.RULE new file mode 100644 index 00000000000..2204d396a88 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_593.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_594.RULE b/src/licensedcode/data/rules/gpl-3.0_594.RULE new file mode 100644 index 00000000000..d9e36d09deb --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_594.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v3 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_595.RULE b/src/licensedcode/data/rules/gpl-3.0_595.RULE new file mode 100644 index 00000000000..07945988311 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_595.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_596.RULE b/src/licensedcode/data/rules/gpl-3.0_596.RULE new file mode 100644 index 00000000000..8925bbc1bf0 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_596.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v3.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_597.RULE b/src/licensedcode/data/rules/gpl-3.0_597.RULE new file mode 100644 index 00000000000..b211161d0e4 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_597.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v3.0 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_598.RULE b/src/licensedcode/data/rules/gpl-3.0_598.RULE new file mode 100644 index 00000000000..d13e6134b67 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_598.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_599.RULE b/src/licensedcode/data/rules/gpl-3.0_599.RULE new file mode 100644 index 00000000000..84f24f6047b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_599.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_600.RULE b/src/licensedcode/data/rules/gpl-3.0_600.RULE new file mode 100644 index 00000000000..20d0e091847 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_600.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL 3 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_601.RULE b/src/licensedcode/data/rules/gpl-3.0_601.RULE new file mode 100644 index 00000000000..337ea2b7d88 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_601.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL 3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_602.RULE b/src/licensedcode/data/rules/gpl-3.0_602.RULE new file mode 100644 index 00000000000..ab5bc555c57 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_602.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_603.RULE b/src/licensedcode/data/rules/gpl-3.0_603.RULE new file mode 100644 index 00000000000..c641024acc0 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_603.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL3 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_604.RULE b/src/licensedcode/data/rules/gpl-3.0_604.RULE new file mode 100644 index 00000000000..2f479284bb0 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_604.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the GPL3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_605.RULE b/src/licensedcode/data/rules/gpl-3.0_605.RULE new file mode 100644 index 00000000000..2dc1886040a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_605.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - docs/COPYING +--- + +distributed under the Terms and Conditions of the GPLv3, which can be +found in full-text in docs/COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_606.RULE b/src/licensedcode/data/rules/gpl-3.0_606.RULE new file mode 100644 index 00000000000..b49064cc479 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_606.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +distributed under the Terms and Conditions of the GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_607.RULE b/src/licensedcode/data/rules/gpl-3.0_607.RULE new file mode 100644 index 00000000000..a9b4b38ecde --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_607.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +Released under the terms and conditions of the GPLv3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_608.RULE b/src/licensedcode/data/rules/gpl-3.0_608.RULE new file mode 100644 index 00000000000..9e882d36fa0 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_608.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +Released under the terms and conditions of the GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_583.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_583.RULE new file mode 100644 index 00000000000..316ebefe0b2 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_583.RULE @@ -0,0 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +terms and conditions of the lGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_584.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_584.RULE new file mode 100644 index 00000000000..4d09192a8fb --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_584.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - README + - LICENSE +--- + +This program is distributed under the terms and conditions of the LGPL +See the README and LICENSE files for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_585.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_585.RULE new file mode 100644 index 00000000000..f835c33004d --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_585.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - LICENCE +--- + +This file is distributed under the terms and conditions of the LGPL - please +see the file LICENCE in the package root directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_586.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_586.RULE new file mode 100644 index 00000000000..cea764bb304 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_586.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + +This file is distributed under the terms and conditions of the LGPL - please +see the file LICENSE in the package root directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_587.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_587.RULE new file mode 100644 index 00000000000..20126fa0917 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_587.RULE @@ -0,0 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +This file is distributed under the terms and conditions of the LGPL \ No newline at end of file From 316554b4538bf601c9c9cd3240406d07648b1a2b Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Thu, 9 May 2024 18:28:28 +0200 Subject: [PATCH 12/21] Add new false positive license rules Signed-off-by: Philippe Ombredanne --- src/licensedcode/data/rules/false-positive_790.RULE | 6 ++++++ src/licensedcode/data/rules/false-positive_791.RULE | 6 ++++++ src/licensedcode/data/rules/false-positive_792.RULE | 6 ++++++ src/licensedcode/data/rules/false-positive_793.RULE | 6 ++++++ src/licensedcode/data/rules/false-positive_794.RULE | 6 ++++++ src/licensedcode/data/rules/false-positive_795.RULE | 6 ++++++ 6 files changed, 36 insertions(+) create mode 100644 src/licensedcode/data/rules/false-positive_790.RULE create mode 100644 src/licensedcode/data/rules/false-positive_791.RULE create mode 100644 src/licensedcode/data/rules/false-positive_792.RULE create mode 100644 src/licensedcode/data/rules/false-positive_793.RULE create mode 100644 src/licensedcode/data/rules/false-positive_794.RULE create mode 100644 src/licensedcode/data/rules/false-positive_795.RULE diff --git a/src/licensedcode/data/rules/false-positive_790.RULE b/src/licensedcode/data/rules/false-positive_790.RULE new file mode 100644 index 00000000000..a37b86e3f41 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_790.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +License Error \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_791.RULE b/src/licensedcode/data/rules/false-positive_791.RULE new file mode 100644 index 00000000000..a06213f55fb --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_791.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +unknown license error \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_792.RULE b/src/licensedcode/data/rules/false-positive_792.RULE new file mode 100644 index 00000000000..666d7b2f861 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_792.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +Unknown license type \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_793.RULE b/src/licensedcode/data/rules/false-positive_793.RULE new file mode 100644 index 00000000000..0360401f0dc --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_793.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +Licence Error \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_794.RULE b/src/licensedcode/data/rules/false-positive_794.RULE new file mode 100644 index 00000000000..1217bce9c43 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_794.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +unknown licence error \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_795.RULE b/src/licensedcode/data/rules/false-positive_795.RULE new file mode 100644 index 00000000000..18a82d51180 --- /dev/null +++ b/src/licensedcode/data/rules/false-positive_795.RULE @@ -0,0 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + +Unknown licence type \ No newline at end of file From 9d536e96d4e09b463647e6c130b0b9cac6d330af Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Thu, 9 May 2024 18:28:56 +0200 Subject: [PATCH 13/21] Rename GFDL license rule Signed-off-by: Philippe Ombredanne --- src/licensedcode/data/rules/gfdl-1.1-plus_26.RULE | 13 ------------- .../data/rules/gfdl-1.3-invariants-or-later_15.RULE | 12 ++++++++++++ 2 files changed, 12 insertions(+), 13 deletions(-) delete mode 100644 src/licensedcode/data/rules/gfdl-1.1-plus_26.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_15.RULE diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_26.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_26.RULE deleted file mode 100644 index 236ba4550c0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_26.RULE +++ /dev/null @@ -1,13 +0,0 @@ ---- -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 ---- - -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 the Invariant Sections being -with the Front-Cover Texts being , -and with the Back-Cover Texts being. A copy of the -license is included in the section entitled "GNU Free Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_15.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_15.RULE new file mode 100644 index 00000000000..89dfe393b25 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_15.RULE @@ -0,0 +1,12 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_notice: yes +--- + +Permission is granted to copy, distribute and/or +modify this document under the terms of the {{GNU Free Documentation License, +Version 1.3 or any later version }} published by the Free Software Foundation; +with {{the Invariant Sections being}} , +with {{the Front-Cover Texts being}} , +and with {{the Back-Cover Texts}} being . A copy of the +license is included in the section entitled "GNU Free Documentation License". \ No newline at end of file From fd4339332352a100de45011b0159ed9863246810 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 10 May 2024 00:26:10 +0200 Subject: [PATCH 14/21] Add new GFDL rules and update tests Signed-off-by: Philippe Ombredanne --- .../data/rules/gfdl-1.1-invariants-or-later_13.RULE | 13 +++++++++++++ .../data/rules/gfdl-1.2-invariants-only_13.RULE | 12 ++++++++++++ .../data/rules/gfdl-1.2-invariants-or-later_13.RULE | 12 ++++++++++++ .../data/rules/gfdl-1.3-invariants-only_31.RULE | 12 ++++++++++++ .../data/datadriven/external/glc/GFDL-1.1.t2.yml | 2 +- .../data/datadriven/external/glc/GFDL-1.1.t3.yml | 2 +- .../data/datadriven/external/glc/GFDL-1.1.t4.yml | 2 +- .../data/datadriven/lic1/gfdl-1.3_2.RULE.yml | 1 + 8 files changed, 53 insertions(+), 3 deletions(-) create mode 100644 src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_13.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.2-invariants-only_13.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_13.RULE create mode 100644 src/licensedcode/data/rules/gfdl-1.3-invariants-only_31.RULE diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_13.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_13.RULE new file mode 100644 index 00000000000..7bf8a52ae96 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_13.RULE @@ -0,0 +1,13 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_notice: yes +relevance: 100 +--- + +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 the {{Invariant Sections being}} +with the {{Front-Cover Texts being }}, +and with the {{Back-Cover Texts being}}. A copy of the +license is included in the section entitled "GNU Free Documentation License". diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_13.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_13.RULE new file mode 100644 index 00000000000..532c7f59c17 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_13.RULE @@ -0,0 +1,12 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_notice: yes +--- + +Permission is granted to copy, distribute and/or +modify this document under the terms of the {{GNU Free Documentation License, +Version 1.2 }} published by the Free Software Foundation; +with {{the Invariant Sections being}} , +with {{the Front-Cover Texts being}} , +and with {{the Back-Cover Texts}} being . A copy of the +license is included in the section entitled "GNU Free Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_13.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_13.RULE new file mode 100644 index 00000000000..8b03a306338 --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_13.RULE @@ -0,0 +1,12 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_notice: yes +--- + +Permission is granted to copy, distribute and/or +modify this document under the terms of the {{GNU Free Documentation License, +Version 1.2 or any later version }} published by the Free Software Foundation; +with {{the Invariant Sections being}} , +with {{the Front-Cover Texts being}} , +and with {{the Back-Cover Texts}} being . A copy of the +license is included in the section entitled "GNU Free Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_31.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_31.RULE new file mode 100644 index 00000000000..cdb7d8f5e9b --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_31.RULE @@ -0,0 +1,12 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_notice: yes +--- + +Permission is granted to copy, distribute and/or +modify this document under the terms of the {{GNU Free Documentation License, +Version 1.3 }} published by the Free Software Foundation; +with {{the Invariant Sections being}} , +with {{the Front-Cover Texts being}} , +and with {{the Back-Cover Texts}} being . A copy of the +license is included in the section entitled "GNU Free Documentation License". \ No newline at end of file diff --git a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t2.yml b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t2.yml index 39ca6af920e..56541ebaa06 100644 --- a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t2.yml +++ b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t2.yml @@ -1,5 +1,5 @@ license_expressions: - - gfdl-1.1-plus + - gfdl-1.1-invariants-or-later notes: | License test derived from a file of the BSD-licensed repository at: https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/GFDL-1.1.t2 diff --git a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t3.yml b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t3.yml index cef922907b1..d8aac3876a4 100644 --- a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t3.yml +++ b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t3.yml @@ -1,5 +1,5 @@ license_expressions: - - gfdl-1.1 + - gfdl-1.1-invariants-only notes: | License test derived from a file of the BSD-licensed repository at: https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/GFDL-1.1.t3 diff --git a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t4.yml b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t4.yml index d39d5253627..3e19b64d4aa 100644 --- a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t4.yml +++ b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t4.yml @@ -1,5 +1,5 @@ license_expressions: - - gfdl-1.1 + - gfdl-1.1-invariants-only notes: | License test derived from a file of the BSD-licensed repository at: https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/GFDL-1.1.t4 diff --git a/tests/licensedcode/data/datadriven/lic1/gfdl-1.3_2.RULE.yml b/tests/licensedcode/data/datadriven/lic1/gfdl-1.3_2.RULE.yml index 3cc476836f8..6f2918cd4a2 100644 --- a/tests/licensedcode/data/datadriven/lic1/gfdl-1.3_2.RULE.yml +++ b/tests/licensedcode/data/datadriven/lic1/gfdl-1.3_2.RULE.yml @@ -1,3 +1,4 @@ license_expressions: - gfdl-1.3 + - gfdl-1.3-invariants-only notes: this contains formatting tags From 0c60f417f7e8b3641a5d4ddddacc4e3312c399d2 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 10 May 2024 00:30:17 +0200 Subject: [PATCH 15/21] Improve license detection tests Signed-off-by: Philippe Ombredanne --- .../copyright-detailed.expected.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libgcrypt20/copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libgcrypt20/copyright-detailed.expected.yml index 80a1cf0b1be..dd1d9db680c 100644 --- a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libgcrypt20/copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libgcrypt20/copyright-detailed.expected.yml @@ -1,11 +1,11 @@ declared_license: -declared_license_expression: gpl-1.0-plus AND other-permissive AND public-domain AND fsf-unlimited-no-warranty +declared_license_expression: gpl-2.0-plus AND other-permissive AND public-domain AND fsf-unlimited-no-warranty AND (lgpl-2.1-plus AND gpl-2.0-plus) AND (lgpl-2.0-plus AND gpl-2.0-plus) AND lgpl-2.0-plus AND lgpl-2.1-plus AND gpl-1.0-plus AND gpl-2.0-plus AND (other-permissive AND other-copyleft) AND bsd-new AND bsd-new AND (bsd-new OR gpl-1.0-plus) AND x11-xconsortium AND public-domain AND public-domain AND ocb-open-source-2013 AND ocb-open-source-2013 AND ocb-open-source-2013 AND ocb-open-source-2013 AND gpl-2.0 -declared_license_expression_spdx: GPL-1.0-or-later AND LicenseRef-scancode-other-permissive +declared_license_expression_spdx: GPL-2.0-or-later AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-public-domain AND FSFULLRWD AND (LGPL-2.1-or-later AND GPL-2.0-or-later) AND (LGPL-2.0-or-later AND GPL-2.0-or-later) AND LGPL-2.0-or-later AND LGPL-2.1-or-later AND GPL-1.0-or-later AND GPL-2.0-or-later AND (LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft) @@ -16,14 +16,14 @@ declared_license_expression_spdx: GPL-1.0-or-later AND LicenseRef-scancode-other other_license_expression: other_license_expression_spdx: license_detections: - - license_expression: gpl-1.0-plus AND other-permissive AND public-domain AND fsf-unlimited-no-warranty + - license_expression: gpl-2.0-plus AND other-permissive AND public-domain AND fsf-unlimited-no-warranty AND (lgpl-2.1-plus AND gpl-2.0-plus) AND (lgpl-2.0-plus AND gpl-2.0-plus) AND lgpl-2.0-plus - license_expression_spdx: GPL-1.0-or-later AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-public-domain + license_expression_spdx: GPL-2.0-or-later AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-public-domain AND FSFULLRWD AND (LGPL-2.1-or-later AND GPL-2.0-or-later) AND (LGPL-2.0-or-later AND GPL-2.0-or-later) AND LGPL-2.0-or-later matches: - - license_expression: gpl-1.0-plus - spdx_license_expression: GPL-1.0-or-later + - license_expression: gpl-2.0-plus + spdx_license_expression: GPL-2.0-or-later from_file: start_line: 210 end_line: 211 @@ -32,8 +32,8 @@ license_detections: matched_length: 8 match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-1.0-plus_477.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_477.RULE + rule_identifier: gpl-2.0-plus_1130.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_1130.RULE matched_text: | taken from the original NTT provided GPL source. @@ -149,7 +149,7 @@ license_detections: rule_identifier: lgpl-2.0-plus_467.RULE rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.0-plus_467.RULE matched_text: the license headers of the LGPL - identifier: gpl_1_0_plus_and_other_permissive_and_public_domain_and_fsf_unlimited_no_warranty_and__lgpl_2_1_plus_and_gpl_2_0_plus__and__lgpl_2_0_plus_and_gpl_2_0_plus__and_lgpl_2_0_plus-71da280b-c092-be79-7ec6-e3cc205ddfd8 + identifier: gpl_2_0_plus_and_other_permissive_and_public_domain_and_fsf_unlimited_no_warranty_and__lgpl_2_1_plus_and_gpl_2_0_plus__and__lgpl_2_0_plus_and_gpl_2_0_plus__and_lgpl_2_0_plus-6359b4f1-d70d-80e3-139e-2ba62f0fe9a8 - license_expression: lgpl-2.1-plus AND gpl-1.0-plus license_expression_spdx: LGPL-2.1-or-later AND GPL-1.0-or-later matches: From 2fe96e4c52caa82d57660b1c3ec813cd9a0aae2e Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 10 May 2024 00:40:18 +0200 Subject: [PATCH 16/21] Add new license detection rules Signed-off-by: Philippe Ombredanne --- .../data/rules/license-intro_88.RULE | 7 +++++++ .../data/rules/mit_or_apache-2.0_33.RULE | 16 ++++++++++++++++ .../data/rules/mit_or_apache-2.0_34.RULE | 14 ++++++++++++++ .../data/rules/mit_or_apache-2.0_35.RULE | 14 ++++++++++++++ .../data/rules/mit_or_apache-2.0_36.RULE | 15 +++++++++++++++ .../data/rules/mit_or_apache-2.0_37.RULE | 8 ++++++++ 6 files changed, 74 insertions(+) create mode 100644 src/licensedcode/data/rules/license-intro_88.RULE create mode 100644 src/licensedcode/data/rules/mit_or_apache-2.0_33.RULE create mode 100644 src/licensedcode/data/rules/mit_or_apache-2.0_34.RULE create mode 100644 src/licensedcode/data/rules/mit_or_apache-2.0_35.RULE create mode 100644 src/licensedcode/data/rules/mit_or_apache-2.0_36.RULE create mode 100644 src/licensedcode/data/rules/mit_or_apache-2.0_37.RULE diff --git a/src/licensedcode/data/rules/license-intro_88.RULE b/src/licensedcode/data/rules/license-intro_88.RULE new file mode 100644 index 00000000000..3907bfbc6c6 --- /dev/null +++ b/src/licensedcode/data/rules/license-intro_88.RULE @@ -0,0 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_intro: yes +relevance: 100 +--- + +An example of the license headers of the LGPL is \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_33.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_33.RULE new file mode 100644 index 00000000000..2520cdf06c7 --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_33.RULE @@ -0,0 +1,16 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT + - COPYRIGHT +--- + +# License + + is distributed under the terms of{{ both the MIT license and the +Apache License (Version 2.0).}} + +See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT), and +[COPYRIGHT](COPYRIGHT) for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_34.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_34.RULE new file mode 100644 index 00000000000..6ab4a5ad914 --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_34.RULE @@ -0,0 +1,14 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +--- + +# License + + is distributed under the terms of{{ both the MIT license and the +Apache License (Version 2.0).}} + +See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_35.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_35.RULE new file mode 100644 index 00000000000..1dfd8804c1c --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_35.RULE @@ -0,0 +1,14 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT + - COPYRIGHT +--- + +is distributed under the terms of{{ both the MIT license and the +Apache License (Version 2.0).}} + +See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT), and +[COPYRIGHT](COPYRIGHT) for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_36.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_36.RULE new file mode 100644 index 00000000000..763a2854c79 --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_36.RULE @@ -0,0 +1,15 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +Except as otherwise noted (below and/or in individual files), Rand is +licensed under the Apache License, Version 2.0 or + or the MIT license + or , at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_37.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_37.RULE new file mode 100644 index 00000000000..974e2fbd3d7 --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_37.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 99 +--- + +project {{includes code from the Rust project}} +published under these same licenses. \ No newline at end of file From 8cd37964d9792634ac61de2bc3b90df75207a043 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 10 May 2024 01:42:32 +0200 Subject: [PATCH 17/21] Improve Rust license detection Signed-off-by: Philippe Ombredanne --- .../data/rules/mit_or_apache-2.0_38.RULE | 23 ++ .../score/no_license_ambiguity-expected.json | 225 ++++++------------ 2 files changed, 92 insertions(+), 156 deletions(-) create mode 100644 src/licensedcode/data/rules/mit_or_apache-2.0_38.RULE diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_38.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_38.RULE new file mode 100644 index 00000000000..bcc4c31dca2 --- /dev/null +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_38.RULE @@ -0,0 +1,23 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +Copyrights in the project are retained by their contributors. No +copyright assignment is required to contribute to the Rand project. + +For full authorship information, see the version control history. + +Except as otherwise noted (below and/or in individual files), Rand is +licensed under the {{Apache License, Version 2.0}} or + {{or the MIT license}} + or , at your option. + +The project includes code from the Rust project +published under these same licenses. \ No newline at end of file diff --git a/tests/summarycode/data/score/no_license_ambiguity-expected.json b/tests/summarycode/data/score/no_license_ambiguity-expected.json index 7ed3276d13f..a9485414b52 100644 --- a/tests/summarycode/data/score/no_license_ambiguity-expected.json +++ b/tests/summarycode/data/score/no_license_ambiguity-expected.json @@ -1,6 +1,6 @@ { "summary": { - "declared_license_expression": "apache-2.0 AND (apache-2.0 OR mit)", + "declared_license_expression": "mit OR apache-2.0", "license_clarity_score": { "score": 100, "declared_license": true, @@ -130,92 +130,6 @@ } ] }, - { - "identifier": "apache_2_0_and__apache_2_0_or_mit-7ff6dd9d-b5e8-3fa4-dd61-c5a634c9b300", - "license_expression": "apache-2.0 AND (apache-2.0 OR mit)", - "license_expression_spdx": "Apache-2.0 AND (Apache-2.0 OR MIT)", - "detection_count": 1, - "reference_matches": [ - { - "license_expression": "apache-2.0", - "license_expression_spdx": "Apache-2.0", - "from_file": "no_license_ambiguity/COPYRIGHT", - "start_line": 1, - "end_line": 7, - "matcher": "3-seq", - "score": 94.12, - "matched_length": 48, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "apache-2.0_1060.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1060.RULE" - }, - { - "license_expression": "apache-2.0 OR mit", - "license_expression_spdx": "Apache-2.0 OR MIT", - "from_file": "no_license_ambiguity/COPYRIGHT", - "start_line": 6, - "end_line": 9, - "matcher": "3-seq", - "score": 97.83, - "matched_length": 45, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "apache-2.0_or_mit_47.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_or_mit_47.RULE" - } - ] - }, - { - "identifier": "mit-a9138d4e-bc0e-0a20-76fd-237047e6d41c", - "license_expression": "mit", - "license_expression_spdx": "MIT", - "detection_count": 1, - "reference_matches": [ - { - "license_expression": "mit OR apache-2.0", - "license_expression_spdx": "MIT OR Apache-2.0", - "from_file": "no_license_ambiguity/README.md", - "start_line": 152, - "end_line": 157, - "matcher": "3-seq", - "score": 57.69, - "matched_length": 15, - "match_coverage": 57.69, - "rule_relevance": 100, - "rule_identifier": "mit_or_apache-2.0_9.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_or_apache-2.0_9.RULE" - }, - { - "license_expression": "mit", - "license_expression_spdx": "MIT", - "from_file": "no_license_ambiguity/README.md", - "start_line": 157, - "end_line": 157, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit_154.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_154.RULE" - }, - { - "license_expression": "mit", - "license_expression_spdx": "MIT", - "from_file": "no_license_ambiguity/LICENSE-MIT", - "start_line": 4, - "end_line": 26, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 161, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit.LICENSE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE" - } - ] - }, { "identifier": "mit-cacd5c0c-204a-85c2-affc-e4c125b2492a", "license_expression": "mit", @@ -281,6 +195,50 @@ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_or_apache-2.0_14.RULE" } ] + }, + { + "identifier": "mit_or_apache_2_0-a43a1e15-1968-4de7-fe27-2129ebf57d54", + "license_expression": "mit OR apache-2.0", + "license_expression_spdx": "MIT OR Apache-2.0", + "detection_count": 1, + "reference_matches": [ + { + "license_expression": "mit OR apache-2.0", + "license_expression_spdx": "MIT OR Apache-2.0", + "from_file": "no_license_ambiguity/COPYRIGHT", + "start_line": 1, + "end_line": 12, + "matcher": "3-seq", + "score": 97.78, + "matched_length": 88, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "mit_or_apache-2.0_38.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_or_apache-2.0_38.RULE" + } + ] + }, + { + "identifier": "mit_or_apache_2_0-d9d84ae7-113e-249f-5302-6054bdbcdadb", + "license_expression": "mit OR apache-2.0", + "license_expression_spdx": "MIT OR Apache-2.0", + "detection_count": 1, + "reference_matches": [ + { + "license_expression": "mit OR apache-2.0", + "license_expression_spdx": "MIT OR Apache-2.0", + "from_file": "no_license_ambiguity/README.md", + "start_line": 152, + "end_line": 158, + "matcher": "3-seq", + "score": 97.06, + "matched_length": 33, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "mit_or_apache-2.0_33.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_or_apache-2.0_33.RULE" + } + ] } ], "files": [ @@ -388,47 +346,33 @@ "is_readme": false, "is_top_level": true, "is_key_file": true, - "detected_license_expression": "apache-2.0 AND (apache-2.0 OR mit)", - "detected_license_expression_spdx": "Apache-2.0 AND (Apache-2.0 OR MIT)", + "detected_license_expression": "mit OR apache-2.0", + "detected_license_expression_spdx": "MIT OR Apache-2.0", "license_detections": [ { - "license_expression": "apache-2.0 AND (apache-2.0 OR mit)", - "license_expression_spdx": "Apache-2.0 AND (Apache-2.0 OR MIT)", + "license_expression": "mit OR apache-2.0", + "license_expression_spdx": "MIT OR Apache-2.0", "matches": [ { - "license_expression": "apache-2.0", - "spdx_license_expression": "Apache-2.0", + "license_expression": "mit OR apache-2.0", + "spdx_license_expression": "MIT OR Apache-2.0", "from_file": "no_license_ambiguity/COPYRIGHT", "start_line": 1, - "end_line": 7, + "end_line": 12, "matcher": "3-seq", - "score": 94.12, - "matched_length": 48, + "score": 97.78, + "matched_length": 88, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "apache-2.0_1060.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1060.RULE" - }, - { - "license_expression": "apache-2.0 OR mit", - "spdx_license_expression": "Apache-2.0 OR MIT", - "from_file": "no_license_ambiguity/COPYRIGHT", - "start_line": 6, - "end_line": 9, - "matcher": "3-seq", - "score": 97.83, - "matched_length": 45, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "apache-2.0_or_mit_47.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_or_mit_47.RULE" + "rule_identifier": "mit_or_apache-2.0_38.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_or_apache-2.0_38.RULE" } ], - "identifier": "apache_2_0_and__apache_2_0_or_mit-7ff6dd9d-b5e8-3fa4-dd61-c5a634c9b300" + "identifier": "mit_or_apache_2_0-a43a1e15-1968-4de7-fe27-2129ebf57d54" } ], "license_clues": [], - "percentage_of_license_text": 81.11, + "percentage_of_license_text": 97.78, "copyrights": [], "holders": [], "authors": [], @@ -773,64 +717,33 @@ "is_readme": true, "is_top_level": true, "is_key_file": true, - "detected_license_expression": "mit", - "detected_license_expression_spdx": "MIT", + "detected_license_expression": "mit OR apache-2.0", + "detected_license_expression_spdx": "MIT OR Apache-2.0", "license_detections": [ { - "license_expression": "mit", - "license_expression_spdx": "MIT", + "license_expression": "mit OR apache-2.0", + "license_expression_spdx": "MIT OR Apache-2.0", "matches": [ { "license_expression": "mit OR apache-2.0", "spdx_license_expression": "MIT OR Apache-2.0", "from_file": "no_license_ambiguity/README.md", "start_line": 152, - "end_line": 157, + "end_line": 158, "matcher": "3-seq", - "score": 57.69, - "matched_length": 15, - "match_coverage": 57.69, - "rule_relevance": 100, - "rule_identifier": "mit_or_apache-2.0_9.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_or_apache-2.0_9.RULE" - }, - { - "license_expression": "mit", - "spdx_license_expression": "MIT", - "from_file": "no_license_ambiguity/README.md", - "start_line": 157, - "end_line": 157, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 4, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "mit_154.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_154.RULE" - }, - { - "license_expression": "mit", - "spdx_license_expression": "MIT", - "from_file": "no_license_ambiguity/LICENSE-MIT", - "start_line": 4, - "end_line": 26, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 161, + "score": 97.06, + "matched_length": 33, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "mit.LICENSE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE" + "rule_identifier": "mit_or_apache-2.0_33.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_or_apache-2.0_33.RULE" } ], - "identifier": "mit-a9138d4e-bc0e-0a20-76fd-237047e6d41c", - "detection_log": [ - "unknown-reference-to-local-file" - ] + "identifier": "mit_or_apache_2_0-d9d84ae7-113e-249f-5302-6054bdbcdadb" } ], "license_clues": [], - "percentage_of_license_text": 1.69, + "percentage_of_license_text": 2.93, "copyrights": [], "holders": [], "authors": [], From 1e669cf2919b73ee64fc2d92e6168e6941f90416 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 10 May 2024 01:43:11 +0200 Subject: [PATCH 18/21] Improve copyright tracing Signed-off-by: Philippe Ombredanne --- src/cluecode/copyrights.py | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/src/cluecode/copyrights.py b/src/cluecode/copyrights.py index 7fa405714b3..22a00f035ec 100644 --- a/src/cluecode/copyrights.py +++ b/src/cluecode/copyrights.py @@ -175,13 +175,12 @@ def detect_copyrights_from_lines( ) for candidates in candidate_lines_groups: - if TRACE: - from pprint import pformat - can = pformat(candidates, width=160) - logger_debug( - f' detect_copyrights_from_lines: processing candidates group:\n' - f' {can}' - ) + if TRACE or TRACE_DEEP: + logger_debug(f'========================================================================') + logger_debug(f' detect_copyrights_from_lines: processing candidates group:') + for can in candidates: + logger_debug(f' {can}') + detections = detector.detect( numbered_lines=candidates, @@ -246,12 +245,12 @@ def detect(self, return if TRACE or TRACE_TOK: - logger_debug(f'CopyrightDetector: numbered_lines: {numbered_lines}') + logger_debug(f' CopyrightDetector: numbered_lines: {numbered_lines}') tokens = list(get_tokens(numbered_lines)) if TRACE: - logger_debug(f'CopyrightDetector: initial tokens: {tokens}') + logger_debug(f' CopyrightDetector: initial tokens: {tokens}') if not tokens: return @@ -259,14 +258,14 @@ def detect(self, # first, POS tag each token using token regexes lexed_text = list(self.lexer.lex_tokens(tokens, trace=TRACE_TOK)) - if TRACE: - logger_debug(f'CopyrightDetector: lexed tokens: {lexed_text}') + if TRACE or TRACE_DEEP: + logger_debug(f' CopyrightDetector: lexed tokens:\n{lexed_text}') # then build a parse parse_tree based on tagged tokens parse_tree = self.parser.parse(lexed_text) - if TRACE: - logger_debug(f'CopyrightDetector: parse_tree:\n{tree_pformat(parse_tree)}') + if TRACE or TRACE_DEEP: + logger_debug(f' CopyrightDetector: final parse_tree:\n{tree_pformat(parse_tree)}') non_copyright_labels = frozenset() if not include_copyright_years: @@ -312,7 +311,7 @@ def detect(self, junk=COPYRIGHTS_JUNK, ) - if TRACE: + if TRACE or TRACE_DEEP: logger_debug(f'CopyrightDetector: detection: {copyrght}') if copyrght: @@ -3879,15 +3878,13 @@ def candidate_lines(numbered_lines): if TRACE_TOK: numbered_lines = list(numbered_lines) - logger_debug( - f'candidate_lines: numbered_lines: {numbered_lines!r}') + logger_debug(f'candidate_lines: numbered_lines: {numbered_lines!r}') # the previous line (chars only) previous_chars = None for numbered_line in numbered_lines: if TRACE: - logger_debug( - f'# candidate_lines: evaluating line: {numbered_line!r}') + logger_debug(f'# candidate_lines: evaluating line: {numbered_line!r}') _line_number, line = numbered_line From 295628ddfc179a0223e33d6981793ca01cf3de84 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Wed, 2 Oct 2024 22:51:34 +0200 Subject: [PATCH 19/21] Rename license rules to merge cleanly Signed-off-by: Philippe Ombredanne --- .../rules/{agpl-3.0-plus_298.RULE => agpl-3.0-plus_2981.RULE} | 0 .../rules/{false-positive_771.RULE => false-positive_7711.RULE} | 0 .../rules/{false-positive_772.RULE => false-positive_7721.RULE} | 0 .../rules/{false-positive_773.RULE => false-positive_7731.RULE} | 0 .../rules/{false-positive_774.RULE => false-positive_7741.RULE} | 0 .../rules/{false-positive_775.RULE => false-positive_7751.RULE} | 0 .../rules/{false-positive_776.RULE => false-positive_7761.RULE} | 0 .../rules/{false-positive_777.RULE => false-positive_7771.RULE} | 0 .../rules/{false-positive_778.RULE => false-positive_7781.RULE} | 0 .../rules/{false-positive_779.RULE => false-positive_7791.RULE} | 0 .../rules/{false-positive_780.RULE => false-positive_7801.RULE} | 0 .../rules/{false-positive_781.RULE => false-positive_7811.RULE} | 0 .../rules/{false-positive_782.RULE => false-positive_7821.RULE} | 0 .../rules/{false-positive_783.RULE => false-positive_7831.RULE} | 0 .../rules/{false-positive_785.RULE => false-positive_7851.RULE} | 0 .../rules/{gpl-2.0-plus_1130.RULE => gpl-2.0-plus_11301.RULE} | 0 .../rules/{gpl-2.0-plus_1131.RULE => gpl-2.0-plus_11311.RULE} | 0 .../data/rules/{gpl-2.0_1437.RULE => gpl-2.0_14371.RULE} | 0 .../rules/{lgpl-3.0-plus_294.RULE => lgpl-3.0-plus_2941.RULE} | 0 .../data/rules/{license-intro_82.RULE => license-intro_821.RULE} | 0 .../data/rules/{license-intro_83.RULE => license-intro_831.RULE} | 0 .../data/rules/{license-intro_84.RULE => license-intro_841.RULE} | 0 22 files changed, 0 insertions(+), 0 deletions(-) rename src/licensedcode/data/rules/{agpl-3.0-plus_298.RULE => agpl-3.0-plus_2981.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_771.RULE => false-positive_7711.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_772.RULE => false-positive_7721.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_773.RULE => false-positive_7731.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_774.RULE => false-positive_7741.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_775.RULE => false-positive_7751.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_776.RULE => false-positive_7761.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_777.RULE => false-positive_7771.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_778.RULE => false-positive_7781.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_779.RULE => false-positive_7791.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_780.RULE => false-positive_7801.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_781.RULE => false-positive_7811.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_782.RULE => false-positive_7821.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_783.RULE => false-positive_7831.RULE} (100%) rename src/licensedcode/data/rules/{false-positive_785.RULE => false-positive_7851.RULE} (100%) rename src/licensedcode/data/rules/{gpl-2.0-plus_1130.RULE => gpl-2.0-plus_11301.RULE} (100%) rename src/licensedcode/data/rules/{gpl-2.0-plus_1131.RULE => gpl-2.0-plus_11311.RULE} (100%) rename src/licensedcode/data/rules/{gpl-2.0_1437.RULE => gpl-2.0_14371.RULE} (100%) rename src/licensedcode/data/rules/{lgpl-3.0-plus_294.RULE => lgpl-3.0-plus_2941.RULE} (100%) rename src/licensedcode/data/rules/{license-intro_82.RULE => license-intro_821.RULE} (100%) rename src/licensedcode/data/rules/{license-intro_83.RULE => license-intro_831.RULE} (100%) rename src/licensedcode/data/rules/{license-intro_84.RULE => license-intro_841.RULE} (100%) diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_298.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_2981.RULE similarity index 100% rename from src/licensedcode/data/rules/agpl-3.0-plus_298.RULE rename to src/licensedcode/data/rules/agpl-3.0-plus_2981.RULE diff --git a/src/licensedcode/data/rules/false-positive_771.RULE b/src/licensedcode/data/rules/false-positive_7711.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_771.RULE rename to src/licensedcode/data/rules/false-positive_7711.RULE diff --git a/src/licensedcode/data/rules/false-positive_772.RULE b/src/licensedcode/data/rules/false-positive_7721.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_772.RULE rename to src/licensedcode/data/rules/false-positive_7721.RULE diff --git a/src/licensedcode/data/rules/false-positive_773.RULE b/src/licensedcode/data/rules/false-positive_7731.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_773.RULE rename to src/licensedcode/data/rules/false-positive_7731.RULE diff --git a/src/licensedcode/data/rules/false-positive_774.RULE b/src/licensedcode/data/rules/false-positive_7741.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_774.RULE rename to src/licensedcode/data/rules/false-positive_7741.RULE diff --git a/src/licensedcode/data/rules/false-positive_775.RULE b/src/licensedcode/data/rules/false-positive_7751.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_775.RULE rename to src/licensedcode/data/rules/false-positive_7751.RULE diff --git a/src/licensedcode/data/rules/false-positive_776.RULE b/src/licensedcode/data/rules/false-positive_7761.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_776.RULE rename to src/licensedcode/data/rules/false-positive_7761.RULE diff --git a/src/licensedcode/data/rules/false-positive_777.RULE b/src/licensedcode/data/rules/false-positive_7771.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_777.RULE rename to src/licensedcode/data/rules/false-positive_7771.RULE diff --git a/src/licensedcode/data/rules/false-positive_778.RULE b/src/licensedcode/data/rules/false-positive_7781.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_778.RULE rename to src/licensedcode/data/rules/false-positive_7781.RULE diff --git a/src/licensedcode/data/rules/false-positive_779.RULE b/src/licensedcode/data/rules/false-positive_7791.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_779.RULE rename to src/licensedcode/data/rules/false-positive_7791.RULE diff --git a/src/licensedcode/data/rules/false-positive_780.RULE b/src/licensedcode/data/rules/false-positive_7801.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_780.RULE rename to src/licensedcode/data/rules/false-positive_7801.RULE diff --git a/src/licensedcode/data/rules/false-positive_781.RULE b/src/licensedcode/data/rules/false-positive_7811.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_781.RULE rename to src/licensedcode/data/rules/false-positive_7811.RULE diff --git a/src/licensedcode/data/rules/false-positive_782.RULE b/src/licensedcode/data/rules/false-positive_7821.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_782.RULE rename to src/licensedcode/data/rules/false-positive_7821.RULE diff --git a/src/licensedcode/data/rules/false-positive_783.RULE b/src/licensedcode/data/rules/false-positive_7831.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_783.RULE rename to src/licensedcode/data/rules/false-positive_7831.RULE diff --git a/src/licensedcode/data/rules/false-positive_785.RULE b/src/licensedcode/data/rules/false-positive_7851.RULE similarity index 100% rename from src/licensedcode/data/rules/false-positive_785.RULE rename to src/licensedcode/data/rules/false-positive_7851.RULE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1130.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_11301.RULE similarity index 100% rename from src/licensedcode/data/rules/gpl-2.0-plus_1130.RULE rename to src/licensedcode/data/rules/gpl-2.0-plus_11301.RULE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1131.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_11311.RULE similarity index 100% rename from src/licensedcode/data/rules/gpl-2.0-plus_1131.RULE rename to src/licensedcode/data/rules/gpl-2.0-plus_11311.RULE diff --git a/src/licensedcode/data/rules/gpl-2.0_1437.RULE b/src/licensedcode/data/rules/gpl-2.0_14371.RULE similarity index 100% rename from src/licensedcode/data/rules/gpl-2.0_1437.RULE rename to src/licensedcode/data/rules/gpl-2.0_14371.RULE diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_2941.RULE similarity index 100% rename from src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE rename to src/licensedcode/data/rules/lgpl-3.0-plus_2941.RULE diff --git a/src/licensedcode/data/rules/license-intro_82.RULE b/src/licensedcode/data/rules/license-intro_821.RULE similarity index 100% rename from src/licensedcode/data/rules/license-intro_82.RULE rename to src/licensedcode/data/rules/license-intro_821.RULE diff --git a/src/licensedcode/data/rules/license-intro_83.RULE b/src/licensedcode/data/rules/license-intro_831.RULE similarity index 100% rename from src/licensedcode/data/rules/license-intro_83.RULE rename to src/licensedcode/data/rules/license-intro_831.RULE diff --git a/src/licensedcode/data/rules/license-intro_84.RULE b/src/licensedcode/data/rules/license-intro_841.RULE similarity index 100% rename from src/licensedcode/data/rules/license-intro_84.RULE rename to src/licensedcode/data/rules/license-intro_841.RULE From c0f7a7281ca5c8fe509db64765e4b197054d8914 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 4 Oct 2024 12:18:49 +0200 Subject: [PATCH 20/21] Update ignorables in license rules Signed-off-by: Philippe Ombredanne --- src/licensedcode/data/rules/agpl-3.0-plus_2981.RULE | 2 +- src/licensedcode/data/rules/gpl-3.0_586.RULE | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_2981.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_2981.RULE index 364d1d399b1..c9cb1eeab00 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_2981.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_2981.RULE @@ -3,7 +3,7 @@ license_expression: agpl-3.0-plus is_license_text: yes minimum_coverage: 90 ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. + - Copyright (c) 2007 Free Software Foundation, Inc. https://fsf.org ignorable_holders: - Free Software Foundation, Inc. ignorable_urls: diff --git a/src/licensedcode/data/rules/gpl-3.0_586.RULE b/src/licensedcode/data/rules/gpl-3.0_586.RULE index 22bf8c69052..ab369c7f1ef 100644 --- a/src/licensedcode/data/rules/gpl-3.0_586.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_586.RULE @@ -2,7 +2,7 @@ license_expression: gpl-3.0 is_license_text: yes ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. + - Copyright (c) 2007 Free Software Foundation, Inc. https://fsf.org ignorable_holders: - Free Software Foundation, Inc. ignorable_urls: From bf670c3260c3ed51490c76820b008d39bff7de59 Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 4 Oct 2024 12:19:21 +0200 Subject: [PATCH 21/21] Adjust tests to latest code Signed-off-by: Philippe Ombredanne --- .../datadriven/external/glc/GFDL-1.1.t2.yml | 6 ++- .../datadriven/external/glc/GFDL-1.1.t3.yml | 4 +- .../datadriven/external/glc/GFDL-1.1.t4.yml | 6 ++- .../copyright-detailed.expected.yml | 37 ++++++------------- 4 files changed, 25 insertions(+), 28 deletions(-) diff --git a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t2.yml b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t2.yml index 56541ebaa06..e59c08a9641 100644 --- a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t2.yml +++ b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t2.yml @@ -1,5 +1,9 @@ license_expressions: - - gfdl-1.1-invariants-or-later + - gfdl-1.1-plus + - gfdl-1.3-invariants-only + - gfdl-1.3-invariants-only + - gfdl-1.3-invariants-only + - gfdl-1.3 notes: | License test derived from a file of the BSD-licensed repository at: https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/GFDL-1.1.t2 diff --git a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t3.yml b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t3.yml index d8aac3876a4..c96b9d45359 100644 --- a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t3.yml +++ b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t3.yml @@ -1,5 +1,7 @@ license_expressions: - - gfdl-1.1-invariants-only + - gfdl-1.1 + - gfdl-1.3-invariants-only + - gfdl-1.3-invariants-only notes: | License test derived from a file of the BSD-licensed repository at: https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/GFDL-1.1.t3 diff --git a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t4.yml b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t4.yml index 3e19b64d4aa..ea6805f5a68 100644 --- a/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t4.yml +++ b/tests/licensedcode/data/datadriven/external/glc/GFDL-1.1.t4.yml @@ -1,5 +1,9 @@ license_expressions: - - gfdl-1.1-invariants-only + - gfdl-1.1 + - gfdl-1.3-invariants-only + - gfdl-1.3-invariants-only + - gfdl-1.3-invariants-only + - gfdl-1.3 notes: | License test derived from a file of the BSD-licensed repository at: https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/GFDL-1.1.t4 diff --git a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libgcrypt20/copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libgcrypt20/copyright-detailed.expected.yml index a54e587b905..ae11f11e4bb 100644 --- a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libgcrypt20/copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libgcrypt20/copyright-detailed.expected.yml @@ -1,14 +1,14 @@ declared_license: declared_license_expression: gpl-2.0-plus AND other-permissive AND public-domain AND fsf-unlimited-no-warranty - AND (lgpl-2.1-plus AND gpl-2.0-plus) AND (lgpl-2.0-plus AND gpl-2.0-plus) AND lgpl-2.0-plus - AND lgpl-2.1-plus AND gpl-1.0-plus AND gpl-2.0-plus AND (other-permissive AND other-copyleft) - AND bsd-new AND bsd-new AND (bsd-new OR gpl-1.0-plus) AND x11-xconsortium AND public-domain - AND public-domain AND ocb-open-source-2013 AND ocb-open-source-2013 AND ocb-open-source-2013 - AND ocb-open-source-2013 AND gpl-2.0 + AND (lgpl-2.1-plus AND gpl-2.0-plus) AND (lgpl-2.0-plus AND gpl-2.0-plus) AND lgpl-2.1-plus + AND gpl-1.0-plus AND gpl-2.0-plus AND (other-permissive AND other-copyleft) AND bsd-new AND + bsd-new AND (bsd-new OR gpl-1.0-plus) AND x11-xconsortium AND public-domain AND public-domain + AND ocb-open-source-2013 AND ocb-open-source-2013 AND ocb-open-source-2013 AND ocb-open-source-2013 + AND gpl-2.0 declared_license_expression_spdx: GPL-2.0-or-later AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-public-domain AND FSFULLRWD AND (LGPL-2.1-or-later AND GPL-2.0-or-later) - AND (LGPL-2.0-or-later AND GPL-2.0-or-later) AND LGPL-2.0-or-later AND LGPL-2.1-or-later AND - GPL-1.0-or-later AND GPL-2.0-or-later AND (LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft) + AND (LGPL-2.0-or-later AND GPL-2.0-or-later) AND LGPL-2.1-or-later AND GPL-1.0-or-later AND + GPL-2.0-or-later AND (LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft) AND BSD-3-Clause AND BSD-3-Clause AND (BSD-3-Clause OR GPL-1.0-or-later) AND X11 AND LicenseRef-scancode-public-domain AND LicenseRef-scancode-public-domain AND LicenseRef-scancode-ocb-open-source-2013 AND LicenseRef-scancode-ocb-open-source-2013 AND LicenseRef-scancode-ocb-open-source-2013 AND LicenseRef-scancode-ocb-open-source-2013 @@ -17,10 +17,10 @@ other_license_expression: other_license_expression_spdx: license_detections: - license_expression: gpl-2.0-plus AND other-permissive AND public-domain AND fsf-unlimited-no-warranty - AND (lgpl-2.1-plus AND gpl-2.0-plus) AND (lgpl-2.0-plus AND gpl-2.0-plus) AND lgpl-2.0-plus + AND (lgpl-2.1-plus AND gpl-2.0-plus) AND (lgpl-2.0-plus AND gpl-2.0-plus) license_expression_spdx: GPL-2.0-or-later AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-public-domain AND FSFULLRWD AND (LGPL-2.1-or-later AND GPL-2.0-or-later) AND (LGPL-2.0-or-later AND - GPL-2.0-or-later) AND LGPL-2.0-or-later + GPL-2.0-or-later) matches: - license_expression: gpl-2.0-plus spdx_license_expression: GPL-2.0-or-later @@ -32,8 +32,8 @@ license_detections: matched_length: 8 match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-2.0-plus_1130.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_1130.RULE + rule_identifier: gpl-2.0-plus_11301.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_11301.RULE matched_text: | taken from the original NTT provided GPL source. @@ -136,20 +136,7 @@ license_detections: less to protect the freedom of the users of the code that it covers. See http://www.gnu.org/philosophy/why-not-lgpl.html for more explanation. - - license_expression: lgpl-2.0-plus - spdx_license_expression: LGPL-2.0-or-later - from_file: - start_line: 262 - end_line: 262 - matcher: 2-aho - score: '100.0' - matched_length: 6 - match_coverage: '100.0' - rule_relevance: 100 - rule_identifier: lgpl-2.0-plus_467.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.0-plus_467.RULE - matched_text: the license headers of the LGPL - identifier: gpl_2_0_plus_and_other_permissive_and_public_domain_and_fsf_unlimited_no_warranty_and__lgpl_2_1_plus_and_gpl_2_0_plus__and__lgpl_2_0_plus_and_gpl_2_0_plus__and_lgpl_2_0_plus-6359b4f1-d70d-80e3-139e-2ba62f0fe9a8 + identifier: gpl_2_0_plus_and_other_permissive_and_public_domain_and_fsf_unlimited_no_warranty_and__lgpl_2_1_plus_and_gpl_2_0_plus__and__lgpl_2_0_plus_and_gpl_2_0_plus-be7f4a34-02e4-4203-9dd6-a581178f6ca1 - license_expression: lgpl-2.1-plus AND gpl-1.0-plus license_expression_spdx: LGPL-2.1-or-later AND GPL-1.0-or-later matches: